Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #11509
    Rideit NZ
    Member

    Hi, Is it possible to change my 3 featured content so that they are below the homepage main content? So ideally I would have the 3 columns below the homepage content. Also can you have links add in the featured content?
    Thanks RideitNZ.com

    #11525
    Sakin
    Keymaster

    @Rideit NZ: This options in not there. For this you might need to hire customizer. This is complicated process. First you need create child theme, then you need to remove_action your catcheverest_homepage_featured_display() and then add_action back catcheverest_homepage_featured_display() to the after sidebar area.

    I am not 100% sure, you can try adding the following code in your child theme functions.php

    // Unhook default parent functions
    function unhook_default_functions() {
    	remove_action( 'catcheverest_main', 'catcheverest_homepage_featured_display', 10 );
    }
    add_action('init','unhook_default_functions');
    
    add_action( 'catcheverest_after_secondary', 'catcheverest_homepage_featured_display', 10 );
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘changing home page?’ is closed to new replies.