0
votes

I am setting up a website through Wordpress using Better Health Theme by Canyon Themes and WooCommerce plugin for the online shop. Above the product it displays a publish date and the author, any idea how to remove this? Thanks!

1

1 Answers

0
votes

You can use display:none; property in css to hide date & author.

Example:

.theclassname {
display: none;

}