Banner Logo

Be a part of the family: Connect, Receive Support,
Contribute, and Reap Abundant Rewards!

Vendor Dashboard Product Bulk Edit Doesn’t Work – Critical Error – Fix Here

MultivendorX Pro

Resolved
Viewing 1 reply thread
  • Author
    Posts
    • #188927
      Justin Harrison
      Participant

      Hi Support, there is a critical error caused when trying to run a product bulk update from the Vendor Dashboard. The error is on line 297 of the class-mvx-pro-ajax.php file. It reads as follow:

      $status = array( ‘status’ => true, ‘message’ => sprintf( _n( ‘%s Product updated successfully’, ‘%s Products updated successfully’, $update_counter, ‘mvx-pro’ ) ), number_format_i18n( $update_counter ) );

      The sprintf arguments are incorrect in syntax due to parentheses. I changed it to the following and it worked properly:

      $status = array( ‘status’ => true, ‘message’ => sprintf( _n( ‘%s Product updated successfully’, ‘%s Products updated successfully’, $update_counter, ‘mvx-pro’ ), number_format_i18n( $update_counter ) ) );

      Can you please include this in the next update so that I don’t have to worry about updating that line of code after MVX Pro updates?

      Thank you.

    • #189196

      Justin, we will release an update next week.
      In the meantime, we will provide you with the fixed code by Monday.

Viewing 1 reply thread

The topic ‘Vendor Dashboard Product Bulk Edit Doesn’t Work – Critical Error – Fix Here’ is closed to new replies.