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

Need Help Finding a WordPress E-Commerce Plugin That Utilises Custom Post Types [closed]

You Should look at dukapress it a fairly new E-Commerce plugin but its loaded with features and it uses Custom post types. and as for the relation part, i had that same challenge as your are having in developing a site for one of my customers, i needed to relate a CPT (custom post type) … Read more

WP-e-Commerce and W3-Total-Cache integration problem [closed]

W3 Total Cache is a very advanced plugin that has built in ways to handle almost any situation. To exclude a page from being cached use one of the following commands below: define(‘DONOTCACHEPAGE’, true); Disables page caching for a given page. define(‘DONOTCACHEDB’, true); Disables database caching for given page. define(‘DONOTMINIFY’, true); Disables minify for a … Read more

What are WooCommerce starter themes? [closed]

if you are going for a e-commerce website here are some really good themes, plugins, and trickes that you will find really helpfull Themes Sommerce Shop: http://themeforest.net/item/sommerce-shop-a-versatile-ecommerce-theme/542001 Demo: http://www.yithemes.com/live/?theme=sommerce wordpress theme Mojo Theme: http://splashingpixels.com/themes/mojo/ Demo: http://mojo.splashingpixels.com/ wordpress theme Eggo Theme: http://splashingpixels.com/themes/eggo/ Demo: http://eggo.splashingpixels.com/ wordpress theme Storefront: Designer http://storefrontthemes.com/themes/designer/ wordpress theme Wootique: http://www.woothemes.com/products/wootique/ Demo: http://demo2.woothemes.com/wootique/ wordpress … Read more

shortcode outputs first before the page content [duplicate]

I guess you’ve echoed the result of shortcode callback function rather than returning them. Please check here: http://codex.wordpress.org/Shortcode_API Shortcodes are written by providing a handler function. Shortcode handlers are broadly similar to WordPress filters: they accept parameters (attributes) and return a result (the shortcode output). you need to return the output that will be added … Read more