lidiyam
Forum Replies Created
-
Hi,
Thanks a Lot. It’s worked for me.
Hi,
Thank you for your reply. Morning I updated to latest version, but still the issues are not solved.Forum: Fixing WordPress
In reply to: Mail Receiving form root@localhostHi ,
Thanks for your reply. Already am using that plugin. If click on get quote, mail should go for admin with from mail id. mail going to admin but from mail is like “[email protected]
“. This is my code:<?php add_filter('woocommerce_get_price_html', 'requestQuote', 10, 2); function requestQuote($price, $product) { if ( $price == wc_price( 0.00 ) ){ $current_user = wp_get_current_user(); remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); echo'<form action="" method="post">'; ?><input type="hidden" name="pn" value="<?php echo the_title();?>"><? echo '<input type="hidden" name="from" value='.$current_user->user_email.'">'; echo '<input type="submit" name="send" value="Get Quote"></form>'; } else{ return $price; } } if($_POST['send']) { $to= get_bloginfo('admin_email'); $from = $_POST['from']; $product_name=$_POST['pn']; $subject = 'New Request For Quotation'; $body = 'Please send price for '.$product_name; $headers = "From: " . $from . "\r\n"; wp_mail( $to,$subject, $body, $headers ); }
- This reply was modified 6 years, 3 months ago by lidiyam.
- This reply was modified 6 years, 3 months ago by Jose Castaneda. Reason: fix code
Forum: Plugins
In reply to: [WooCommerce] how to upload the image in registeration pageThanks for you reply. I shared the details in mail.
my website url is : imapepsmed.comForum: Plugins
In reply to: [WooCommerce] remove password option in registeration pageHi ,
Am using Eonet Manual User Approve plugin.
Forum: Plugins
In reply to: [WooCommerce] remove password option in registeration pageHi,
when admin approve the new user registration, the user will get a mail with new password, so i don’t want to display a password field in registration.
Hi,
Below code solved the issues.
.single-product .yith-wcwl-add-to-wishlist{
display: none;
}Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Wishlist Button Displaying TwiceThe Below one gave solution to me:
.single-product .yith-wcwl-add-to-wishlist{
display: none;
}Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Wishlist Button Displaying TwiceHi,
yesterday before raising a ticket i tried with this but if i use the above code, it’s hiding.
But In shop age and index page product have only one add to wishlist option, when i used above code it’s hided add to wishlist option in all pages.So Finally i tried the below one :
.single-product .yith-wcwl-add-to-wishlist{
display: none;
}Above one i tried, No changes. It displaying twice.
- This reply was modified 6 years, 4 months ago by lidiyam.
yes am using WC Return Products plugin, if i don’t use this plugin there is no return option on customer order page.
Hi Roneisantos,
Thank you for your replay but the above code didn’t work for me
Hi,
Thank you for your reply.But for us have to release the project earlier only for this issues we have holding the project. Difficult to wait for long time. Please can you tell me the upcoming version duration.Forum: Fixing WordPress
In reply to: GSTThank you
Forum: Fixing WordPress
In reply to: GSTyes, In woocommerce for product have to add GST calculation.