Answer the question
In order to leave comments, you need to log in
How to move the block of similar products to the place after the price in woocommerce and disable the image display?
How to move the block of similar products to the place after the price in woocommerce?
I was able to duplicate this block using the function
add_action( 'woocommerce_single_product_summary', 'woocommerce_related_products', 70 );
function wc_remove_related_products( $args ) {
return array();
}
add_filter('woocommerce_related_products_args','wc_remove_related_products', 10);
Answer the question
In order to leave comments, you need to log in
Option 1: The same content-product.php template is responsible for displaying product cards in catalog form. There you need to write crutches.
Option 2: the woocommerce_template_loop_product_thumbnail hook is responsible for displaying the thumbnail.
You need to add an example code to functions.php
if (strpos('_'.$_SERVER['REQUEST_URI'], 'category') < 1){
remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question