Hi
The dashboard stats are currently viewable only for the admins. I assume it should be possible to make it viewable also for other users(Editors/Authors etc.) through functions.php?
I would appreciated if somebody could guide me a little.
]]>I don’t know why, but in Most Shared Posts Dashboard in the Admin and also in the Widget is just the count for Google+. No counts for Facebook and Twitter. In the Settings are all networks enabled… Any idea how to fix that? See in the right sidebar: https://apfelblog.ch/
]]>Is there also a possibility to set the number of days when you’re using the shortcode?
]]>instead of
// Add a header hook so we can link to a CSS file
add_action('wp_head', 'most_shared_posts_head');
// Our header function which'll hook in our CSS file
function most_shared_posts_head() {
echo '<link rel="stylesheet" type="text/css" href="' . plugins_url('most-shared-posts.css', __FILE__). '">';
}
shouldn’t you use
// Add a header hook so we can link to a CSS file
add_action('wp_enqueue_scripts', 'most_shared_posts_style');
// Our header function which'll hook in our CSS file
function most_shared_posts_style() {
wp_enqueue_style( 'most-shared-posts', plugins_url('most-shared-posts.css', __FILE__) );
}
]]>
Hi,
Just want to ask if this is still active
]]>Hi
anyone else having problems with this plugin since upgrading to WP3.4?
I’ve had the plugin installed for a few weeks without a problem but since upgrading to WP3.4 the plugin seems to have stopped updating when posts get shared.
thanks
Kevin
Hi
I need help to show total count shows above my post image. Here is my site page https://guppy.pro/best-guppys/most-combined/ So now the top of of each photo shows “0” i need there exact count . For social media share i am using “AddThis Social Bookmarking” plugin.
Please help me.
]]>This plugin is using file_get_contents() to retrieve remote statistics. file_get_contents() is disabled by many hosting services as it can cause significant security issues. Please update the code to not use this function.
When building a plugin please always check the Codex to see if functions are already available to you. WordPress includes an HTTP class that is very robust. Instead of blindly assuming your function will work across all hosts, the HTTP class determines the best method to retrieve data on a per host basis. It is very easy to use. Update your code to use the built-in WordPress functions
]]>This plugin is using file_get_contents() to retrieve remote statistics. file_get_contents() is disabled by many hosting services as it can cause significant security issues. Please update the code to not use this function.
When building a plugin please always check the Codex to see if functions are already available to you. WordPress includes an HTTP class that is very robust. Instead of blindly assuming your function will work across all hosts, the HTTP class determines the best method to retrieve data on a per host basis. It is very easy to use. Update your code to use the built-in WordPress functions
]]>Hey, this looks great! Any plans to add other networks, like Linked In?
thnx!
-jennyb
Instead of simply having a graphic with a counter displayed, can that be replaced with an actual share button (which by the way would also have a counter) so that it would be more useful and and interactive?
]]>Does not work with short URLS such as bit.ly or goog.le when send to the social network(s),
]]>It’s broken. I activated the plugin and display it on the widget area but it only displays title of the widget “Most Shared Posts”. I have social share icons installed, but the plugin didn’t display the most share articles at all.
]]>Is there a way to either exclude certain posts, categories, tags, or to limit the date range to, for example not allow posts older than?
Thanks in advance. Love the plugin but cant show certain older posts that are actually popular ??
]]>Hi… a quick improvement you can make to your plugin is to make sure that Custom Post Types can be included in the counts as well.
You can do this pretty quickly in the most_shared_posts_update_social_data
function, by adding the post_type => any
argument to your query, like this:
$args = array(
'posts_per_page' => 500,
'orderby' => 'date',
'order' => 'DESC',
'ignore_sticky_posts' => 1,
'post_type' => 'any'
);
Thanks!
]]>For some reason for some articles it wasnt tracking some of the google +1’s, some of the facebook likes, etc. I thought it would be a great plug-in, but this isn’t properly working
]]>Theres something wrong with the latest plugin, it doesnt count all my popular posts and the counter seems to be stuck at 120 facebook likes. i have over 50 posts with over 2000 likes and the plugin havent found any one them ??
]]>