Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #84773
    Sanket
    Participant

    Hi Catch Theme Team,
    I have a few questions. Seeking your expertise to bail me out.

    1. How can I limit the number of posts on the slider. I want the latest 5 posts to display on the slider and not the older ones.

    2. Is Simple Catch a responsive theme or not?

    3. How can I reduce the size of Featured Image Slider. I want to reduce height of the slider.

    4. Can you recommend a compatible Call Now button plugin for this theme? The ones I searched on WP are not compatible with Some Catch.

    My url is http://www.myblog.medtreatserve.com

    Thanks for your support in anticipation.

    Sanket

    #84786
    Pratik
    Keymaster

    Hi @Sanket,

    1. How can I limit the number of posts on the slider. I want the latest 5 posts to display on the slider and not the older ones.
    * The slider in free version has option to show the number of posts but not to show the latest post. Simple Catch Pro version has a Featured Category Slider, with which you can achieve what you want. Other features in pro version can be found here.

    2. Is Simple Catch a responsive theme or not?
    * Unfortunately, Simple Catch Theme is not responsive. You can use any other theme from our themes(including free ones) and it will be responsive.

    3. How can I reduce the size of Featured Image Slider. I want to reduce height of the slider.
    * To achieve this, you will need to do some customization via child theme. For details on child theme, you can go here. Then in the child theme’s functions.php file, add following code:

    
    function simple_catch_change_image_size() {
       add_image_size( 'slider', 976, 313, true);
    }
    add_action( 'after_setup_theme', 'simple_catch_change_image_size', 11 );
    

    You can change the width: 976px and height 313px to the size you want. After this, you need to regenerate the thumbnails. For that, install Regenerate Thumbnail Plugin and follow its instructions.

    4. Can you recommend a compatible Call Now button plugin for this theme? The ones I searched on WP are not compatible with Some Catch.
    I am not sure If I can recommend a plugin. You can search for plugins in WordPress.org plugins repo.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Featured image slider’ is closed to new replies.