Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active May 27, 2018 20:12
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/872ede228c72053b8e25273b75da994d to your computer and use it in GitHub Desktop.
Save braddalton/872ede228c72053b8e25273b75da994d to your computer and use it in GitHub Desktop.
Monochrome Pro Remove Before Footer CTA Widget https://wp.me/p1lTu0-hwJ
add_action( 'genesis_before_footer', 'remove_before_footer_cta', 8 );
function remove_before_footer_cta() {
if ( is_page( 'contact' ) ) {
remove_action( 'genesis_before_footer', 'monochrome_before_footer_cta' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment