Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created September 10, 2018 08:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/26d6942c669de116fa6a7f3fa1c827cd to your computer and use it in GitHub Desktop.
Save braddalton/26d6942c669de116fa6a7f3fa1c827cd to your computer and use it in GitHub Desktop.
Remove Essence Footer CTA From WooCommerce Pages in Essence Pro https://wpsites.net/web-design/remove-essence-footer-cta-from-woocommerce-pages/
add_action( 'genesis_before_footer', 'remove_essence_footer_cta' );
function remove_essence_footer_cta() {
if ( is_woocommerce() ) {
remove_action( 'genesis_before_footer', 'essence_footer_cta', 17 );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment