Hello,
Try to add the following PHP code snippet to the child theme functions.php file to fix this
function woodmart_update_gzd_shopmark_product_loop_hooks() {
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_gzd_template_loop_tax_info', 6 );
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_gzd_template_loop_shipping_costs_info', 7 );
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_gzd_template_loop_delivery_time_info', 8 );
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_gzd_template_loop_product_units', 9 );
add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_gzd_template_loop_tax_info', 16 );
add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_gzd_template_loop_shipping_costs_info', 17 );
add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_gzd_template_loop_delivery_time_info', 18 );
add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_gzd_template_loop_product_units', 19 );
}
add_action( 'init', 'woodmart_update_gzd_shopmark_product_loop_hooks' );
Kind Regards