Site icon Catch Themes

Remove duplicate of featured content

Hi, I've used the code below in the functions.php file of a child theme to add a featured content area below the main text area:
/ Unhook default parent functions
function unhook_default_functions() {
	remove_action( 'catcheverest_main', 'catcheverest_homepage_featured_display', 10 );
}
add_action('init','unhook_default_functions');
// Add Featured Content after seconday
add_action( 'catcheverest_after_secondary', 'catcheverest_homepage_featured_display', 10 );
However, I need to remove the original featured content area below the header image. Please can you tell me how to do this?
Exit mobile version