Changing appearance of WooCommerce product layout [closed]
This is indeed something that you need to make a specific page template for. Just CSS won’t do the trick because you need to add a function to your functions.php file (in your theme or child-theme folder) to display the excerpt. You could do something like this: add_action( ‘wp’ , ‘add_excerpt’, 20); function add_excerpt() { … Read more