Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1228780
    riwaro
    Participant

    Hello,
    In the woocommerce shop I have a problem with the view of the product description. The textblock does not appear correctly on the product single page (pic 1). It should look like on the shop page (pic 2).

    Many greetings and thank you

    Thomas

    #1229041
    Jade
    Moderator

    Hi Thomas,

    You can add this under Custom > CSS in the Customizer.

    div[itemprop="description"] {
        display: none;
    }

    Hope this helps.

    #1229351
    riwaro
    Participant

    Hello,

    perfect. Thank you very much….

    Greetings Thomas

    #1229522
    Christian
    Moderator

    You’re welcome. Glad we could help. 🙂

    #1233566
    riwaro
    Participant

    Hello,
    The short product description has unfortunately disappeared at this point. See photo attached.
    Many greetings Thomas

    #1233831
    Darshana
    Moderator

    Hi there,

    Can you please provide us with the direct link to that product URL? so that we can check your issue and assist you with a possible workaround.

    Thanks!

    #1233867
    riwaro
    Participant

    Hello,

    here is the link:

    http://xyo.riwaro.de/shop/xyo-rapid-haar-bleichcreme-75-ml/

    Thank you Thomas

    #1234297
    Rue Nel
    Moderator

    Hi Thomas,

    At the moment, the short product description is being hidden because of the given css in the previous reply. If you want to display the short description in single product page, you will need to add the following code in your customizer,

    .single-product div[itemprop="description"] {
        display: block !important;
    }

    Hope this helps. Kindly let us know.

    #1234384
    riwaro
    Participant

    Hello,

    The short product description appears on the single product page. But the short product description is not to be seen here. See photo attached

    Many greetings Thomas

    #1234488
    Rue Nel
    Moderator

    Hello Again,

    You should update the code and use this:

    div[itemprop="description"] {
        display: none;
    }
    
    .single-product div[itemprop="description"] {
        display: block !important;
    }

    The code will make sure that it will display in single product pages but not anywhere else.
    Please let us know if this works out for you.

    #1234544
    riwaro
    Participant

    Unfortunately that does not work

    Thomas

    #1234603
    Paul R
    Moderator

    Hi Thomas,

    You can try this code instead.

    
    .related.products div[itemprop="description"] {
        display: none !important;
    }
    

    Hope that helps

    #1234609
    riwaro
    Participant

    yes, perfect…

    Thank you very much

    Thomas

    #1234744
    Paul R
    Moderator

    You’re welcome! 🙂

  • <script> jQuery(function($){ $("#no-reply-1228780 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>