Page 8 of 10

Re: [RC] cBB Follower 1.0.1

Posted: Sun Dec 15, 2013 2:00 am
by TheDani
Which doesn't work, old hashtags before you reinstalled, or new hashtags after you reinstalled?

Re: [RC] cBB Follower 1.0.1

Posted: Sun Dec 15, 2013 4:18 am
by yukirina
You brought up an interesting point so I tested it out... ALL hashtags don't work. ALL mentions don't work either; I even registered a new account on the new forum and then tried using hashtags and mentions; none of them pops up.

Re: [RC] cBB Follower 1.0.1

Posted: Sun Dec 15, 2013 4:51 am
by Ozo
I don't use this mod anymore, but I remember it not un installing properly when I was testing it myself. You could read the install instructions and go over the code edits manually to make sure you don't have missing or double edits of the MOD in your files.

Re: [RC] cBB Follower 1.0.1

Posted: Sun Dec 15, 2013 5:25 am
by yukirina
Well I thought that too, but that's not the case. I backed up my entire forum before uninstalling, and reinstalling then put the forum back in. It didn't work. (Just the hashtag and mention)

Re: [RC] cBB Follower 1.0.1

Posted: Sun Dec 15, 2013 3:19 pm
by canidev
Hi,

The mentions no appears only in posts or in the wall too??
If the problem is only in the posts, its probably that is a installation error. In this case, check the changes in "viewtopic.php" and ""includes/functions_posting.php"

In the posts, the mentions and hastags are inside "<!-- -->" so, if the mod does not process the tags, these are hidden.

Re: [RC] cBB Follower 1.0.1

Posted: Sun Dec 15, 2013 7:09 pm
by yukirina
Fixed.

Re: [RC] cBB Follower 1.0.1

Posted: Tue Dec 17, 2013 5:15 pm
by yukirina
Looking for assistance with the problem. Would be much appreciated.

Re: [RC] cBB Follower 1.0.1

Posted: Tue Dec 17, 2013 5:35 pm
by canidev
Can you give me access to the forum to do some tests?

Re: [RC] cBB Follower 1.0.1

Posted: Tue Dec 17, 2013 7:29 pm
by yukirina
Sure. From the above link, just use my "Saya".

Re: [RC] cBB Follower 1.0.1

Posted: Thu Dec 26, 2013 12:31 am
by yukirina
I fixed it on my own, thanks.

I have a small problem regarding this script though:


There's supposed to be a "p" right before the second "2465" (#p2465, not #2465), otherwise the page doesn't scroll to the post correctly. I tried looking through your code and I'm not sure if any light fix would do;

e.fn.add_fw_edit=
function(t){
if(!e._isFollower)
{return false}
var n=e("#mention-mode");
e(this).prepend(n);
var r=e(t);
if(!r.is("textarea")){
r=r.find("textarea")}
n.children(".fwbutton").click(function(t){t.preventDefault();

It seems to be somewhere along these lines though. Any help would be appreciated. All I need to do is add the p before the second number.

EDIT: Went to your demo URL and confirmed that it was a problem on your demo link also. The redirect is supposed to be #p1234, not #1234.

Re: [RC] cBB Follower 1.0.1

Posted: Thu Dec 26, 2013 9:32 pm
by yukirina
Triple post lol, but I really wish for assistance.

Re: [RC] cBB Follower 1.0.1

Posted: Sun Dec 29, 2013 4:35 pm
by canidev
Hi,

Sorry for the delay.
I do not know exactly which area you are referring but the only part where I found that problem is in the notification box.
To solve, open "follower/includes/functions_follower_core.php"
Find (there are two matches):

Code: Select all

'#'
Replace with:

Code: Select all

'#p'

Re: [RC] cBB Follower 1.0.1

Posted: Mon Dec 30, 2013 7:35 pm
by yukirina
MUCH appreciated. Thank you so much!

One more thing; I've noticed that every follower has "Usual poster" under their name. Is there some kind of ranking system used to change this or...?

Re: [RC] cBB Follower 1.0.1

Posted: Mon Dec 30, 2013 7:48 pm
by TheDani
I think Usual poster just means highest post count.

Re: [RC] cBB Follower 1.0.1

Posted: Wed Jan 01, 2014 9:26 am
by yukirina
Sorry, another question:

I've recently noticed that you can make the follower buttons clickable in quick reply. However, after changing my quick reply so that it appears by default:

https://www.phpbb.com/kb/article/displa ... prosilver/

makes the button disappear. Can anything be done about this?