soumya12345 on "[Plugin: WooCommerce - excelling eCommerce] Quantity input in...
I have made the WooCommerce "Shop" page like a table structure. The columns are: 1.Thumbnail (of the item) 2.Product (the name of the product) 3.Price 4.Quantity (input like the single item page) 5.Add...
View Articlerextherunt on "[Plugin: WooCommerce - excelling eCommerce] Change the title...
Has anyone had a response or an answer on this? There is a closed topic on the subject with no solution. Thanks http://wordpress.org/extend/plugins/woocommerce/
View Articlesolagirl on "[Plugin: WooCommerce - excelling eCommerce] The currency symbol...
I think you can try something like this, put it in your theme's functions.php add_filter('woocommerce_paypal_args', 'convert_rmb_to_hkd'); function convert_rmb_to_hkd($paypal_args){ if (...
View Articleocdenson on "[Plugin: WooCommerce - excelling eCommerce] Combining shipping...
Hello, Did you ever find a solution to this, Im having the same issue. I would really like to be able to have shipping classes combine at checkout. The store I'm working on will be selling lots of diff...
View Articlebheadrick on "[Plugin: WooCommerce - excelling eCommerce] Remove Sidebar from...
use template files also, it's actually better to use this to remove the woo sidebar: remove_action('woocommerce_sidebar', 'woocommerce_get_sidebar',10); of course, you'd also need to fix your css as...
View Articlechetan0412 on "[Plugin: WooCommerce - excelling eCommerce] Error: Increase...
Dear samueljeden, There is no /** Memory Limit */ define('WP_MEMORY_LIMIT', '96M'); is available at lines 36/37 of wordpress's wp-config.php should read. Please tell me which version of WP you are...
View Articlesamueljeden on "[Plugin: WooCommerce - excelling eCommerce] Error: Increase...
i too am using wordpress 3.5. Add those lines to wp-config.php on line 36/37 if they do not exist.
View Articleshnalla on "[Plugin: WooCommerce - excelling eCommerce] Display products by...
Hi, I am looking for a way to display my products by tags in a template. Here is what I have done : <ul><?php query_posts( 'product_tag=-10%' ); if ( have_posts() ) while ( have_posts() ) :...
View Articleshnalla on "[Plugin: WooCommerce - excelling eCommerce] Products by Tag...
You can try query_posts( 'product_tag=yourTag' ); . According to woocommerce support, it works like wordpress tags ;)
View Articlerikardo85 on "[Plugin: WooCommerce - excelling eCommerce] Product Variation...
Have you added attributes to the products? If not, add these, update, select variations, re-add them and save. This should work as it works fine for me.
View Articlebheadrick on "[Plugin: WooCommerce - excelling eCommerce] How to add product...
If you were asking about the customer-facing order display, yes that's easy. Now modifying the admin panel - that's a bit more tricky. There's no hooks or templates for this, so you basically have to...
View Articlerikardo85 on "[Plugin: WooCommerce - excelling eCommerce] Adding SKU and...
Hello, I currently have them displayed showing the title, variations options, quantity input and add to cart button. Does anyone know how I can add the SKU and feature image also? Thanks...
View Articleshnalla on "[Plugin: WooCommerce - excelling eCommerce] Products by Tag...
Here is a better way to do this : <?php // The Query $query = new WP_Query( 'product_tag=-10%' ); echo '<ul>'; // The Loop while( $query->have_posts() ): $query->next_post(); echo...
View Articlesisqonrw on "[Plugin: WooCommerce - excelling eCommerce] cross sellin in...
hi i set some products in the cross selling field. but other products are show on the cross selling place. whats wrong here? http://wordpress.org/extend/plugins/woocommerce/
View Articlebheadrick on "[Plugin: WooCommerce - excelling eCommerce] Manual order"
I don't believe the virtual product necessarily has to have a downloadable item attached to it. What you do after the sale, woocommerce doesn't really care about. I haven't actually tried this. but it...
View Articlejanhasse on "[Plugin: WooCommerce - excelling eCommerce] Why this is happening?"
but i only want one button, that theme only show one. jan
View ArticleArachneworks on "[Plugin: WooCommerce - excelling eCommerce] Selling products...
I have been dealing with a local WordPress/Woocommerce specialist in our region, though, and he is working on creating a plugin extension for this issue. Is there any news on the development of this...
View ArticleOcala Website Designs on "[Plugin: WooCommerce - excelling eCommerce]...
Thanks I give those a try!
View ArticleKloon on "[Plugin: WooCommerce - excelling eCommerce] A button to empty the...
Add the following code to your theme's functions.php file and then just append ?clear-cart to any of your site urls // check for clear-cart get param to clear the cart add_action( 'init',...
View Articlemav666 on "[Plugin: WooCommerce - excelling eCommerce] Woocommerce and...
Hi, Everything works fine, but on the checkout page, after click "Place order" button displays the error: Notice: Undefined index: post_type in...
View Article