Rico
Forum Replies Created
-
Forum: Plugins
In reply to: [Posts in Sidebar] Featured picture always visibeHello!
It’s working now flawlessly.
Thank you for your kind help. And a great plugin of course! 😉
Have a nice day!Forum: Plugins
In reply to: [Posts in Sidebar] Featured picture always visibeI know it is. And I don’t have the checkmark so the image should not be visible. No matter what I check here I’m still seeing the image.
Forum: Plugins
In reply to: [Posts in Sidebar] Custom CSSGreat, many thanks for your kind help. It works!
Have a nice day!Forum: Plugins
In reply to: [Posts in Sidebar] Custom CSSMorning,
One more thing. I have been noticing for a long time now that if you use a paragraph the font changes.
See here:
http://shrani.si/f/8/12V/4LHlgFBF/error.jpg
Any fix for that?
Thank you,
RForum: Plugins
In reply to: [Posts in Sidebar] Custom CSSThanks. It works. Wonderful!
I guess I didn’t include the .pis-li so that’s why it didn’t work.I don’t know where old css has gone. Once you helped me with the design (we changed some gaps etc) I updated the plugin for several times and it worked flawlessly since then. So custom code seems to be in action but I cannot see it. 😉
Hi again. nevermind, I see what I missed. Category Archives!
Have a nice day!Hi Bojan,
I was wondering if I can have a custom sidebar in the category first page.
I have my custom sidebar in every categorized post but the first page http://www.domain.com/category/example/ is still showing me Global Sidebar.I marked the checkbox “As Global Sidebar for selected categories” and selected the category but that does not seem to work.
Thank you.
Forum: Fixing WordPress
In reply to: Perma links and missing pagesUh, I found the remaining pages – they were moved to the end of the list.
Sorting by day sorted that out.
The funny link, however, is still there.
I’m really hoping it can be seen like by other two languages.Forum: Plugins
In reply to: [Dynamic Featured Image] Nothing is workingAnkit, no, this is my nickname. But I will change it and send it to you once again!
Thank you!Forum: Plugins
In reply to: [FooGallery Owl Carousel Template] Custom linksNevermind, I find it!
http://docs.fooplugins.com/foogallery/foogallery-owl-carousel-documentation/Thanks, great plugin!
Forum: Plugins
In reply to: [Dynamic Featured Image] Nothing is workingHello Ankit,
Did you perhaps take a look at the mail I have sent you?
Thanks,
RForum: Plugins
In reply to: [wp-forecast] Icons placementYou are welcome!
Do you have a list of all the terms somewhere?Forum: Plugins
In reply to: [Dynamic Featured Image] Nothing is workingHi,
Still nothing.I tried
$featured_images = $dynamic_featured_image->get_featured_images;
and
$featured_images = $dynamic_featured_image->get_featured_images();Perhaps the plugin is incompatible with this theme?
Forum: Plugins
In reply to: [Dynamic Featured Image] Nothing is workingNope. I tried that yesterday and I didn’t work either.
Maybe it has something to do with this value: $featured_images = $dynamic_featured_image->get_featured_images( 2 );What does number 2 stands for?
I’d like all selected featured images to slide infinitely …Forum: Plugins
In reply to: [Dynamic Featured Image] Nothing is workingThanks, but still nothing. :/
My whole code looks like this:
<?php $mh_newsdesk_options = mh_newsdesk_theme_options(); ?> <?php get_header(); ?> <div class="mh-section mh-group"> <div id="main-content" class="mh-content"> <?php mh_newsdesk_before_post_content(); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php get_template_part('content', 'single'); ?> <?php mh_newsdesk_socialise(); ?> <?php mh_newsdesk_postnav(); ?> <?php if ($mh_newsdesk_options['author_box'] == 'enable') { ?> <?php get_template_part('template', 'authorbox'); ?> <?php } ?> <?php if ($mh_newsdesk_options['related_content'] == 'enable') { ?> <?php get_template_part('content', 'related'); ?> <?php } ?> <?php endwhile; ?> <?php comments_template(); ?> <?php endif; ?> </div> <?php get_sidebar(); ?> </div> <?php get_footer(); ?> if( class_exists('Dynamic_Featured_Image') ) { global $dynamic_featured_image; $featured_images = $dynamic_featured_image->get_featured_images( 2 ); //You can now loop through the image to display them as required //For example foreach( $featured_images as $image ) { echo "<a href='{$image['full']}'>"; echo "<img src='{$image['thumb']}' alt='Dynamic Featured Image' />"; echo "</a>"; } }