hardik
Forum Replies Created
-
Hi @chetnapatel
I have sent an email on mentioned address.
Please check asap. It’s really urgent for me.
Thanks for your answer.
Still this solution not working for me.
I have tested with latest plugins & also tested with older version of plugins.Also, delivery date should be send to email notifications as well.
Hi pimwick
I am using WooCommerce order delivery date plugin. Delivery date field not capture in order meta when I am select afterpay as a payment method.
FYI: It is working fine with paypal method.
I have also tried after adding line
do_action( 'woocommerce_checkout_create_order', $order, $posted );
as you mentioned. But still it is not capturing delivery date field in order meta.Can you please have a look on this?
- This reply was modified 5 years, 9 months ago by hardik.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form Not Sending if User is Not Login“Password protect” plugin seems to be causing this issue. I disabled that plugin and it is working for me.
No, Actually there is only one list created in Mailchimp.
And I notice that it happened on my both sites, Staging & Live.
- This reply was modified 6 years, 8 months ago by hardik.
Forum: Plugins
In reply to: [Subscriber Discounts for WooCommerce] Not recieving emailsHi,
I am getting the same error.
It is working on my staging site but not sending email from my live site.So I have debug the issue is with the headers send by email.
Just use the plain/text header instead of using html header.
I found the issue.
Multibyte string engine module is not enabled on my server, So ‘mb_convert_encoding’ function is not working on my site.
So I have just replace the below code from Admin.php line no. 484
$values[$key] = mb_convert_encoding($value, $charset);with below code
$values[$key] = htmlspecialchars_decode(utf8_decode(htmlentities($value, ENT_COMPAT, ‘utf-8’, false)));and it is working for me!
Forum: Plugins
In reply to: [WooCommerce Show Attributes] Make the attributes links?Hi Rob Bertholf,
You are a hero man.
Your code works perfect for me.
Thanks dear.
Forum: Plugins
In reply to: [WooDiscuz - WooCommerce Comments] Comment author avatar/image not showingThanks for your quick reply and effort.
I will try with makery theme functions.Forum: Plugins
In reply to: [WooDiscuz - WooCommerce Comments] Comment author avatar/image not showingHi,
I have sent you an email at support[at]gvectors.com with URL. You can check it on my site.
Thanks.
Forum: Fixing WordPress
In reply to: How to increase media file upload limit in wordpress site?Hi Mark,
I have upload info.php file and check all the parameters and values as you mention.
I found that server is loading default php.ini file. I have check Loaded Configuration File is /web/conf/php.ini and mine uploaded php.ini file is in other folder.Forum: Fixing WordPress
In reply to: How to increase media file upload limit in wordpress site?Hello jrxpress,
I have create .user.ini file and put the below code in that file.
file_uploads = ON upload_max_filesize = 1024M post_max_size = 1024M
and upload this file into public_html but still upload limit does not increase.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce product custom field on backend as well frontendAny one can help me…?
Forum: Plugins
In reply to: WooCommerce product custom field on backend as well frontendPlease any one can help me??
Forum: Fixing WordPress
In reply to: Site and admin redirect to new domain with htaccessThanks leejosepho for your help,
Issue is solved now.
I understand that what I am doing wrong.I have used below code
Redirect 301 /wp-admin https://www.redirectsite.com Redirect 301 / https://www.redirectsite.com
Instead of
Redirect 301 / https://www.redirectsite.com Redirect 301 /wp-admin https://www.redirectsite.com
I have interchange first and second line.
and it’s working like a charm…