Hi.
I had a similar issue.
When I used [page_polls] in poll archive page content or when the WP-Poll function get_poll was called, poll results were always displayed.
No cache plugin were used and first time visitors also saw results instead of form.
I resolved the issue by replacing get_poll calls in my templates and [page_polls] shortcode in my archive page by calling do_shortcode( '[poll id="{poll_id}"]' ) instead.
Hope it could help.
Plugin version : 2.75.5
WordPress version : 5.5.1
Hi,
If you want to use national characters in hashtag, you could modify the regular expression in the plugin file ‘hashtag.php’ at line 49.
For example, to accept voyels with accent :
$content = preg_replace('/(^|\s)#(\w*[a-zA-Zàáâãäåçèéêëìíîïðòóôõöùúûüýÿ_]+\w*)/i', '<span class="'.$class.'">\1#<a href="'.site_url().'?s='.$hash.'\2">\2</a></span>', $content);