Skip to content

Instantly share code, notes, and snippets.

@joshfeck
Created November 15, 2013 22:04
Show Gist options
  • Select an option

  • Save joshfeck/7492428 to your computer and use it in GitHub Desktop.

Select an option

Save joshfeck/7492428 to your computer and use it in GitHub Desktop.
removes social buttons for one event
<?php
//* Do NOT include the opening php tag unless this is going into its own file
function my_remove_social_buttons($event_id){
if ($event_id == '5')
remove_action('action_hook_espresso_social_display_buttons', 'espresso_social_display_buttons', 10, 1);
}
add_action('action_hook_espresso_social_display_buttons', 'my_remove_social_buttons', 9, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment