Hello,
thank ypu for ypur kind assistance!
Impresa developers told me that I should use some code like this to turn on hooks you mentioned.
add_shortcode('product-loop-start', 'child_product_loop_start');
function child_product_loop_start(){
if (is_admin()) {
return false;
}
ob_start();
do_action('woocommerce_product_loop_start');
return ob_get_clean();
}
But I’m not a great developer, so I cannot understand what to do next. Could you help?