khushbu padalia
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH WooCommerce Social Login] First Name and Last Name is sameThe solution is that the author should solve this bug and then give update of plugin.
Forum: Plugins
In reply to: [YITH WooCommerce Social Login] First Name and Last Name is sameYes. I can do this by changing in plugin file. But it is not proper to change in plugin file.
Forum: Plugins
In reply to: [WooCommerce] change product length, height, width dynamicallyThank you Mike Jolley for replying.
I do not need plugin because I have already developed all functionality till the order place. I have just issue in sending custom width, height, length and weight of product to shipping method. I need any hook.
Please advice.
Thank you.Forum: Plugins
In reply to: [WooCommerce] change product length, height, width dynamicallyStill not get any answer.
Anyone has Idea?Forum: Plugins
In reply to: [WooCommerce] Ad to cart buuton doubles the quantityHave you checked the hooks of woocommerce which you have added in your theme?
Forum: Plugins
In reply to: [WooCommerce] product images not showing up in Safari!!Can you post your url?
Forum: Plugins
In reply to: [WooCommerce] Ad to cart buuton doubles the quantityTry these two ways.
1) Check hooks of woocommerce which you have added in your theme.
2) Download latest version of woocommerce and replace full plugin again. May be if all files not updated properly.Forum: Plugins
In reply to: [WooCommerce] WooCommerce Product Page Weight ViewsYou most welcome.
Forum: Plugins
In reply to: [WooCommerce] Custom checkout error messages for required fields?Most Welcome ??
Forum: Plugins
In reply to: [WooCommerce] woocommerce add to cart button only in single product pageYou Most Welcome..
Forum: Plugins
In reply to: [WooCommerce] Shipping CostWhich shipping method are you using? ex: Fedex or UPS or any other?
Forum: Plugins
In reply to: [WooCommerce] Custom checkout error messages for required fields?Hey bmannino,
Try the following.
function my_woocommerce_add_error( $error ) { if (strpos($error,'Order Notes') !== false) { $error = 'The shiny brand new error message'; } return $error; } add_filter( 'woocommerce_add_error', 'my_woocommerce_add_error' );
Forum: Plugins
In reply to: [WooCommerce] woocommerce add to cart button only in single product pageHi treperzero,
Add the following code in your theme’s functions.php
remove_action('woocommerce_after_shop_loop_item','woocommerce_template_loop_add_to_cart'); add_action('woocommerce_after_shop_loop_item','woocommerce_template_loop_go_to_cart'); function woocommerce_template_loop_go_to_cart() { global $product; ?> <a class="button add_to_cart_button" href="<?php echo get_the_permalink($product->id); ?>"><?php _e('Go to the product'); ?></a> <?php }
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Product Page Weight ViewsHi ermoon,
add following code in your theme’s function.php
add_filter('woocommerce_get_price_html','display_weight_with_price',10); function display_weight_with_price($price) { global $product; $product_type = $product->product_type; if($product_type == 'simple') { $pro_weight = $product->get_weight(); if($pro_weight != '' && $pro_weight != 0) { $price = $price.' / '.$pro_weight.' '.esc_attr( get_option('woocommerce_weight_unit' )); } } return $price; }
Forum: Plugins
In reply to: [WooCommerce] Dirham currency shows Arabic symbol but i need show "AED"Most welcome