Skip to content

Instantly share code, notes, and snippets.

@MadCowWeb
Created April 5, 2024 17:17
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 MadCowWeb/fd913edee74a067a185e5aa9052b0ce9 to your computer and use it in GitHub Desktop.
Save MadCowWeb/fd913edee74a067a185e5aa9052b0ce9 to your computer and use it in GitHub Desktop.
Relocating content on a WooCommerce Single Product Page
// move category above product title
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40);
add_action('woocommerce_single_product_summary', 'woocommerce_template_single_meta', 4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment