• Hi,

    I’m using Pictorico as a photography portfolio, and I really like the featured posts slider. But instead of having the most recent non-featured posts under the slider, I’d like to put a static photo gallery.

    So I’m guessing that would imply creating a static front page with the photo gallery, but how do I integrate the featured posts slider into the page?

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello,

    There is no way to add the default slider in a static page. However you can use some Third Party plugin which is having that functionality for achieving that.

    After using the plugin for showing post slider, you can add the shortcode at the top of your front page to make it work.

    Thank you.

    Hi there,

    Surya Panda is right that the theme doesn’t display the slider on a static front page by default. However, you can get the slider to display on a static front page if you’re willing to experiment a little with the theme’s code.

    The first step is for you to set up a child theme.

    In case you’re unsure, the following guides provide a good introduction to child themes, including steps to set one up:

    After you have completed that step, copy the parent’s header.php file to your child theme’s directory and then open it in your favourite text/code editor.

    Locate the following code in that file:

    <?php if ( is_home() && pictorico_has_featured_posts( 1 ) ) : ?>

    The is_home() conditional tag tells the theme to display the slider when you have your home page set to display your site’s latest posts:

    https://codex.wordpress.org/Conditional_Tags#The_Main_Page

    The is_front_page() conditional tag can be used in cases where you want to display something on your site’s front page, regardless of whether the front page is set to show posts or static content.

    Switching the is_home() tag with is_front_page() in your child theme would therefore get the slider to display on your static front page:

    <?php if ( is_front_page() && pictorico_has_featured_posts( 1 ) ) : ?>

    Let me know if you decide to go through the above steps and if any questions come up along the way.

    Thread Starter stanaron

    (@stanaron)

    Great,

    I wasn’t able to make the child theme, so I was kind of working without a net, but your solution worked perfectly.

    Something else (maybe I should create a different thread for it, but it’s still about the featured content slider)

    Is there any way to have it display only the title of the article, as opposed to the title and part of the text?

    Thanks

    I’m glad that solution worked out!

    To edit the slider itself, copy/paste the theme’s featured-content.php file to your child theme’s directory.

    The following part of the code in that file is pulling in the post’s excerpt to the slider:

    <div class="entry-excerpt">
    	<?php the_excerpt(); ?>
    </div>

    Remove the above code to remove the excerpt.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Static home page with featured posts slider’ is closed to new replies.