Ok, from the top:
Select the openpms option in the back end fireboard config screen, save and go to the front end forum.
Open the following files from within the com_fireboard folder n your chosen editor:
1. template/default/view.php
2. template/default/plugin/fbprofile/fbprofile.php
3. language/english.php
First edit, go to view.php and scroll to line 756 and replace:
| Code: |
'index.php?option=com_pms&page=new&id=' . $PMSName . '&title=' . $fmessage->subject) . "\">
|
with:
| Code: |
'index.php?option=com_primezilla&page=write&uname=' . $PMSName . '&subject=' . $fmessage->subject) . "\">
|
This code edit changes the openpms system to use the primzilla component, the edit also allows the subject of the forum post to be automatically entered into the PM. Save and upload and you'll see that the 'pm' icon in the main forum view now goes to Primzilla
Next, go to the fbprofile.php page and scroll to line 291 where you'll see the same code as referenced in the top code box above, as with the view.php file, edit this line of code and replace with the second peice of code listed above. Save and upload. This code edit effects the userlist for those of us that don't use CB and instead use the default fireboard profiles.
Lastly is the language file, this is really only for good housekeeping and so that what you select in the back end config screen is what you get upfront.
Scroll to line 92 and replace the words 'myPMS II Open Source' with Primezilla, save and upload, but remember, this file goes in the administrator/components/com_fireboard/language/ folder of the site and not the domain.com/language folder
HTH