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
table problems and community builder tab (1 viewing) (1) Guest
TOPIC: table problems and community builder tab
#1091
table problems and community builder tab 1 Year, 8 Months ago  
hi there,

first: congrats for this realy nice work! i waited long for something like this.

installation works great and i'm pretty happy that i could import the old topics of joomlaboard.

1. one big problem:
fireboard breaks my joomla template with some </table> tags .
Its because line 2453 in /default/listcat.php i figured out...
if a user can see all categories this is no problem, but if there is something not accessable for him: the cat is not shown but the </table> stays and breaks my existing table.
well i commented it out now and it works, but thats not the fine html way... would be nice if you can fix that somehow.


2. another problem with my table is:
if an user posts some large image the contentrow grows and the user information windows gets smaller and smaller.
in some cases i couldnt see anything of the user who posted the picture.
(well i think this is a general problem with my template but maybe the behavior can be fixed? )


3. at least:
is there any way how to rename the board options in the community builder profile editor?
_UE_FB_TABDESC
_UE_FB_VIEWTYPE_TITLE:
that doesnt look pretty nice and it is for sure not very userfriendly


sorry for my bad english, i hope it was understandable

Post edited by: k0s, at: 2007/04/21 00:05
k0s (User)
Fresh Boarder
Posts: 5
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#1109
Re:table problems and community builder tab 1 Year, 8 Months ago  
This is the image of the last point you made

I too have the same problem with the last point.

FB support team are so helpful and extremely polite.. I hope we will get solution soon....
Dragonfly (User)
Fresh Boarder
Posts: 11
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#1236
Re:table problems and community builder tab 1 Year, 8 Months ago  
I found the solution, for the last one go to CB Field tab management and other setting.. you just need to replace those lines without underscores.

For the first two table issue, its upto your website design. FB can be put inside table as small as 540 pixel width without any problem..
Dragonfly (User)
Fresh Boarder
Posts: 11
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#1346
Re:table problems and community builder tab 1 Year, 8 Months ago  
if you replace those strings, it doesnt work any longer.
k0s (User)
Fresh Boarder
Posts: 5
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#3982
Re:table problems and community builder tab 1 Year, 8 Months ago  
Exactly, but those strings look ugly when I changed them to readable ones the orders whichever way I choose doesn't work, the oldest posts still stay top...

I went to CB default language file(under CB component plugin) and changed all _SB_ (yours may be _JB_ ) to _FB_ like some advised but still no use so far...

I hope someone will come across the same problem and solve the problem... we can benefit the same...

