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

Convert WordPress posts to products in WooCommerce

You could install the Post Type Switcher plugin Or Run SQL query on your database to change the post to product post type UPDATE `wp_posts` SET `post_type` = ‘product’ WHERE `post_type` = ‘post’; Backup your DB 1st. UPDATE `wp_posts` SET `post_type` = ‘wpsc-product’ WHERE `post_type` = ‘post’;

How to prevent items to be added in cart for specific condition in wordpress

please refer below code.you are passing only 1 parameters instead of 3 parameter. function filter_woocommerce_add_to_cart_validation( $passed, $product_id, $quantity ) { if ( $quantity>2 )) { wc_add_notice( __( ‘You are not allowed to add more than 2 product for category..’, ‘woocommerce’ ), ‘error’ ); $passed = false; } return $passed; }; // add the filter add_filter( … Read more

WP_Query for WooCommerce Products

<ul class=”products”> <?php $args = array( ‘post_type’ => ‘product’, ‘posts_per_page’ => 12 ); $loop = new WP_Query( $args ); if ( $loop->have_posts() ) { while ( $loop->have_posts() ) : $loop->the_post(); wc_get_template_part( ‘content’, ‘product’ ); endwhile; } else { echo __( ‘No products found’ ); } wp_reset_postdata(); ?> </ul><!–/.products–>

Recommended eCommerce Plugin for a T-Shirt Sales Business? [closed]

Woo (the makers of WooThemes) announced their integration with shopify recently, from the looks of it… http://themes.shopify.com/themes/air/styles/air would do what you want.. I would look into hosting the shop at Shopify, and seeing if your base website can be wordpress. Woo has announced that they’re working on a e-commerce framework as well, but until that … Read more