WP e-commerce: getting products by SKU

WP E-commerce uses WordPress post objects to store products, so you don’t need any special functions or callbacks. query_posts will support everything you need, you can learn about the details of how everything is set up by reading about their database schema. Specifically, the SKU is in the wp_postmeta table with a meta_key of _wpsc_sku.

Shopping Cart Solution [closed]

What you are talking about is called Table Rate Shipping which will give you better control for e-commerce. There are some very good ecommerce solutions for WordPress including WooCommerce – free and has premium extentions like table rate shipping and themes – Sth African parent company with 30++ ecommerce extensions and 90+ WP themes Jigoshop … Read more

How to prevent items to be added in cart for specific condition in wordpress

please refer below code.you are passing only 1 parameters instead of 3 parameter. function filter_woocommerce_add_to_cart_validation( $passed, $product_id, $quantity ) { if ( $quantity>2 )) { wc_add_notice( __( ‘You are not allowed to add more than 2 product for category..’, ‘woocommerce’ ), ‘error’ ); $passed = false; } return $passed; }; // add the filter add_filter( … Read more

Can I use Woocommerce to take orders but not handle payment? [closed]

You can use multiple payment gateways. Simply use one of the default payment gateways that doesn’t require immediately payment and you can rename it in the settings, so you have the same process that you described above. For example the “Cash on Delivery” gateway is ideal, you can edit the title and the description of … Read more