I want to display product title befort the product image in shop loop.
I found a code it does that perfectly:
add_action(‘woocommerce_after_shop_loop_item_title’, ‘woocommerce_after_shop_loop_item_title_short_description’, 5);
function product_change_title_position(){
remove_action(‘woocommerce_shop_loop_item_title’,’woocommerce_template_loop_product_title’);
add_action(‘woocommerce_before_shop_loop_item_title’,’woocommerce_template_loop_product_title’, 5);
}
add_action(‘init’,’product_change_title_position’);
But I only want to make this happen on mobile. Is that possible?