Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
The FireBoard forum component development is still going on. In order to get better, FireBoard will be moved from the Best of Joomla website.
During this transition period, the forum in Best of Joomla will be closed to new posts.
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard
Help! Fireboard dont use custom template (1 viewing) (1) Guest
TOPIC: Help! Fireboard dont use custom template
#16157
Help! Fireboard dont use custom template 1 Year, 5 Months ago  
Fireboard don't use joomla custom asignet themplate when is clikt stats or Recent Posts.

In other cases all is ok.

How i understand than Recent Posts and stats are plugins. When cliking these plugins fireboard use default joomla themplate instead of asigned to fireboard. I unchechekt all modules, even defoult themplate for fireboard section but it is steel the problem?

coud anybody help my with advise?

I am new in joomla and using fireboard.
migors (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/10/15 11:15 By migors.
 
 
#16158
Re:help! fireboard dont use custom temlatae 1 Year, 5 Months ago  
and here is bug
migors (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/10/15 11:15 By migors.
 
 
#26148
Re:help! fireboard dont use custom temlatae 1 Year, 3 Months ago  
I've got the same Problem...
Can somebody tell me where Fireboard get the links from?
So I can change them to static as long this bug isn't fixed.
Thanks in advice.

And the problem is because Fireboard don't include the itemid
within the link, so joomla don't know which template to use and
uses the default one. This is the problem.
Ocin (User)
Carpe Diem
Fresh Boarder
Posts: 19
graphgraph
User Offline Click here to see the profile of this user
ICQ#: 172764882 Gender: Male The Fat Paddy's Irish Pub Location: Germany - NRW - Wesel - Blumenkamp Birthdate: 1985-07-22
Logged Logged
 
Last Edit: 2007/10/04 19:09 By Ocin.
 
 
#26792
Re:help! fireboard dont use custom temlatae 1 Year, 3 Months ago  
Try this:

Edit the file /components/com_fireboard/templates/default/plugins/recentsposts/recentposts.php

Al line 178, change this:
[code:1]
$link = sefRelToAbs("index.php?option=com_fireboard&func=view&id=$row->fbid" . "&catid=$row->catid#$row->fbid"«»);
[/code:1]
for this:
[code:1]
$link = sefRelToAbs("index.php?option=com_fireboard" . FB_FB_ITEMID_SUFFIX . "&func=view&id=$row->fbid" . "&catid=$row->catid#$row->fbid"«»);
[/code:1]

Respect to the stats, edit first the file /components/com_fireboard/templates/default/plugins/stats/stats.php

Go to the line 30, and change this:
[code:1]
$profilelink = 'index.php?option=com_fireboard&func=fbprofile&task=showprf&userid=';
[/code:1]
for this:
[code:1]
$profilelink = 'index.php?option=com_fireboard' . FB_FB_ITEMID_SUFFIX . '&func=fbprofile&task=showprf&userid=';
[/code:1]

And finally, go to the file /components/com_fireboard/templates/default/plugins/stats/frontstats.php

At line 24, change this:
[code:1]
$userlist = sefReltoAbs('index.php?option=com_fireboard&func=userlist');
[/code:1]
for this:
[code:1]
$userlist = sefReltoAbs('index.php?option=com_fireboard'. FB_FB_ITEMID_SUFFIX .'&func=userlist');
[/code:1]

Al line 44 change this:
[code:1]
$statslink = sefRelToAbs('index.php?option=com_fireboard&func=stats');
[/code:1]
for this:
[code:1]
$statslink = sefRelToAbs('index.php?option=com_fireboard'. FB_FB_ITEMID_SUFFIX .'&func=stats');
[/code:1]

At line 49, change also this:
[code:1]
$userlist = sefReltoAbs('index.php?option=com_fireboard&func=userlist');
[/code:1]
for this:
[code:1]
$userlist = sefReltoAbs('index.php?option=com_fireboard'. FB_FB_ITEMID_SUFFIX .'&func=userlist');
[/code:1]
Pepin (User)
Fresh Boarder
Posts: 18
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/10/08 12:01 By Pepin.
 
 
#26794
Re:help! fireboard dont use custom temlatae 1 Year, 3 Months ago  
... and at line 91, change this:
[code:1]
echo sefRelToAbs('index.php?option=com_fireboard&func=latest');
[/code:1]
for this:
[code:1]
echo sefRelToAbs('index.php?option=com_fireboard'. FB_FB_ITEMID_SUFFIX .'&func=latest');
[/code:1]

This works OK for me ;)
Pepin (User)
Fresh Boarder
Posts: 18
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/10/08 12:00 By Pepin.
 
 
#26852
Re:help! fireboard dont use custom temlatae 1 Year, 3 Months ago  
Yep. Works for me too!

Thanks alot mate.

Attached the edited files...
File Attachment:
File Name: Edited_Files.rar
File Size: 6022
Ocin (User)
Carpe Diem
Fresh Boarder
Posts: 19
graphgraph
User Offline Click here to see the profile of this user
ICQ#: 172764882 Gender: Male The Fat Paddy's Irish Pub Location: Germany - NRW - Wesel - Blumenkamp Birthdate: 1985-07-22
Logged Logged
 
 
#27680
Re:help! fireboard dont use custom temlatae 1 Year, 2 Months ago  
I also have the same problem. I have changed the files mentioned above and it is
now working much better. However I still have a problem with it reverting to the
wrong URL after performing an action. For example after adding karma, subscribing
and unsubscribing and adding to favorites. After going to My Profile it
automatically times out. After the timeout it goes to the wrong URL.
ashby169 (User)
Fresh Boarder
Posts: 9
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#30857
Re:help! fireboard dont use custom temlatae 1 Year, 1 Month ago  
When you Post a new thread, it automatically redirects me to the default template, not hte one being used by fireboard. How can this be fixed?
justingordon (User)
Fresh Boarder
Posts: 11
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#30858
Re:help! fireboard dont use custom temlatae 1 Year, 1 Month ago  
the edited files do not address this issue
justingordon (User)
Fresh Boarder
Posts: 11
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#30877
Re:Help! Fireboard dont use custom template 1 Year, 1 Month ago  
Yep that's right...
Got the same prob. The automatic redirect is broken.
I'm looking forward to it to fix this problem...
Ocin (User)
Carpe Diem
Fresh Boarder
Posts: 19
graphgraph
User Offline Click here to see the profile of this user
ICQ#: 172764882 Gender: Male The Fat Paddy's Irish Pub Location: Germany - NRW - Wesel - Blumenkamp Birthdate: 1985-07-22
Logged Logged
 
 
Go to top