LikeBtn
Forum Replies Created
-
Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] List most popular post without shortcodeYou are welcome.
Forum: Reviews
In reply to: [Like Button Rating ♥ LikeBtn] Bug while using firefox browserHi, check this out: http://likebtn.com/en/faq
Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Offset ErrorCould you please provide the shortcode you are using.
Are you using the latest version of the plugin https://wordpress.org/plugins/likebtn-like-button/?Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Upgrade your website planYour website TRIAL plan has expired. Now your website plan is FREE.
You need to upgrade the plan of website: http://likebtn.com/en/#plans_pricingForum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Comment likes showing loading bar in repliesWe’ve tested it with GamesHero theme – it works ok.
Peobably there is a mistake in HTML of the page with comments.Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Change the position of buttonsEnjoy
Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Change the position of buttonsYou need to:
1) Enable LikeBtn for posts and set style on the plugin Buttons tab.
2) Disable LikeBtn for posts.Have you done this?
Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Change the position of buttonsAre you trying to change the style of the button on the Buttons tab of the plugin or using CSS?
Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Comment likes showing loading bar in repliesWe will try to find a solution.
Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Change the position of buttonsDo the following trick:
1) Add the following code:
<?php likebtn_post(); ?>
2) Enable LikeBtn for posts and configure the button on the plugin Buttons tab.
3) Disable LikeBtn for posts.Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Change the position of buttonsTry this:
<?php likebtn_post(); ?>Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Change the position of buttonsWhat WordPress Theme are you using?
Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Display most popular with WP_QuerySee instructions on http://likebtn.com/en/wordpress-like-button-plugin#sort_posts_by_likes
<?php $query_args = array( 'post_type' => 'post', 'orderby' => 'meta_value', 'order' => 'DESC', 'meta_query' => array( 'relation' => 'OR', array( 'key' => 'Likes', 'compare' => 'NOT EXISTS' ), array( 'key' => 'Likes', 'compare' => 'EXISTS' ) ) ); $loop = new WP_Query($query_args); if ($loop->have_posts()): while($loop->have_posts()): $loop->the_post(); ?> <a href="<?php the_permalink(); ?>"> <div> <h3><?php echo the_title();?></h3> <p><?php echo the_content(); ?></p> </div> </a> <?php endwhile; endif; ?>Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Display most popular with WP_QueryThere is a recipe for query_posts function:
http://likebtn.com/en/wordpress-like-button-plugin#sort_posts_by_likesWe will try to find a solution for WP_Query and let you know.