Skip to content

Instantly share code, notes, and snippets.

@ejntaylor
Created November 20, 2013 21:02
Show Gist options
  • Select an option

  • Save ejntaylor/7570952 to your computer and use it in GitHub Desktop.

Select an option

Save ejntaylor/7570952 to your computer and use it in GitHub Desktop.
/Remove digg digg on woocommerce pages
// remove digg digg on woocommerce pages
add_action ('template_redirect','remove_dd_buttons');
function remove_dd_buttons() {
if(is_product() ) {
remove_filter('the_excerpt', 'dd_hook_wp_content');
remove_filter('the_content', 'dd_hook_wp_content');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment