Short description like demo
-
Hi
On your DEMO Electronics, you have a Additional information like shot desc.
How to do it?
https://imgur.com/a/SD4HT
Thanks ♥
Hi,
Try to add the following PHP code snippet to the child theme functions.php file to show your product attributes table in the short description. Or you can simply use HTML table in your products short description
function woodmart_display_product_attributes() {
global $product;
wc_display_product_attributes( $product );
}
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
add_action( 'woocommerce_single_product_summary', 'woodmart_display_product_attributes', 20 );
Yeah, works like a charm!
Did you use HTML on your Electronics demo?
I think i will add HTML too, and let pass this tip.
Is short description needed for SEO? Or only CONTENT is indexed by google?
Thanks a lot!
All page content is parsed by google. Yes, we used HTML for our electronics demo.
Done! HTML on short desc!
Thanks for the TIP and info! ♥
The topic ‘Short description like demo’ is closed to new replies.