Created
April 5, 2024 17:17
-
-
Save MadCowWeb/fd913edee74a067a185e5aa9052b0ce9 to your computer and use it in GitHub Desktop.
Relocating content on a WooCommerce Single Product Page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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