Some users/guests are not having their votes counted, although the plugin initially suggests that voting was successful.
Any ideas why? Some votes done in front of me worked, but I think I was signed in at the time. Do unregistered guests’ votes count???
Please help
Tristan
https://www.dallara398.com
This doesn’t appear to work with the current gallery system? Is it possible to change the behaviour so that it does.
Also, when using in line images (not part of a gallery), the plug in seems to create line breaks. Turning off the plugin makes images share the same line easily. Perhaps an easy fix?
https://www.dallara398.com/2013/02/livery-2013/
Hello, I am inquiring on the Like Photo plugin: great plugin. I am trying to change the size of the vote box- to make it a bit larger, how would I go about doing that?
]]>It’s a simple and great plugin. Would like to know where would I go if I need to reset the vote, as well as viewing the votes. Thanks!
]]>How can we use this plugin with native WP gallery.
Something like: [add_voting][gallery][/add_voting]
I changed, but without success:
function add_voting_handler($atts, $content = null)
{
global $post;
$pattern = '#(<a.[^>]*?>)?<img[^>]*src="([^"]*)"[^>/]*?/>(?(1)\s*</a>)#isU';
$content = preg_replace_callback($pattern, "get_image_votes", $content);
return $content;
}
add_shortcode('add_voting', 'add_voting_handler' );
into
function add_voting_handler($atts, $content = null)
{
global $post;
$pattern = '#(<a.[^>]*?>)?<img[^>]*src="([^"]*)"[^>/]*?/>(?(1)\s*</a>)#isU';
$content = preg_replace_callback($pattern, "get_image_votes", $content);
return do_shortcode($content);
}
add_shortcode('add_voting', 'add_voting_handler' );
]]>