How to randomly generate products pop-up on click in store
How to randomly generate products pop-up on click in store
How to randomly generate products pop-up on click in store
I would either recommend PHPurchase or Shopp for WordPress. Each have their own pro’s and cons in relation to set-up and features. Both of the below plugins are not free, but a lot of free e-commerce solutions like WP E-Commerce sometimes just aren’t enough to build a great online store. PHPurchase Allows you customise every … Read more
I’ve prepared a plugin for WPEC which enables you to use Category Order and Taxonomy Terms Order plugin on variations items. So, changing variations items order is as easy as drag and drop. You can download it at: http://david.binda.cz/products-page/plugins/custom-variation-order-for-wordpress-e-commerce
There’s a description field available for the product_tag taxonomy that can be used in your template. You could also add an additional “collections” custom taxonomy for use with the wpsc-product custom post type.
This is a kludge, not a fix. This patch fixes the problem, but doesn’t identify why it is happening. In file wp-content\plugins\wp-e-commerce\wpsc-includes\theme.functions.php locate the function function wpsc_display_products_page( $query ) Add the following code just before the WP_QUERY object is created: if(!empty($query[‘tag’])){ $args[‘product_tag’] = $query[‘tag’]; } // John Larysz. January 2012 // // Patch to get … Read more
upload the file and add the item to the cart in one process, passing the filename as extra meta data with the cart item. if they remove the item from the cart, you can delete the file so you don’t have abandoned files.
The file should be located in your theme folder. If it’s not found in the theme used, it uses the file in the wpsc-theme. The correct way to modify it is to copy the files from wpsc-theme to the active theme folder and apply modifications there.
I really hate the wp-e-commerce plugin. It turns out that the only products in that category were ‘pending’, i.e. not published yet. Even if they were moved to trash, and ‘hide_emtpy => 1’ was used on the categories list, the error still occurred. Only when the products were completely emptied out of the trash did … Read more
This problem was caused by the addition of the WP “Custom Fields” metabox to the product post type.
WordPress does not allow uploads of .xml files but you can add it by adding a mime type for it. This worked for me: function addUploadXML($mimes) { $mimes = array_merge($mimes, array(‘xml’ => ‘text/xml’));. return $mimes; } add_filter(‘upload_mimes’, ‘addUploadXML’); Also, when I researched the mime type, I came up with a number of different suggestions for … Read more