Home Forums Total Home Screen Sections

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #3845
    SoulJiah
    Participant

    How can i re-arrange the home screen sections? I need the Team Section to be under the Home Slider? But i dont want to disable the over sections i want those also!

    #3849
    TickyNucker
    Participant

    Add this to the “functions.php” in your child theme:

    function total_home_section(){
    	$total_home_sections = apply_filters('total_home_sections',
    	array(
    		'slider',
    		'about',
    		'cta',
    		'blog',
    		'featured',
    		'team',
    		'service',
    		'testimonial',
    		'counter',
    		'logo',
    		'portfolio'
    		)
    	);
    
    	return $total_home_sections;
    }

    and rearrange as you like (as I have done already).

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.