-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
  • 56,122
  • 11
  • 43
  • 55
NasBEN
  • 59
  • 1
  • 8

3 Answers3

1

Change the

$bulk_qty = '0;

Line to

$bulk_qty = '0';
Ankur Bhadania
  • 4,123
  • 1
  • 23
  • 38
0

Seriously!

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

You missed a closing '

Tejashwi Kalp Taru
  • 2,994
  • 2
  • 20
  • 35
0
  if( empty($bulk_qty) )
        $bulk_qty = '0;

You should modify it:

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