Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #656782

    Hi together,

    probably very easy…. is it possible to hide the VAT and shipping info on the shop overview page?

    Thanks
    Jan

    #657117

    Hey Jan,

    Sure, that would be possible. Can you please post the link to your website so we can make sure to provide you an accurate solution? :)

    Edit: Found your website from another thread. Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .woocommerce-page .wgm-info {
        display: none;
    }

    Best regards,
    Yigit

    • This reply was modified 8 years, 4 months ago by Yigit.
    #657235

    Hi Yigit,

    works too good :-)
    Now these Infos are also gone at the sigle product view. But there they should stay (and only there).

    Best regards
    Jan

    #657379

    Hi!

    Please change the code to following one

    .woocommerce-page.archive .wgm-info {
        display: none;
    }

    Best regards,
    Yigit

    #657716

    Hi Yigit,

    :-) sorry, but it is somewhere in between…
    Now VAT is gone in the shop overview (Archiv) and again there in the single product, as we wanted to.
    But it is there in all other product grids (would be nice, when it is also not shown here).

    Is it possible to disable it everywhere and enable it again only for single product view?

    Best regards.
    Jan

    #658030

    Hi,

    Please change the code to following one

    .woocommerce-page .wgm-info {
        display: none;
    }
    .single-product .wgm-info {
        display: block !important;
    }

    Third time’s a charm :)

    Best regards,
    Yigit

    #658210

    Tricky,

    the result is the same :-(
    On the shop overview (archive) VAT is gone. On Singe Product view it is there. That is want I want.
    But: Below the single Product is a carousel of products “Ähnliche Produkte” and there VAT is displayed.
    Same on the landing page where a product grid is displayed (avia layout builder)….
    I post a linke to the side.

    Thanks a lot!
    Jan

    #659070

    Hi,

    Thank you for the info. Please this css code in order to remove the VAT container from the related products:

    .related.products .woocommerce-de_price_taxrate {
        display: none;
    }

    Best regards,
    Ismael

    #661712

    Hi Ismael,

    thanks a lot!! With your input and the discovery of the Dom Explorer, I removed it everywhere I wanted :-)

    you can close this….
    Thanks again.
    Jan

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Hide VAT and shipping info on shop overview page’ is closed to new replies.