I put this in your quick css to hide the categories.
COPY CODE
.woocommerce ul.products li.product .posted_in, .woocommerce ul.products li.product .posted_in a {
display: none !important;
}
There’s no hook into that location, but you can use this to put the description just below the price. Put it in your child theme’s functions.php file.
COPY CODE
add_action( 'woocommerce_after_shop_loop_item_title', 'add_product_description' );
function add_product_description() {
global $post;
echo $post->post_content;
}
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com