|
|
|
Re:Welcome to your new board!
|
|
Date: 2006/05/25 21:36
|
By: bjraines
|
Status: User
|
|
|
Karma: 3  
|
|
Expert Joomlapolitan  | Posts: 155 |   | |
|
homebrew wrote: You can go into your phpbb template and change the href's for the profile and memberlist link to point to CB.
can you help me do this? Joomla Community Builder Paginated Article Plugin
Chemistry Homework Help
|
|
The administrator has disabled public write access. |
|
|
|
Re:Welcome to your new board!
|
|
Date: 2006/05/26 00:31
|
By: homebrew
|
Status: User
|
|
|
Karma: 6  
|
|
Senior Joomlapolitan  | Posts: 50 |   | |
|
Sure. This is how I did it.
I'm just using the default subSilver template. You need to find overall_header.tpl located in (forum)/template/subsilver folder. This is the file that controls the logo on top and all the links to the profile, login, memberlist, etc.
Basically, just replace the {U_PROFILE}, {U_MEMBERLIST}, etc. with your link.
Original:
| Code: | <a href="{U_MEMBERLIST}" class="mainmenu">
<img src="templates/subSilver/images/icon_mini_members.gif"
width="12" height="13" border="0" alt="{L_MEMBERLIST}"
hspace="3" />{L_MEMBERLIST}</a>
<a href="{U_PROFILE}" class="mainmenu">
<img src="templates/subSilver/images/icon_mini_profile.gif"
width="12" height="13" border="0" alt="{L_PROFILE}"
hspace="3" />{L_PROFILE}</a>
|
After:
| Code: |
<a href="../index.php?option=com_comprofiler&task=usersList&Itemid=31"
target="_parent" class="mainmenu">{L_MEMBERLIST}</a>
<a href="../index.php?option=com_comprofiler&Itemid=32"
target="_parent" class="mainmenu">{L_PROFILE}</a>
|
I took out the images and styling for easy reference. Hope that helps.
Also, the reason it has target=_parent is because I am using phpbb in a wrapper. If you're not using the wrapper, then you don't really need that.
Post edited by: homebrew, at: 2006/05/25 18:33
|
|
The administrator has disabled public write access. |
|
|
|
Re:Welcome to your new board!
|
|
Date: 2006/05/26 00:59
|
By: geeffland
|
Status:
|
|
|
Karma: 226  
|
|
Moderator  | Posts: 811 |   | |
|
homebrew,
Also I think the links you inserted indicated that your forum is a subdirectory of where Joomla is located on your site... So he may also need to change the link a small bit... If in question he can always use the full http://mysite.com/index... link (which can easily be copied from the address bar in IE or firefox, and assumedly other browsers)
Greg CB3PD Developer - CB Connector (formerly phpBB Connector) plugin
|
|
The administrator has disabled public write access. |
|
|
|
Re:Welcome to your new board!
|
|
Date: 2006/05/26 02:48
|
By: homebrew
|
Status: User
|
|
|
Karma: 6  
|
|
Senior Joomlapolitan  | Posts: 50 |   | |
|
|
yes.
|
|
The administrator has disabled public write access. |
|
|