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–>

Is there a limit on how much is customizable on WordPress? [closed]

How limited am I when working in WordPress? In terms of front end customization (JS, CSS, HTML) and “back-end” customization (implement a new feature on the site, as said about the “tutorial shop” section) You’re only as limited with your knowledge of WordPress and programming. You can make changes to the frontend or backend by … Read more

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

WooCommerce – How to Add a Custom Field to Cart Items and Cart Totals [closed]

First, store the custom field when you’re editing your product. Lets say you’re using the custom_shipping_cost custom field. Make sure its stored as a number, 20 for example, NOT $20.00 Then, you need to display this field on the cart page. Sadly, theres no filter for adding a new column in the cart table, so … Read more

Can I use Woocommerce to take orders but not handle payment? [closed]

You can use multiple payment gateways. Simply use one of the default payment gateways that doesn’t require immediately payment and you can rename it in the settings, so you have the same process that you described above. For example the “Cash on Delivery” gateway is ideal, you can edit the title and the description of … Read more

Pros/Cons of “WP e-commerce” and “Shopp” plugins [closed]

I have used both plugins. I tested them both extensively and have built and delivered client websites on both platforms. My tests were conducted over a year ago before I went with my preferred (Shopp) but here is what I found. WP Commerce at the time had buggy code, poorly written markup and many elements … Read more

How do I get WooCommerce to automatically recreate pages? [closed]

Just had the same problem. First uninstall the plugin. Then you have to delete all rows containing “woocommerce” in the table “wp_options” on your database. Especially “skip_install_woocommerce_pages”. Now install the plugin again. The notification for automatically creating pages will pop up.