Is wordpress good enough for ecommerce? [closed]

That’s all possible with WordPress, and you have several choices. E.g. WP E-Commerce or Jigoshop etc Scale-wise, it depends exactly what you’re wanting in terms of scale, initially and eventually. WordPress can be manipulated to scale quite far, you can buy a bigger server, shift a large chunk of your content and pages into the … Read more

Best Shopping Cart for WordPress [closed]

When I was deciding, I compared WooCommerce, Shopp, Cart66, WP-eCommerce and WooCommerce, and I found WooCommerce to be the most “WordPress” in its code and to be the most extendable/flexible. Products are custom post types, so you can leverage everything you already know about them, etc. It’s initially offering was really lacking in features like … Read more

Hosting Requirements for a WordPress e-commerce site?

I would say for a small store stick with the basics, PHP 5.2.4+ and MySQL 5+ some individual plugins may require higher versions of PHP or MySQL. I don’t think you would necessarily need a VPS depending on traffic. My general rule start small, if you grow, great, most host (and all good host) make … Read more

How do I stop out of stock items from appearing on my WooCommerce site when using the Layered Nav widget [closed]

// Out of stock for general woocommerce – might help someone function product_in_stock($post, $product) { if (!$product->is_in_stock()) { $STOCK = TRUE; return $STOCK; } else { return false; } } function check_if_out_of_stock(){ global $post,$product; $stock = product_in_stock($post,$product); $output=”<div class=””; $output .= $stock?”instock”:”outofstock”; $output .= ‘”>’; echo $output; } add_action( ‘woocommerce_before_shop_loop_item’, ‘check_if_out_of_stock’); function close_out_of_stock(){ echo “</div>”; … Read more

WP e-commerce sales-view

not really php solution, but that’s how I solved this problem. I deactivated phone and email fields from Store Settings -> Chekout and created custom ones. so now when I go to orders it displays in like Additional Checkout Fields Phone: Email: