Hi, the share count doesnot work.
]]>Hello,
I would like to know how it’s possible to get the most shared post ?
Where can I find the count of all the post in my database ?
In which table the count of [pssc] share is stocked ?
Thank you.
]]>Hi!,
I am using this plugin but facing an issue i.e. it is showing error message in front end as well as back end. After refreshing the page, the same issue disappears. This error message showing repeatedly.
Please check the attachment here: https://postimg.org/image/oxaeiuxl3/
Warning msg here:
Warning: json_decode() expects parameter 1 to be string, object given in C:\xampp\htdocs\PROJECT-NAME\wp-content\plugins\posts-social-shares-count\classes\share.count.php on line 66
Warning: json_decode() expects parameter 1 to be string, object given in C:\xampp\htdocs\PROJECT-NAME\wp-content\plugins\posts-social-shares-count\classes\share.count.php on line 86
0
I hope to get a solution soon ??
]]>I’m getting the following error in the delicious request:
WP_Error::__set_state(array(
'errors' =>
array (
'pssc_curl_error' =>
array (
0 => 'Could not resolve host: feeds.delicious.com',
),
),
'error_data' =>
array (
),
))
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hi,
I had used your plugin on my old host. But when I transferred to a new host, it started showing only post title comes and nothing after that.
On disabling this plugin, I was able to get back all my posts and see it properly. But this shortcode ([pssc_all]) appears in green colour over my article.
You can see it here:
https://www.getlifebytes.com/my-family-treats-me-as-if-im-a-driver/
Any help at the earliest would be highly appreciated.
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hi,
We are using your plugin but it is not counting any sharing. We are getting all counter ZERO.
Can you please help?
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>post share counter not in cress when i use facebook share function
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hi,
This plugin is not working on current wordpress version…my edit.php does not loads completely after activating this plugin….Kindly help asap as I need this functionality
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Currently linkedin counts does not work because the API URL is used with http instead of https.
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>When applying ‘publicly_queryable’ => false to a post type while Posts Social Shares Count is active I cannot see the Title or Taxonomies I created for this Post Type. I imagine that Posts Social Shares Count is trying track its shares but it can’t because it doesn’t have a permalink. I imagine there has to be a rule to track shares for post types that are not Publicly Queryable.
Here is a screenshot: https://i.imgur.com/tO5ObZ7.png
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Kind of random but I was wondering if I could track shares for a different URL than what is for my site? A site I am making is only using a Post Type to list youtube videos and is then linking out to the videos. They want to show the share count for those videos. Could I do something like:
<?php echo pssc_all('https://www.youtube.com/watch?v=-ZWWvL7-tZ4') ?>
I just tried this on my development site but it shows 0 shared. I am figuring that this might be working but its cached right now.
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Most of my numbers come from facebook likes. Are you thinking about adding Facebook Like counts to the plugin? If not would you be interested in doing a one off for a price?
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hi Bishoy,
My developer recently installed your plugin on our site and it is really waht we were looking for.
We are finding that only shares to Google+ are being registered and wanted to find out why this may be. Please can you advise.
We are running the latest version.
Many Thanks
James
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hello Bishoy,
I have problems with number of facebook shares, for example i have a post with 91 facebook shares and plugin say 16.
Can u do something?
Thank you!
Alessandro
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hello Bishoy,
First thank you for this plugin. I’m using the pssc_all()
function and I’m getting this error:
json_decode() expects parameter 1 to be string, object given
the trace is pointing to here:
Stack trace
…plugins/posts-social-shares-count/classes/share.count.php (37)
…plugins/posts-social-shares-count/classes/share.count.php (153)
in PsscShareCount::pssc_all called at ? (?)
I noticed this is where you have the twitter functions. after doing a little research i found Twitter has discontinue their share count API endpoint on November 20th, 2015.
you can read the official announcement here:
https://twittercommunity.com/t/a-new-design-for-tweet-and-follow-buttons/52791
Any plans on updating your plugin with a fix? thanks in advance.
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hello !
First of all, thank you for you plugin.
I would like to use it for a particular project. I need to display the top 5 posts of a website depending of total shares for a specific period of time (the last 7 days). So I need to query the 5 posts that were shared the most times in the last 7 days.
Is that possible with your plugin ? Or do you know a way of doing that ?
Thank you in advance,
Cédric
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hello Team,
Shortcode [pssc_all] Not working anymore. can someone Help me?
Thanks,
Manan
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>For the latest version of the plugin, the facebook counter is showing only the number of shares. Can we show the sum of shares / likes / comments?
Thanks a lot.
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hi,
Is there anyone that noticed that pinterest number of pins are not counting?
Mine is 0. Thanks,
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hi, there’s an issue with some server setups that causes this plugin’s cURL function to produce an error. The problem stems from when safe_mode is enabled, or a base_dir is set, it produces the following PHP error on post save:
Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when safe_mode is enabled or an open_basedir is set in /wp-content/plugins/posts-social-shares-count/classes/share.count.php on line 120
To fix this, I adjusted the file_get_contents_curl() function in share.count.php (around ln 120):
//support location redirects to future-proof script
$max_redirs = (ini_get('open_basedir') == '' && ini_get('safe_mode' == 'Off')) ? 2 : 0;
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_URL => $url,
CURLOPT_USERAGENT => $_SERVER['HTTP_USER_AGENT'],
CURLOPT_FAILONERROR => 1,
CURLOPT_FOLLOWLOCATION => $max_redirs > 0,
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_TIMEOUT => $this->timeout
));
(I also changed the multiple curl_setopt() calls to a single curl_setopt_array() call)
This fix was largely borrowed from the Advanced Steam Widget, which was having a similar problem a while back.
Hope this helps anyone else having problems with this. Bishoy.A, any chance this might be rolled into the code, so that it wont break on update?
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hi,
I am getting this error message sporadically on various Edit pages:
“Shares: Operation timed out after 10001 milliseconds with 0 bytes received”
This is breaking the entire page where it occurs, whether it’s a live page or when editing.
Do you have a solution or any ideas?
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hi.
Can i View post social shares count in edit.php post admin column
If not, please introduce this feature.
Regards
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hi,
I’m getting “Failed to connect to https://www.linkedin.com port 80: Connection refused” on my front-end when the plugin is enabled and i use [pssc_all].
Any thoughts?
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hi,
I have a problem on my website with this plugin :
when i’m calling this function :
pssc_all($post->ID)
It seems that this is related to the call to Twitter to get the total share count. I’m facing a Connection timeout error.
So I have to put under comments this line :
$tw = $this->pssc_twitter();
of the pssc_all() function of posts-social-shares-count/classes/share.count.php file.
Do you know if this is a known issue ? A temporary issue ?
Is it related to the call to https://urls.api.twitter.com/1/urls/count.json ?
Thanks for your help
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Sometimes the plugin will return a Bad Gateway 502 or 503 and complete crash the site. What causes this? Is it one of the social networks? If so, can there be a conditional if there is an error returned to stop loading?
Thanks!
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>I’m doing a redesign of a site and including this plug-in. It currently does not exist on the live site so there are no counts available. On our staging environment, the share counts do not show because of the URL obviously. I’m moving the live site from one domain to another so in the end is the same problem. Is there a way to preserve the share count? If the count it stored in the database, could I install and activate the plugin on the current live site, let it gather the share counts into the database, and export that somehow?
Thanks!
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hi, I want to know for how much time, the cache is stored? Can I change it to 15 minutes? I’ve published a post 37 minutes ago and I have shared it to various social network sites, but it’s still showing 0.
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Hi,
I’m trying to use your plugin with a post type but it’s not working. Could you help me?
Regards
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>I’m developing on my localhost and when I activated the plug-in, it throws this error on all of my post pages and break the site thereafter.
“SSL certificate problem: unable to get local issuer certificate”
I could not find documentation on this.
Thanks!
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>Eventhough I am using the latest version of the plugin, the cache is not working. Inside functions.php the below line always returns empty:
$count = $cache[ $function . '_' . $post_id ];
Therefore, the transient seems empty, and social counts are retrieved again without checking the cache period.
https://www.ads-software.com/plugins/posts-social-shares-count/
]]>