icakeov
Forum Replies Created
-
great thanks!
actually, I decided to keep the category in the permalink structure so luckily this won’t be an issue.Forum: Themes and Templates
In reply to: The website shows very narrow on an iPhoneGreat Michael, thanks!
The website was still showing fine on it, I realized that the person had entered a long string of underscores that was displaying the website very small as a result (because the width is 100%)Forum: Fixing WordPress
In reply to: Changing category names without without losing previous post urlsJust wondering if anyone has thoughts on this or if I need to provide more information on this?
Maybe I can create duplicate categories with same names but new slugs? And that way I can leave the old categories as they are so the url wouldn’t change.
Or there might be a third solution?
ThanksForum: Fixing WordPress
In reply to: get_posts posting wrong post categories“category__in” seems to have worked!
I used it as ”category__in’ => 18′ though (without the array). Should I do the array just to be on the safe side?
Thanks alchymyth!Hi I have just noticed that get_posts is actually posting wrong posts. Is this some get_posts bug? Anyone know a fix for it?
Or should I just switch to wp_query if that one works really well?Right! of course! The new css header-container class solved the problem.
Thanks so much for your help!Forum: Fixing WordPress
In reply to: Twenty Thirteen text paragraph doesn't show new line“PS Disable Auto Formatting” solved the issue!
Forum: Plugins
In reply to: [Polylang] Are categories categorized somehow into different languagesHi Chouby,
I haven’t heard from the developer of the plugin yet.
I do see in the code that the plugin supports some qTrans plugin.
I am learning about hooking and filtering, I’m imagining that’s one thing I’d need to do to add this functionality.. ? Do you think this would be at least possible?
Any suggestions would be great, I think this is the only thing that’s left to get everything functioning great with polylang.
Thanks again.Forum: Plugins
In reply to: [Polylang] Are categories categorized somehow into different languagesI see, I’ll check with them. Thanks Chouby!
Forum: Plugins
In reply to: [Polylang] Are categories categorized somehow into different languagesActually, I have one more question, would this be the right code for this function:
wpp_get_mostpopular("post_type='post'&range='monthly'&stats_comments=0&stats_date=1&stats_category=1&limit=6&lang=en");I added ‘&lang=en’ at the end it doesn’t seem to be working
Forum: Fixing WordPress
In reply to: 'orderby'=>"post_date" not workingFigured it out! It was the offset being 4. I am already keeping track of the featured images through a parameter so it was unnecessary to offset the posts.
Thanks again for your help WPShowCaseForum: Fixing WordPress
In reply to: 'orderby'=>"post_date" not workingThanks WPShowCase, I replaced it with ‘date’ yet the issue is still there. There actually is a posting that was published yesterday that’s not displaying still.
Forum: Plugins
In reply to: [Polylang] Are categories categorized somehow into different languagesI added ‘lang’ => ‘en’, and ‘lang’ => ‘es’ on top and that seems to work!
Thanks again Chouby!Forum: Plugins
In reply to: [Polylang] Are categories categorized somehow into different languagesDoesn’t seem to work, you can see that the page is displaying one spanish post still. I took out the ‘lang’ part. Maybe I should try it with that part of the code.
For the posts under the carousel slide, I’m using this code:// display English menu if ('en_CA' == get_locale()) { $args = array('offset'=> 4, 'numberposts' => 10, 'post_status'=>"publish",'post_type'=>"post",'order'=> 'DESC','orderby'=>"post_date",'post__not_in'=> $not_duplicate, 'category__not_in'=> array(19,27,454)); } // display Spanish menu else if ('es_ES' == get_locale()) { $args = array('offset'=> 4, 'numberposts' => 10, 'post_status'=>"publish", 'post_type'=>"post",'order'=> 'DESC','orderby'=>"post_date",'post__not_in'=> $not_duplicate, 'category__not_in'=> array(19,27,454)); // Social Calendar, Contests, Events }Forum: Plugins
In reply to: [Polylang] Are categories categorized somehow into different languagesAh I didn’t try just that! Let me do it now, that would be amazing if it worked that way.