I have an error in my PHP but I can't find it
if( ! function_exists('set_bulk_product_quantity') ) {
function set_bulk_product_quantity() {
$bulk_qty = WC()->session->get( 'bulk_qty' );
if( empty($bulk_qty) )
$bulk_qty = '0;
$label_name = __('Set Products minimal Bulk Quantity ', 'woocommerce'); // LINE 53
$submit_button = __('Set quantity', 'woocommerce');
$reset_button = __('Reset', 'woocommerce');
$style = 'style="max-width:80px;text-align:right"';