-3

How to hide woocommerce product description and specification on load.

Currently when product is loaded its description and specification load automatically. I need to hide this on load. But when user clicks on description and specification tab, I need to show the content.

mplungjan
  • 169,008
  • 28
  • 173
  • 236
Manik
  • 513
  • 1
  • 7
  • 23

1 Answers1

1

I wasn’t able to find it myself but adding this to your Quick CSS or custom.css works:

  .single .woocommerce-tabs ul.tabs li.description_tab {
     display: none;
    }
Vasim Shaikh
  • 4,485
  • 2
  • 23
  • 52
  • Thank you very much friend . I will check this – Manik Apr 09 '16 at 07:16
  • You know how to style product block in archive page , because i need to give border for each product in product archive page . – Manik Apr 09 '16 at 07:17
  • could you please help to solve this question http://stackoverflow.com/questions/36526268/sql-query-to-download-order-report-in-woocommerce – Manik Apr 10 '17 at 08:54