icakeov
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook Comments] Changing the font color of the Facebook Comment PluginI still haven’t figured this one out, anyone has any thoughts?
Forum: Fixing WordPress
In reply to: [NSFW] Menu not working in the mobile viewIt also doesn’t work in a web browser, when I reduce the size of the browser to match the size of the mobile device.
Forum: Fixing WordPress
In reply to: [NSFW] Menu not working in the mobile viewIt’s twenty twelve theme that was initially just copied into a folder and lots of custom things were done to it. In the meantime I made it into a child theme.
Forum: Fixing WordPress
In reply to: Drop-down menu not working in mobile modeThanks!
Forum: Plugins
In reply to: [Dynamic Featured Image] dfi_get_featured_images not workingThanks Ankit!
Forum: Plugins
In reply to: [WebberZone Top 10 — Popular Posts] Does this plugin support Polylang?Ok thanks, I still need to work on all this and will let you know if there are any problems.
Looks pretty clear.
Thanks for the help.Forum: Plugins
In reply to: [WebberZone Top 10 — Popular Posts] Does this plugin support Polylang?Hi Ajay
Polylang basically doubles Posts. I started with english versions and then I created a spanish site with all the posts that is translated to spanish. They are distinguished by the “lang” taxonomy, so if I want to put up bunch of posts, I would just need to include that taxonomy in the array.
To my understanding if Top 10 updates “meta_value_num” and “meta_key” values, the query would find the right posts using all these taxonomies in combination.
For example:
<?php query_posts( array( ‘meta_key’ => ‘views’, ‘orderby’ => ‘meta_value_num’, ‘order’ => ‘DESC’ ), ‘lang’ => ‘en’ ); ?>
(note that meta_key can also be: ‘meta_key’ => ‘views’ depending on how a specific plugin works)Does this help?
Forum: Plugins
In reply to: [WebberZone Top 10 — Popular Posts] Does this plugin support Polylang?Thanks for the response Ajay.
Found out that with the way Polylang works, it’s actually fine, I can just call the query using “meta_value_num” in combination with it.Forum: Plugins
In reply to: [WP-PostViews] does this plugin support Polylang?Very cool. You rock Lester, thanks!
I was going to “resolve” it but I guess it’s not a directly a support question.Forum: Plugins
In reply to: [WP-PostViews] does this plugin support Polylang?Ah, that sounds like it would solve the problem!
Is ‘meta_value_num’ the plugin’s variable or WP’s global variable?Forum: Plugins
In reply to: [WP-PostViews] does this plugin support Polylang?Thanks for the response Lester.
Polylang basically doubles Posts. I started with english versions and then I created a spanish site with all the posts that is translated to spanish. They are distinguished by the “lang” taxonomy, so if I want to put up bunch of posts, I would just need to include that taxonomy in the array. For example:
$args = array( 'numberposts' => 4, 'post_status'=>"publish", 'lang' => 'en', 'post_type'=>"post",'orderby'=>"post_date",'order'=> 'DESC','tag'=>"Feature",'category__not_in'=> array(19,27,454,1318)); // Social Calendar, Contests, Events
This only displays english posts.
If I wanted to do that for the most popular posts, I’d need to call your popular post function but I would want it to filter out for me only one language posts.Forum: Plugins
In reply to: [AdRotate Banner Manager] Tracking not working for one of the adsHi Arnan, I see that there is a new update, does it contain the new code?
Forum: Plugins
In reply to: [Polylang] Are categories categorized somehow into different languagesHi Chouby
I just thought I’d check in again about this. Do you have any thoughts on what users of Polylang use to track most popular posts?
This could be a new thread even, should I post one and see if I hear from the Polylang community?
Thanks!Forum: Plugins
In reply to: [AdRotate Banner Manager] Tracking not working for one of the adsThanks Aman I’ll do that now
Forum: Plugins
In reply to: [WP SEO Redirect 301] Redirecting old urls retroactivelyAha, it does. thanks!