Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save torbentschechne/8b45785974adaf7016699a56e7f50830 to your computer and use it in GitHub Desktop.
Save torbentschechne/8b45785974adaf7016699a56e7f50830 to your computer and use it in GitHub Desktop.
Remove a parent's theme hook
function child_remove_parent_function() {
remove_action( 'woocommerce_single_product_summary', 'sf_product_share', 45);
}
add_action( 'wp_loaded', 'child_remove_parent_function' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment