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.