musab_bari on "[Plugin: WooCommerce - excelling eCommerce] Woo commerce not...
Actually, the checkout works IN compatibility mode and not otherwise. You cant go around telling all your customers to switch on compatibility mode.
View Articleibrahimgoli on "[Plugin: WooCommerce - excelling eCommerce] Variations not...
Hi all I have a problem with attributions. I am using woocoomerce in Persian language. everything is OK but when Im adding color variation in Persian language it shows something like this...
View Articleibrahimgoli on "[Plugin: WooCommerce - excelling eCommerce] Variation problem...
Hi all. I am using woocommerce in Persian language. and changed my wordpress to Persian as well. but I have a problem, I can not set variation in Persian language. for example when I'm setting color...
View Articlemr.adelm on "woocommerce egyptian currency"
i want to add Egyptian currency EGP or LE to woocommerce plugin settings http://wordpress.org/extend/plugins/woocommerce/
View ArticleIgniteWoo.com Team on "[Plugin: WooCommerce - excelling eCommerce] Calculate...
cart.php would wind up looking like this: <script> jQuery( document ).ready( function() { jQuery( ".shipping-calculator-form" ).slideDown( 'fast' ); }) </script> <?php /** * Cart Page *...
View Articlemiketopher on "[Plugin: WooCommerce - excelling eCommerce] How can I add a...
Since attributes have links, such as .com/color/red/ it would be a cool feature that in the Additional Information Tab, the attributes listed, would simply be linked to the attributes already available...
View Articlebdoga on "[Plugin: WooCommerce - excelling eCommerce] Lightbox self disables"
I have woocommerce running with the function theme, and for some reason when I enable the lightbox for the product gallery images the setting will be set properly, and I may get one refresh of the...
View Articleamprescott on "[Plugin: WooCommerce - excelling eCommerce] Order notification...
I'm having the same problem. New install of Woocommerce and no emails are ever sent, not when I was using the Sandbox version for my payment gateway or not now that the site is live.
View ArticleMidlifecyclist on "[Plugin: WooCommerce - excelling eCommerce] Order...
Hi Amprescott This cured my problem instantly... http://wordpress.org/extend/plugins/wp-mail-smtp/ Good luck.
View Articleamprescott on "[Plugin: WooCommerce - excelling eCommerce] Order notification...
Thanks, Midlifecyclist! It works!!
View Articlewebmakerholly on "[Plugin: WooCommerce - excelling eCommerce] How to control...
This is an incredibly robust plugin! It does everything I want it to do. One question though - in my shop it only shows 5 items per page. I would like it to show all my products in one page. (I only...
View Articlekazie on "[Plugin: WooCommerce - excelling eCommerce] Product tags in order...
Hm, not sure what to do. I only get "Array ( )" in return.
View Articlealancf on "[Plugin: WooCommerce - excelling eCommerce] How to show the...
This code will show the sale price of all the products in the cart: if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) { foreach ( $woocommerce->cart->get_cart() as $cart_item_key =>...
View Articlerjt1985 on "[Plugin: WooCommerce - excelling eCommerce] How to set the Sidebar?"
Thanks. The WooSidebars plugin seems to have worked.
View Articlealancf on "[Plugin: WooCommerce - excelling eCommerce] Product tags in order...
The function wp_get_post_terms returns an array of terms, so to show them all, you need to do this: foreach( $term_list as $term ) echo $term . '<br/>'
View Articlekazie on "[Plugin: WooCommerce - excelling eCommerce] Product tags in order...
Could you please post the entire code-snippet?
View Articlealancf on "filter woocommerce_add_cart_item not working"
Hi, I'm trying to modify the price of a product before it is added to the cart. I'm using the filter 'woocommerce_add_cart_item', but I can't get it to work. Here's my code: add_filter(...
View Articlealancf on "[Plugin: WooCommerce - excelling eCommerce] Product tags in order...
$term_list = wp_get_post_terms( $product_id, 'product_tag', array( "fields" => "names" ) ); foreach( $term_list as $term ) echo $term . '<br/>'; The first line will get all tags associated...
View Articlekazie on "[Plugin: WooCommerce - excelling eCommerce] Product tags in order...
This is what my code looks like now, but it's not outputting the product brand. <?php $term_list = wp_get_post_terms( $product_id, 'product_tag', array( "fields" => "names" ) ); foreach(...
View Articlealancf on "[Plugin: WooCommerce - excelling eCommerce] Product tags in order...
I see. Try this: $term_list = wp_get_post_terms( $_product->id, 'product_tag', array( "fields" => "names" ) ); foreach( $term_list as $term ) echo $term . '<br/>';
View Article