markbac3
Forum Replies Created
-
Forum: Reviews
In reply to: [WooCommerce] Perfect?Woo Commerce changed its pricing structure recently (August 2013). Keeping a typical Woo-based store with, say, 10 extensions and plug-ins running will now cost you $1000+ to keep up-to-date. That’s per website, per year! Calculate your needs and costs carefully before you commit to this platform.
Forum: Themes and Templates
In reply to: Wootique install problem – Missing templateThanks, WPyogi. I’ll try that location.
Forum: Plugins
In reply to: [WooCommerce] How do I make products go horizontal?Another solution is offered in the support docs. Thanks to Mike Jolley for pointing this out:
http://wcdocs.woothemes.com/snippets/change-number-of-products-per-row/
Forum: Reviews
In reply to: [WooCommerce] High annual cost to use this shopping cartThank you, Mike. That doc gives a good answer for the row-display issue.
Forum: Plugins
In reply to: [WooCommerce] How do I make products go horizontal?Jessica, I found a solution in another thread that lets you set the number of columns used for displaying products. Go to your WP dashboard and then go to Appearance > Editor. Then open the functions.php file (it should be listed in the righthand sidebar) and paste this code in the section reserved for custom functions:
global $woocommerce_loop;
$woocommerce_loop[‘columns’] = 3;Then you can change the number to whatever number of columns you want. It worked for me and I hope it will work for you!
Forum: Plugins
In reply to: [WooCommerce] Added a function, now I can't see the site or the admin areaI found a solution for the display question in another thread. Basically, you paste this code into the theme’s functions.php file and set the desired number:
global $woocommerce_loop;
$woocommerce_loop[‘columns’] = 3;Thanks again for your help.
Forum: Plugins
In reply to: [WooCommerce] Added a function, now I can't see the site or the admin areaThanks for the quick response! You’re right, I meant the theme’s function.php file. This is what I pasted in:
// Change columns in product loop to 3
add_filter(‘loop_shop_columns’, ‘woostore_loop_columns’);function woostore_loop_columns() {
return 4;
}I got that function from the theme-woocommerce.php file and changed “return 3″ to return 4” because I wanted to display 4 products per row instead of 3.
In the meantime I managed to access the functions.php file via cPanel and delete the code I pasted in, and now everything is back to normal. Do you by any chance know another way to set the number of products per row? Thanks.
Forum: Plugins
In reply to: [WooCommerce] How do I make products go horizontal?I’m having a similar problem. The product gallery shows four products horizontally on the /shop/ page, but only three products horizontally on the product category pages.
Resizing the width of the gallery container or reducing the size of the individual products doesn’t affect the number of products displayed horizontally. Is there a setting that can be used to set the number of products that display horizontally?
Thanks. Mark