Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #41328
    clarity00
    Member

    Is it possible to move the featured post slider down? On my homepage I would like to have the welcome text before the slider if possible.

    Thanks!

    #41346
    Sakin
    Keymaster

    @clarity00: Sorry there is no option to do that from theme options panel. For this first, you need to build child theme and then create functions.php ifn you child theme and add the following code to remove the slider.

    // Removing slider
    function unhook_catchevolution_functions() {
    	remove_action( 'catchevolution_content', 'catchevolution_slider_display', 10 );	
    }
    add_action( 'init', 'unhook_catchevolution_functions' );

    Then you can copy index.php from catch evolution theme to your child theme and paste the following code, where you want to show it.
    <?php catchevolution_slider_display(); ?>

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