jamessharik on "[Plugin: WooCommerce - excelling eCommerce] Woo Commerce...
Hello, I recently updated to the new WooCommerce, as well as updating the theme I have (MayaShop thru Themeforest), and everything looks fine, but when trying to place an order, after billing address...
View ArticleCoen Jacobs on "[Plugin: WooCommerce - excelling eCommerce] Shipping...
So if I get it right, you want to disable the paid option if the free shipping option is available? You can do this by filtering the available shipping methods: add_filter(...
View ArticleCoen Jacobs on "[Plugin: WooCommerce - excelling eCommerce] Advices to...
When you want to handle the stock levels on variation level, you should not set the main stock level. The main stock level should only be set if you want to manage the stock on a product level and have...
View Articlemassimoi on "[Plugin: WooCommerce - excelling eCommerce] More Products on page"
Hi guys, I need to visualize more than 10 products on the catalog page. How can I do it? Thank you. http://wordpress.org/extend/plugins/woocommerce/
View Article2046 on "[Plugin: WooCommerce - excelling eCommerce] Plain WooCommerce theme?"
hello thanks for the tips. But I definitely won't start with Twenty.. what ever theme.. it'll be much worst, These themes are completely polluted by stuff nobody really needs. I'm searching for simple...
View ArticleBultack on "[Plugin: WooCommerce - excelling eCommerce] Register a product...
I want to know how I can register a product and enable the option of Preorder. It's an option that I need for my shop. http://wordpress.org/extend/plugins/woocommerce/
View Articlesleepymonk on "[Plugin: WooCommerce - excelling eCommerce] WooCommerce -...
Have tried my best to figure this out. Tried the snippet to change the number of products on a row (functions.php edit). It seems that this is also related to css settings .woocommerce-columns-5...
View Articlesrdriggers on "[Plugin: WooCommerce - excelling eCommerce] Product customizer ?"
Anyone know of an extension / plugin that would allow me to mimic this type of product customization ? http://www.icewarehouse.com/warriorbags.html Basically the user clicks on a color and the image on...
View Articleterrytsang on "[Plugin: WooCommerce - excelling eCommerce] More Products on...
Hi, you can add below code to your theme functions.php //display 16 products per page add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 16;' ), 20 );
View Articledreamstone on "[Plugin: WooCommerce - excelling eCommerce] Pagination is...
My pagination is breaking, here is my example http://kronero.ru/magazin/ No matter which theme I am using. I also tried to disable all plugins without success. Any idea how to fix it?...
View Articlesleepymonk on "[Plugin: WooCommerce - excelling eCommerce] More Products on...
Thank you, that was really helpful! I am having trouble getting more products on a single row. Right now the default (Superstore) is 5, but I would like to fill the whole width of the shop page. Is...
View Articleterrytsang on "[Plugin: WooCommerce - excelling eCommerce] More Products on...
I see. Maybe you can try below code and see how :) // Display 8 products per row add_filter('loop_shop_columns', 'custom_loop_columns'); if (!function_exists('custom_loop_columns')) { function...
View Articlesleepymonk on "[Plugin: WooCommerce - excelling eCommerce] More Products on...
That gave me 4 products per row instead of 5, but at least it didn't add the 5th to a row of it's own (overflow, I guess) before the next row.
View ArticleSmyrna on "[Plugin: WooCommerce - excelling eCommerce] Remove shopping cart...
How can i remove shopping cart from my Wootique menu. I wait soonest reply. I am very need the reply. Thanks. http://wordpress.org/extend/plugins/woocommerce/
View Articleterrytsang on "[Plugin: WooCommerce - excelling eCommerce] More Products on...
Are you using themes from woothemes? If yes, try below code: // Override theme default specification for product # per row function loop_columns() { return 6; // 6 products per row }
View ArticleChris Andersen on "[Plugin: WooCommerce - excelling eCommerce] Problems after...
Got this error as soon I want to see the WP dashboard after update: Fehlerausgabe / Error output: Fehler beim Verarbeiten des Skript-Headers / Error parsing script headers: WordPress-Datenbank-Fehler...
View Articlesleepymonk on "[Plugin: WooCommerce - excelling eCommerce] More Products on...
Yes, I'm using superstore theme. That override code didn't help (it's still showing 5 products per row, but at least more products on the page).
View Articleterrytsang on "[Plugin: WooCommerce - excelling eCommerce] More Products on...
I think mostly related to theme css.
View Articlesplashingpixels.com on "[Plugin: WooCommerce - excelling eCommerce] More...
You can't just change the items per row and expect that is what you'll see because for obvious reasons, it will depend on the size of each item in terms of the width. So if you set it to 5, does 5 of...
View Articlesleepymonk on "[Plugin: WooCommerce - excelling eCommerce] More Products on...
There is some relationship between the width of this element (which just simply expands/contracts the image and everything with it) and the code in the functions.php file. I'm trying to figure out what...
View Article