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
CB profile without CB integration bug (1 viewing) (1) Guest
TOPIC: CB profile without CB integration bug
#20915
CB profile without CB integration bug 1 Year, 4 Months ago  
If you select Community Builder profiles in configuration, but don't select community builder user profiles, the profile button that should appear next to the online button never gets added.

In view.php starting at line 877:
[code:1]//Check if the Community Builder settings are on, and set the variables accordingly.
if ($fbConfig['fb_profile'] == "cb"«»)
{
if ($fbConfig['cb_profile'] && $fmessage->userid > 0)
{
-----code that creates profile link for posts-----------
}
}[/code:1]

This code block is only responsible for creating a profile link in threads (not users header) for posters profiles. It does not need to check for the cb user profiles at all. Checking for them as a condition of executing this code causes cb for profiles only (without cb user profiles) not to work.

Removing the check for 'cb_profile' solves the problem. Line 877 becomes:
[code:1]if ($fmessage->userid > 0)[/code:1]

It would be really nice to have the option of inserting an Itemid for that link so that I could control some of my template settings for the CB profiles.

GRAM
gram (User)
Junior Boarder
Posts: 24
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/09/07 11:05 By gram.
 
 
#23740
Re:CB profile without CB integration bug 1 Year, 3 Months ago  
Awesome job! Works like a charm! That was driving me crazy.
450Thumper (User)
Junior Boarder
Posts: 67
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
Go to top