• Resolved lupus89

    (@albertopiazza)


    I would like to disable some features in the product sheet:

    – Disable SKU code display
    – Disable the “This product is currently out of stock and unavailable.”
    – Disable the “In stock” and “no stock.

    Thanks you

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Fernando a11n

    (@fhaps)

    Automattic Happiness Engineer

    I would like to disable some features in the product sheet

    By “product sheet”, are you referring to each individual product page, on the front-end of your site? Or do you mean the Products page in the wp-admin dashboard?

    If it’s on the publicly accessible front-end of your site, please share a link to one of the pages where we can see these elements.

    Thread Starter lupus89

    (@albertopiazza)

    Hello,

    here are the images:

    https://i.ibb.co/3hRCqvX/1.jpg
    https://i.ibb.co/t2217Vz/2.jpg
    https://i.ibb.co/CPjbLdR/3.jpg

    product page of the website.

    Thanks you

    Plugin Support Fernando a11n

    (@fhaps)

    Automattic Happiness Engineer

    There are no settings in WooCommerce for you to hide those elements.

    You could however, hide that with some custom CSS code. I’m not a CSS exert, but I believe something like this should work:

    /*HIDE SKU FROM SINGLE PRODUCT PAGE*/
    .single-product div.product .product_meta .sku_wrapper {display:none;}
    
    /*HIDE STOCK STATUS*/
    p.stock.in-stock {display:none;}

    You can enter that code by going to Appearance > Customize > Additional CSS.

    Hopefully that helps!

    Thread Starter lupus89

    (@albertopiazza)

    Grazie mille Fernando.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Disable some features in the product tab’ is closed to new replies.