Quote:
Originally Posted by MagicThemeParks
"Sorry, you are not allowed to 'Like' this post."
Wasn't the standard, "you've liked this guy's posts too much" message 
|
Quote:
Originally Posted by BirdOPrey5
FYI to all- Paul has reported the bug preventing the "Liking" of articles here on vb.org is fixed. :up:
|
Any idea what Paul did to fix this error? I have a few users randomly reporting the same on my forum. (using v4.1.5)
Quote:
Originally Posted by Post Reader
looks there is a problem when somone thanx the post the page needs to refresh again and AJAX feature is not working...
|
Has anyone figured out how to get AJAX working again? (using v4.1.5)
Quote:
Originally Posted by MagicThemeParks
If you select the option to work with reputation points you can.
|
Probably right in front of me but I am not seeing it. Where do you set this up to work with reputation points?
--------------- Added [DATE]1315278204[/DATE] at [TIME]1315278204[/TIME] ---------------
Quote:
Originally Posted by BirdOPrey5
Glad it's working.
Step 1- Make new user profile field, single selection radio box, options:
No
Yes
Step 2- Edit the postbit_display_complete plugin. Change the 2nd Conditional to:
Code:
if (can_thank_this_post($post, $thread['isdeleted']) && !thanked_already($post) && $vbulletin->userinfo['field29'] != "No" && $post['userid'] != 0)
Step 3- Edit the postbit_display_start plugin. Change the 1st Conditional to:
Code:
if ($vbulletin->userinfo['field29'] != "No" && !(defined('LOCATION_BYPASS')) && !(post_thanks_off($this->thread['forumid'], $this->post, $this->thread['firstpostid'], THIS_SCRIPT)))
Change "field29" in each to whatever field number is assigned to your custom profile filed... maybe field5 or field6, depends how many others you already have.
Note: Putting the "No" before the "Yes" and checking for "No" in the code is important so that it's active for everyone EXCEPT those who specifically opt-out of it.
|
Anyone know how to get this working under v4.1.5? I made the change to
postbit_display_complete as shown above. There is no
postbit_display_start in v4 but that line exists in
postbit_display_complete so I made that edit there as well. Tested out and regardless of whether my option is set to No or Yes, I can still see the Like system.