Ashe 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 you replace the Ashe theme header with our slider.

1

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

/wp-content/themes/ashe-child/

2

Create a style.css file in this folder

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

and write this code in it:

/*
Theme Name: Ashe child theme
Template: ashe
*/
@import url('../ashe/style.css');
	
3

Create a /templates folder

/wp-content/themes/ashe-child/templates

then a /header folder in it.

/wp-content/themes/ashe-child/templates/header

4

Create a page-header.php file there

/wp-content/themes/ashe-child/templates/header/page-header.php

and write the PHP shortcode of your slider in it.

<?php
echo do_shortcode('[smartslider3 slider="1"]');
?>
5

Activate your child theme

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