vikr
Forum Replies Created
-
Forum: Plugins
In reply to: [NextGEN Facebook] Number of Tweets No Longer Shown?Thanks very much for the info. I hope it does come back. It seems unwise for Twitter to accept a situation in which people will always be seeing number of Facebook shares, but next to the Tweet button there is nothing.
Forum: Plugins
In reply to: [NextGEN Facebook] Number of Tweets No Longer Shown?That is terrible. I was planning to show the number of Tweets my posts have at an upcoming conference. Is there any way to find out how many tweets a given post has had at this point?
Update… I found it in Google Analytics, at Behavior->Events->Top Events->Event Label tab. Cool!
I found it. I make the post sticky. To get the post, I use:
<?php $post = get_post( $sticky_post_id ); ?>To keep it from printing in the main loop, I add this to the child theme’s functions.php file:
function exclude_sticky( $query ) { if ( $query->is_home() && $query->is_main_query() ) { $query->set('post__not_in', get_option('sticky_posts')); } } add_action('pre_get_posts', 'exclude_sticky');Forum: Plugins
In reply to: [WooCommerce] Can't Purchase Extension for WooCommerce?UPDATE: I was using Chrome. In Firefox everything works perfectly.
Forum: Fixing WordPress
In reply to: Authenticating WordPress Username/Password using XML-RPC?Okay, I got this all working. But I was surprised that I got no support from this forum. I asked about this three times, and got not one reply. Is there a different forum that is more appropriate for these kinds of questions?
Forum: Fixing WordPress
In reply to: Authenticating WordPress Username/Password using XML-RPC?I have all the code I need (via CodeIgniter) to do XML-RPC. I just need the docs for the xml-rpc message and parameters to use for authenticating a username/password. Can anyone provide a link to this documentation? I looked all day yesterday and haven’t yet found it.