reorder short descriptin
-
Hello there,,
I am trying to reorder shortdescriptin of single product page but i can not find the right code or snipet
I tried at first this
remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_excerpt’, 20 );
add_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_excerpt’, 30 );but then the short description was duplicated which means it did not remove the first order
then i tried this but the both short description is deletedremove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_excerpt’, 20 );
function woocommerce_template_single_excerpt() {
return;
}
add_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_excerpt’, 30 );Please I need help to reorder the short description of single product page
The page I need help with: [log in to see the link]
- The topic ‘reorder short descriptin’ is closed to new replies.