Skip to content

Instantly share code, notes, and snippets.

@mrgarry043
Created June 22, 2017 17:28
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 mrgarry043/48d59f4c31e97a622745517692b63e56 to your computer and use it in GitHub Desktop.
Save mrgarry043/48d59f4c31e97a622745517692b63e56 to your computer and use it in GitHub Desktop.
Move the title and star ratings on right side above product image
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_title', 5);
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_rating', 10);
add_action( 'woocommerce_before_single_product_summary', 'woocommerce_template_single_title', 5 );
add_action( 'woocommerce_before_single_product_summary', 'woocommerce_template_single_rating', 4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment