-3

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"';
Nigel Ren
  • 53,991
  • 11
  • 38
  • 52
NasBEN
  • 47
  • 1
  • 7

3 Answers3

1

Change the

$bulk_qty = '0;

Line to

$bulk_qty = '0';
Ankur Bhadania
  • 4,043
  • 1
  • 23
  • 36
0

Seriously!

Change the line $bulk_qty = '0; with $bulk_qty = '0';

You missed a closing '

Tejashwi Kalp Taru
  • 2,714
  • 2
  • 17
  • 30
0
  if( empty($bulk_qty) )
        $bulk_qty = '0;

You should modify it:

  if( empty($bulk_qty) )
        $bulk_qty = '0';
Ankur Bhadania
  • 4,043
  • 1
  • 23
  • 36