You are very welcome emstalk.
Cool. I'm glad you had some success with it chardelle.
Please note that while I was trying things to make this work I added quite a few lines of comments so my line numbers are a bit off the original - in any case they should be quite close. Andy, did you try searching? I'll try to be more clear...
In view.php:
To find the 2 places to change code for unsubscribing search the document for do=unsubscribeitem
Both of these lines can be replaced with:
| Code: |
<a href = "<?php echo $fbConfig['cb_profile'] ? sefRelToAbs('index.php?option=com_comprofiler&task=userProfile&Itemid=' . $cbitemid . '&tab=getforumtab&fbunsubthread='.$thread) : sefRelToAbs(JB_LIVEURLREL . '&func=myprofile&do=unsubscribeitem&thread='.$thread);?>">
|
To find the 2 places to change code for removing favorites search the document for do=unfavoriteitem
Both of these lines can be replaced with:
| Code: |
<a href = "<?php echo $fbConfig['cb_profile'] ? sefRelToAbs('index.php?option=com_comprofiler&task=userProfile&Itemid=' . $cbitemid . '&tab=getforumtab&fbunfavthread='.$thread) : sefRelToAbs(JB_LIVEURLREL.'&func=myprofile&do=unfavoriteitem&thread='.$fb_thread);?>">
|
In any case I have attached the version of view.php that I am currently using (it works for me). So if you are having trouble replacing the code then just try the attached file. If it
still does not work then let me know and we'll go from there. The
only code I have changed is what is talked about in this thread. To find the changes I made search the doc for omin.