Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter chiehmin

    (@chiehmin)

    Thank you!
    I just tried the updated version.
    It works like charm.
    will consider to purchase premium version.

    Thread Starter chiehmin

    (@chiehmin)

    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

Viewing 2 replies - 1 through 2 (of 2 total)