Storefront theme
This documentation can help you put a slider under the top menu of the Storefront theme.
Step 1
Go to the FTP of your website and create a child folder:
/wp-content/themes/storefront-child-theme/
Step 2
Create a style.css file in this folder:
/wp-content/themes/storefront-child-theme/style.css
and write this code in it:
/* Theme Name: Storefront child theme Template: storefront */ @import url('../storefront/style.css');
Step 3
Create a functions.php file:
/wp-content/themes/storefront-child-theme/functions.php
Write this code in it, just replace the shortcode with your slider's shortcode:
<?php function smart_slider_header(){ echo do_shortcode('[smartslider3 slider=315]'); } add_action('storefront_before_content', 'smart_slider_header');
Step 4
Activate your child theme.