Thank you!
I just tried the updated version.
It works like charm.
will consider to purchase premium version.
Finally I solved the issue.
It’s because of the security warning from wordpress 3.5 for using wpdb method in insecure way.
What I do is in wpec_bulk_cat.php, try to search$bulk_categories = $wpdb->get_col (&wpdb->prepare("SELECT object_id FROM“.WPSC_TABLE_META.”WHEREmeta_key` = ‘use_bulk_pricing’ AND meta_value = 1″ ));
change the whole line to
$bulk_categories = $wpdb->get_col(“SELECT object_id FROM ".WPSC_TABLE_META." WHERE meta_key = ‘use_bulk_pricing’ AND meta_value = 1″ );`
Then everything backs to normal