I want reverse description and short description single product pages on woocommerce . I try this tuto : http://www.kriesi.at/support/topic/reverse-description-and-short-description-single-product-pages/ .
Short description work but not description .
I use woocommercer version 2.3.7 .
Thank
You could just swap the excerpt and the main content in the backend…. save the content in the excerpt box and vice versa. Otherwise, you need to override 2 WooCommerce templates and reverse the content with the excerpt.
In your theme, add this as
woocommerce/single-product/short-description.php
.post_excerpt
is replaced withpost_content
.and this as
woocommerce/single-product/tabs/description.php
:Basically,
<?php the_content(); ?>
echoes the full description, while<?php the_excerpt(); ?>
echoes the short description.In your layout, just switch them to echo whatever you want. Be sure too that both textareas (content/excerpt) in your product post contain some text.