Skip to content

Instantly share code, notes, and snippets.

@eder-dias
Created May 20, 2017 19:50
Show Gist options
  • Save eder-dias/887960d9588dc69c3ae0935e422e9b7b to your computer and use it in GitHub Desktop.
Save eder-dias/887960d9588dc69c3ae0935e422e9b7b to your computer and use it in GitHub Desktop.
Move single meta info below thumbnails [Woocommerce]
// Remove product category/tag meta from its original position
remove_action ('woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40);
// Add product meta in new position
add_action ('woocommerce_product_thumbails', 'woocommerce_template_single_meta', 40);
@KVNHNF
Copy link

KVNHNF commented Feb 29, 2020

Doesn't work

@KVNHNF
Copy link

KVNHNF commented Mar 1, 2020

it isn't either because a "N" is missing for "thumbnails":

remove_action ('woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40);
add_action ('woocommerce_product_thumbnails', 'woocommerce_template_single_meta', 40);

Doesn't work either.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment