Hi Pratik,
I appreciate the response. Since I posted I used the following method to implement a custom footer. This way I don’t need to worry about parent theme updates.
add_action( 'catchresponsive_footer', 'mbsf_footer_content', 100 );
add_action( 'wp_loaded' , 'mbsf_add_and_remove' , 15 );
function mbsf_add_and_remove() {
remove_action( 'catchresponsive_footer', 'catchresponsive_footer_content', 100 );
}
mbsf_footer_content is the custom footer function.
Thanks,
Bruce.