I was able to do this without much trouble for the slider but now have been requested to move the featured content to a new position. I can move the featured content just fine, but the I cannot seem to remove it from the original location.
Here is the code im using. Would someone please tell me what I have done wrong…
function remove_featured_content(){
remove_action(‘catchkathmandu_before_main’,’catchkathmandu_homepage_featured_content’,10 );
}
add_action(‘catchkathmandu_main’,’remove_featured_content’);
function move_featured_content(){
remove_action(‘catchkathmandu_before_main’,’catchkathmandu_homepage_featured_content’, 10);
}
add_action(‘catchkathmandu_special_content’,’move_featured_content’);
add_action(‘catchkathmandu_special_content’,’catchkathmandu_homepage_featured_content’);