Hi Sakin, I’ve created child theme and an associated functions.php file containing the following code:
<?php
add_action( ‘catcheverest_after_main’, ‘catcheverest_homepage_featured_display’, 10 );
remove_action( ‘catcheverest_main’, ‘catcheverest_homepage_featured_display’, 10 );
?>
It adds the Featured Content area after the main content just fine, but the original Featured Content area remains. At the moment I’m hiding it with CSS but it’s not the ideal solution.
Am I doing something wrong with the remove_action command?