WP Ecommerce, Gold Cart and pagination

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

Why does the first page of one category redirect to empty page 4?

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

WP-E Commerce: How to let user leave a personal message/instruction with each product from the products page [closed]

This functionality is already built-in to WP e-commerce; however it’s defined at the product level not globally. To enable this for a given product on the product edit page go to ‘Advanced Settings’ -> ‘Personalisation Options’ and enable ‘Users can personalize this Product by leaving a message on single product page’

How to charge shipping in WP e-commerce based on a variant? [closed]

Read this: http://docs.getshopped.org/documentation/creating-variations/ Picture this: James wants to create a store to sell T-shirts. Once he starts building his product catalog, he realizes that he needs a way for customers to specify what size shirt they want. He shudders to think that he might need to create a separate product listing for each size of … Read more

WPSC how do i output product per category on one page (wpsc-product-page)

You need to do 2 queries, 1 for the terms (using get_terms) and then a post query, an example is: $taxonomy = ‘portfolio_types’; $tax_terms = get_terms($taxonomy); foreach ($tax_terms as $tax_term) { echo ‘<li>’ . ‘<a href=”#’.$tax_term->slug.'”‘ . ‘>’ . $tax_term->name.'</a></li>’; } endwhile; endif; wp_reset_query(); $the_query = new WP_Query( ‘post_type=portfolio&portfolio_types=”$taxonomy ); while ( $the_query->have_posts() ) : … Read more