Hello There,
Thanks for updating in! I have inspected your child theme and updated the code. I added this:
<?php
// =============================================================================
// FUNCTIONS.PHP
// -----------------------------------------------------------------------------
// Overwrite or add your own custom functions to X in this file.
// =============================================================================
// =============================================================================
// TABLE OF CONTENTS
// -----------------------------------------------------------------------------
// 01. Enqueue Parent Stylesheet
// 02. Additional Functions
// =============================================================================
// Enqueue Parent Stylesheet
// =============================================================================
add_filter( 'x_enqueue_parent_stylesheet', '__return_true' );
// Additional Functions
// =============================================================================
add_action('x_before_view_renew__landmark-header', 'custom_blog_header01');
function custom_blog_header01(){
if ( is_single() ) {
echo do_shortcode('[rev_slider alias="aboutme"]');
}
}
Please try to activate the child theme now. Please let us know how it goes.