Hi there,
You should check the voter plugin settings.
From the settings you should enable “Buddypress Activity”
Same way “Hide down votes completely?” should also not selected.
Please check your voter plugin setting properly.
Thanks
Hey there,
‘Buddypress Activity’ is enabled under the Enable On. I have tried with ‘Hide Down Votes Completely?’ enabled and disabled and still once the activity stream is filtered the voter disappears.
Also, whilst I appreciate your suggestion it’s still a bit of a problem that ‘Hide Down Votes Completely?’ would need to be enabled (which still doesn’t resolve the issue).
Perhaps it would be better to actually resolve these issues properly prior to marking them as definitely resolved? I really appreciate your efforts with the plugin but there are still a few bugs that appear to need ironing out.
By the way, I’m currently trying to use the Thumbs Up/Down settings but the problem also seems to exist on every other display option.
Thanks for your feedback. We shall address these issues in next update.
To resolve this problem you can just make a couple of small edits as follows:
Replace the function aheadzen_get_current_page_url with this:
/*******************************
Get Current Page URL Function
****************************/
function aheadzen_get_current_page_url()
{
$redirect_to = '';
return $redirect_to;
}
Remove the WP Admin check here from the functions file in the function:
function aheadzen_get_voting_link($params)
{
//if(is_admin()){return '';}
By replacing the redirect code with basically nothing it will always return the current page url within the URL. Your code before using HTTP host meant that because BuddyPress is using the WP AJAX php for it’s refreshing of activity items that was the URL being returned by your code.
Marking as resolved as it works as a fix for me. Not sure if it may affect other usage but there’s none that I can find.