WP ecommerce – How do I change the product image for each product variation?

I hope this isn’t too late.. I was also looking for this a bit back and found the following on the internet, can’t remember where… I have purchased the gold cart option, but I’m not sure if it’s a prereq for this to work.. in your theme header file, add the following: <script type=”text/javascript”> jQuery(document).ready(function($){ … Read more

WP-e-Commerce Adding A Product via Flash Button

this is a simple function that will add an item to the cart. you could tie this to an ajax call and pass whatever POST vars you want, obviously product id, quantity, etc.. function my_add_to_cart(){ global $wpsc_cart; $product_id = 1; $args = array(); $args[‘quantity’] = 1; $args[‘variation_values’] = null; $args[‘provided_price’] = null; $args[‘comment’] = null; … Read more