Home Forums WoodMart support forum Short description like demo

Short description like demo

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #38660

    iRiDiuM
    Participant

    Hi

    On your DEMO Electronics, you have a Additional information like shot desc.

    How to do it?
    https://imgur.com/a/SD4HT

    Thanks ♥

    #38715

    Artem Temos
    Keymaster

    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 );
    #38806

    iRiDiuM
    Participant

    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!

    #38815

    Artem Temos
    Keymaster

    All page content is parsed by google. Yes, we used HTML for our electronics demo.

    #39289

    iRiDiuM
    Participant

    Done! HTML on short desc!

    Thanks for the TIP and info! ♥

Viewing 5 posts - 1 through 5 (of 5 total)

The topic ‘Short description like demo’ is closed to new replies.