Post edited by: Dragonfly, at: 2007/04/29 22:17
Dragonfly (User)
Fresh Boarder
Posts: 11
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#4833
Re:table problems and community builder tab 1 Year, 8 Months ago  
Yes there is a way to fix it. Please do not change any of the names, leave it or change it back to the default. If you do not remember, go to the admin tool for FB and go to the integration tab where you choose CB. Press on the link that says it will built the tabs for CB. Verify that it did indeed change them back. Assumeing it did, you now need to get you a file located on your server using an FTP or joomlaxplorer and nav to /components/com_comprofiler/plugin/language/default_language/.
You will be looking for a file called default_language.php. You need to edit it. Add the followin code after the section with the comment label
[code:1]//added for SB 1.5 during 1.0 RC 1[/code:1]
Should look like this...
[code:1]//SB Integration Support
DEFINE('_UE_SB_TABTITLE','Forum settings');
DEFINE('_UE_SB_TABDESC','These are your forum settings');
DEFINE('_UE_SB_VIEWTYPE_TITLE','Preferred viewtype');
DEFINE('_UE_SB_VIEWTYPE_FLAT','Flat');
DEFINE('_UE_SB_VIEWTYPE_THREADED','Threaded');
DEFINE('_UE_SB_ORDERING_TITLE','Preferred message ordering');
DEFINE('_UE_SB_ORDERING_OLDEST','Oldest post first');
DEFINE('_UE_SB_ORDERING_LATEST','Latest post first');
DEFINE('_UE_SB_SIGNATURE','Signature');
//added for SB 1.5 during 1.0 RC 1
DEFINE('_UE_SB_POSTSPERPAGE','Posts per page');
DEFINE('_UE_SB_USERTIMEOFFSET','Local time offset from server');
DEFINE('_UE_SB_CONFIRMUNSUBSCRIBEALL','Are you sure you want to unsubscribe from all your forum subscriptions ?');
DEFINE('_UE_FORUMDATE','Date');
DEFINE('_UE_FORUMCATEGORY','Category');
DEFINE('_UE_FORUMSUBJECT','Subject');
DEFINE('_UE_FORUMHITS','Hits');
DEFINE('_UE_FORUM_POSTS','Forum Posts');
DEFINE('_UE_FORUM_LASTPOSTS','Last %s Forum Posts');
DEFINE('_UE_FORUM_FOUNDPOSTS','Found %s Forum Posts');
DEFINE('_UE_FORUM_STATS','Forum Statistics');
if (!defined('_RANK_MODERATOR')) DEFINE('_RANK_MODERATOR','Moderator');
if (!defined('_RANK_ADMINISTRATOR')) DEFINE('_RANK_ADMINISTRATOR','Administrator');
DEFINE('_UE_SBNOTINSTALLED','Simpleboard forum component is not installed. Please contact your site administrator.');
DEFINE('_UE_NOFORUMPOSTS','This user has no forum posts.');
DEFINE("_UE_USERPARAMS","User Options"«»);
//FB Integration Support
DEFINE('_UE_FB_TABTITLE','Forum settings');
DEFINE('_UE_FB_TABDESC','These are your forum settings');
DEFINE('_UE_FB_VIEWTYPE_TITLE','Preferred viewtype');
DEFINE('_UE_FB_VIEWTYPE_FLAT','Flat');
DEFINE('_UE_FB_VIEWTYPE_THREADED','Threaded');
DEFINE('_UE_FB_ORDERING_TITLE','Preferred message ordering');
DEFINE('_UE_FB_ORDERING_OLDEST','Oldest post first');
DEFINE('_UE_FB_ORDERING_LATEST','Latest post first');
DEFINE('_UE_FB_SIGNATURE','Signature');
//added for FB 1.5 during 1.0 RC 1
DEFINE('_UE_FB_POSTSPERPAGE','Posts per page');
DEFINE('_UE_FB_USERTIMEOFFSET','Local time offset from server');
DEFINE('_UE_FB_CONFIRMUNSUBSCRIBEALL','Are you sure you want to unsubscribe from all your forum subscriptions ?');
DEFINE('_UE_FBNOTINSTALLED','Fireboard forum component is not installed. Please contact your site administrator.');
//AboutMe
DEFINE('_UE_REALLY_EMPTY',' ');
//Mamblog search:[/code:1]
This should be around line 753. Once you save it/Upload it, go check CB, should be fixed.
And hey, give some Karma, please.;)
cmg1558 (User)
Junior Boarder
Posts: 20
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#4881
Re:table problems and community builder tab 1 Year, 8 Months ago  
cmg1558 (User)
Junior Boarder
Posts: 20
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#5002
Re:table problems and community builder tab 1 Year, 8 Months ago  
thank you alot cmg1558!
very nice of you to do all this work =)
k0s (User)
Fresh Boarder
Posts: 5
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#5199
Re:table problems and community builder tab 1 Year, 8 Months ago  
Hi There,

This tip worked great for me, even though my default_language.php looked a little different.

I was wondering if it's possible to reduce the width of the signature box on the CB tab. It's so wide that it throws my template out of shape.

EDIT: Ok, found it on my own. It's in CB Field manager--> fbsignature

Thanks again for the great tips!!

lownotes

Post edited by: lownotes, at: 2007/05/06 18:57
lownotes (User)
Fresh Boarder
Posts: 7
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Ogden Valley Magazine Location: Ready to drop in, Utah
Logged Logged
 
 
#23012
Re:table problems and community builder tab 1 Year, 3 Months ago  
You rock, man.


Thanks for that fix.
ryanspeck (User)
Fresh Boarder
Posts: 5
graphgraph
User Offline Click here to see the profile of this user
MediaGauntlet
Logged Logged
 
 
Go to top