Flatsome child theme

⚠️ Warning: To be able to follow the steps of this tutorial, you are required you to have coding knowledge. Regretfully we can't provide support for custom coding. If you can't achieve what you are looking for or if you're not sure how to follow the instructions, hire a developer. We are also unable to provide support for problems happening because of custom codes.

This documentation can help with Flatsome theme to insert a slider under your top menu.

Step 1

Go to the FTP of your website and create a child folder

/wp-content/themes/flatsome-child/

Step 2

Create a style.css file in this folder

/wp-content/themes/flatsome-child/style.css

and write this code in it:

/*
Theme Name: Flatsome child theme
Template: flatsome
*/	

Step 3

Create a functions.php file

/wp-content/themes/flatsome-child/functions.php

Write this code in it, just replace the shortcode with your slider's:

<?php
function smart_slider_header(){
    echo do_shortcode('[smartslider3 slider=1]');
}
          
add_action('flatsome_after_header', 'smart_slider_header');	

This will put the slider under your menu.

Step 4

Activate your child theme


Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.