wahiine
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Fifteen] Fixed height for box around imagesI use the fifteen theme.
My site is here: http://ioga.no/
As you can see, the box around the photos have the same width, which looks super nice. Hoever, the height varies with the photos. Would look much cleaner if the box had fixed measurements everywhere and the image inside just changed size.
Forum: Themes and Templates
In reply to: [Fifteen] Move main content up and Safari browserYes refreshing a few more times helped – thanks heaps 🙂
Forum: Themes and Templates
In reply to: [Fifteen] Move main content up and Safari browserThanks stephencottontail!
The social media icons got removed, but the top bar is still there. Any idea what to try next?
Forum: Plugins
In reply to: [Polylang] [Plugin: Polylang] Feature posts not showing for new languageI think I know how to make it work, but I am no good at writing PHP. Is there someone who could help me translate this:
if (get_option(‘estore_use_pages’) == ‘false’) and the language is english, show posts for category XX;
if (get_option(‘estore_use_pages’) == ‘false’) and the language is polish, show posts for category XX;
It is probably not the most awesome solution but it could work and I am desperate.
Thank you so much! 🙂
Forum: Plugins
In reply to: [Polylang] [Plugin: Polylang] Feature posts not showing for new languageThanks a lot, but it still does not work. Any other suggestions?
philzzz, have you had any luck solving it?
Forum: Plugins
In reply to: [Polylang] [Plugin: Polylang] Feature posts not showing for new languageThanks so much for the reply, but it still does not work.
Even though the categories in the different languages are linked, the feature slider only shows the posts in the category that is chosen. That means that is shows either the posts for the polish category on the polish site or the posts for the english category on the main site, but never both together.
I am getting a bit desperate to solve this, I can even hard code the three posts I need for each language. Any ideas on how to do that?
I really appreciate the help!
Forum: Plugins
In reply to: [Polylang] [Plugin: Polylang] Feature posts not showing for new languageThanks so much for the reply!
I want to get the posts for the same category in two different languages though. Polish category for the polish site and english for the english one.
How do I get the code to select featured category based on language? So that different posts show for the different language sites?
The code looks like this:
if (get_option('estore_use_pages') == 'false') query_posts("showposts=$featured_num&cat=".get_catId($featured_cat)); else { global $pages_number; if (get_option('estore_feat_pages') <> '') $featured_num = count(get_option('estore_feat_pages')); else $featured_num = $pages_number; query_posts(array('post_type' => 'page', 'orderby' => 'menu_order', 'order' => 'DESC', 'post__in' => (array) get_option('estore_feat_pages'), 'showposts' => (int) $featured_num)); };