Skip to content

Instantly share code, notes, and snippets.

@joshfeck
Last active December 11, 2015 18:22
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 joshfeck/7df3726a264333163864 to your computer and use it in GitHub Desktop.
Save joshfeck/7df3726a264333163864 to your computer and use it in GitHub Desktop.
Add this to a site that has the 3 Clicks WordPress theme to force 3 clicks to display content from the Event Espresso plugin.
<?php
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file
function remove_g1_precontent_render() {
if ( 'espresso_events' == get_post_type() ) {
remove_action( 'g1_precontent', 'g1_precontent_render' );
}
}
add_action( 'g1_precontent', 'remove_g1_precontent_render', 9 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment