create parent and child product structure

It sounds like what you need is WooCommerce. With WC you can create a product, set it as a ‘Variable Product’, and create individual variations with their own prices, SKUs etc. that customers will be able to choose from a dropdown in your store. As for importing data from a .CSV, there are plenty of … Read more

GetShopped Ecommerce: hide checkout form from customer until shipping country selected [closed]

This is really a question for the GetShopped Forums, as #1, the forums are fairly active (and the company also offers premium support, which you may/may not have), #2 it’s a customization question specific to their code. If you want to post some code and the template files involved, maybe someone can help. Or, possibly … Read more

Using Jigoshop, how can I add a custom post type to the cart via code?

Short answer: You can’t. Long answer: Jigoshop is designed to only allow checkout of our “product” CPT. In reality, you should have been looking at Jigoshop’s template_functions.php file which has our add to cart functions. For security reasons, Jigoshop has checks, absolutely everywhere that the CPT is in fact Jigoshop’s own product CPT. Source: I’m … Read more

Jigoshop – change the order in which products show up in a grid

As Bainternet said you need to adjust the query vars, however I needed to change the order well before ‘jigoshop_before_shop_loop’ hook to get this to work. This function fires at pre_get_posts and orders by title. add_action(‘pre_get_posts’, ‘my_custom_query’); function my_custom_query($wp_query){ if(is_tax(‘product_cat’)){ $wp_query->query[‘order’] = ‘ASC’; $wp_query->query[‘orderby’] = ‘title’; return $wp_query; } }