Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #121431
    taquin21
    Participant

    Hi,

    I’d like to have the Logo slider block just above the footer. How can I do that? I notice some items have a checkbox in the Theme options that says “Move above the footer” but I can’t see this choice for the Logo Slider.

    Thanks for your help,

    Luc

    #121436
    tikaram
    Keymaster

    @taquin21 : The option to move Logo slider above the footer is not available in theme options. It can be done by creating a child theme and adding the following code in the functions.php file of child theme.
    Follow this link to know more about creating child themes.

    function decree_pro_child_move_logo_slider_before_footer(){
    	remove_action( 'decree_before_content', 'decree_logo_slider', 80 );
    	add_action( 'decree_after_content', 'decree_logo_slider', 90 );
    
    }
    add_action( 'init', 'decree_pro_child_move_logo_slider_before_footer' );

    Let me know if you have any other issues.

    Regards,
    Tikaram

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Logo slider above the footer’ is closed to new replies.