Home Forums WoodMart support forum Hide prices –

Hide prices –

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #484364

    marcperna
    Participant

    Actually i’m using “code snippets” plugin to do this:

    add_filter( ‘woocommerce_get_price_html’, ‘ocultar_precios’ );
    function ocultar_precios( $price ) {
    return ”;
    }
    And hide prices (always).

    Could i do the same with your theme ?

    Thanks in advance

    #484379

    Luke Nielsen
    Keymaster

    Hello,

    I suggest you use the below code for hiding the prices on the site. Please enter it into the “Global Custom CSS” area in Theme Settings -> Custom CSS.

    .product-grid-item  .wrapp-product-price,
    .single-product .price,
    .product_list_widget>li .price {
        display: none;
    }

    Kind Regards

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