Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard Spread FireBoard!
Auto-Scale Pictures! (1 viewing) (1) Guest
Go to bottom Favoured: 3
TOPIC: Auto-Scale Pictures!
#56915
Re:Auto-Scale Pictures! 3 Months ago  
I have it working and my site works fine.

just need to have some way to make it affect forum only.
jasonrhl (User)
Junior Boarder
Posts: 52
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#56918
Re:Auto-Scale Pictures! 3 Months ago  
Read the FAQ. It is in there.
grinchy (User)
Senior Boarder
Posts: 355
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#56920
Re:Auto-Scale Pictures! 3 Months ago  
really?

read that faq over and over again for several hours and it does not explain how to make it forum only. The only way I can think of making it this is either adding some css tag or {multithumb} code to forum template.
jasonrhl (User)
Junior Boarder
Posts: 52
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#56922
Re:Auto-Scale Pictures! 3 Months ago  
Really? I don't think you did.

* If only want Multithumb to work on a few pages, select "Apply only to content with {multithumb}". Then insert the {multithumb} tag somewhere on these pages.
* If only want Multithumb to work on most but not all pages, select "Exclude pages with {nomultithumb}". Then insert the {nomultithumb} tag somewhere on the pages you don't want do include.
* If you want to use Multithumbfor Joomla only in certain categories, list these categories in the field "Only in these categories". Put a semicolon between each category (no spaces!). Example: news;tech;gallery
* If you want to use Multithumbfor Joomla in all but a few categories, list these categories in the field "NOT in these categories". Put a semicolon between each category (no spaces!). Example: intro;business
* If you want it to work on just a few images on a given page, but not the rest, use the option "Apply only to these classes" and write the class name or names you want it to process. Separate more class names with space.
* Finally, you can tell Multithumbfor Joomla to ignore individual images by prefixing the alt text with "mt_ignore:". Example: "mt_ignore:this is is the real alt text".


Did you try this? That's how I got it to work when I used it.
grinchy (User)
Senior Boarder
Posts: 355
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#56923
Re:Auto-Scale Pictures! 3 Months ago  
I have actually.

The problem is that now I am making most of my components able to use multithumb and I do not with to edit them all not to use it and wanted to make only fireboard use it.

If only want Multithumb to work on a few pages, select "Apply only to content with {multithumb}". Then insert the {multithumb} tag somewhere on these pages.

I wanted to try this by putting {multithumb} somewhere in fireboard code so it will only use fireboard.

Just wanted to edit one component rather then six.
jasonrhl (User)
Junior Boarder
Posts: 52
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#56929
Re:Auto-Scale Pictures! 2 Months, 4 Weeks ago  
That doesn't get added to the code. That is a mambot tag that get's inserted into content.
grinchy (User)
Senior Boarder
Posts: 355
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#56942
Re:Auto-Scale Pictures! 2 Months, 4 Weeks ago  
grinchy wrote:
That doesn't get added to the code. That is a mambot tag that get's inserted into content.

ok I worked out my solution added to code.

in interpreter.fireboard.inc.php look for

Code:

case 'img':
                if($between) {
                    $task->autolink_disable--; # continue autolink conversion
                    $tag_new = "<img src='".$between."' />";
                    return TAGPARSER_RET_REPLACED;
                }



add {multithumb} so it looks like this

Code:

case 'img':
                if($between) {
                    $task->autolink_disable--; # continue autolink conversion
                    $tag_new = "{multithumb}<img src='".$between."' />";
                    return TAGPARSER_RET_REPLACED;
                }



.

Well I think it is working

looks like it.


EDIT:

only problem is that this method does not work when you Reply. It shows the {multithumb} and the full image in Topic History.

may be someone has some thoughts on this?
jasonrhl (User)
Junior Boarder
Posts: 52
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/08/25 10:06 By jasonrhl. Reason: added more things for thought
 
The administrator has disabled public write access.  
#57098
Re:Auto-Scale Pictures! 2 Months, 3 Weeks ago  
i search everywere and i can't find what to do to get Multithumb for joomla 1.5 alpha 2 to work with fireboard.

It works in the content but not with fireboard

I'm using fireboard 1.0.4 and joomla 1.5.6

Please Help!
rjsorto (User)
Fresh Boarder
Posts: 4
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#57100
Re:Auto-Scale Pictures! 2 Months, 3 Weeks ago  
rjsorto wrote:
i search everywere and i can't find what to do to get Multithumb for joomla 1.5 alpha 2 to work with fireboard.

It works in the content but not with fireboard

I'm using fireboard 1.0.4 and joomla 1.5.6

Please Help!



Install multithumb for joomla 1.5

Activate multithumb.

should work.

id you want it to onlt work in forum try my code hack which is a bit poor but for now it works.

set multithumb to work only on pages that have {multithumb}

if you still have problem contact me with some details and I will have a play.
jasonrhl (User)
Junior Boarder
Posts: 52
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/08/27 11:16 By jasonrhl.
 
The administrator has disabled public write access.  
#57170
Re:Auto-Scale Pictures! 2 Months, 3 Weeks ago  
i did install multithumb for joomla 1.5, and i have it activated, as i sayd before it works with the pictures in any other part of the joomla site but not in fireboard.

is there something i'm missing?
rjsorto (User)
Fresh Boarder
Posts: 4
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
Go to top