alphatechlogix
Forum Replies Created
-
Forum: Plugins
In reply to: [Premium Addons for Elementor] Disable vertical scroll on mobile devicesi am sorry to say but it still not help me. let me describe again shortly.
i want to disable/remove vertical scroll affect on mobile.
Forum: Plugins
In reply to: [Premium Addons for Elementor] Disable vertical scroll on mobile devicesHi,
Thanks for quick reply, and hope you doing great.
yeah i alsready enable this option “Enable Full Section Scroll on Touch Devices” as you can see in the screenshot but the problem is on mobile it is still full slide scroll.I want to disable vertical scroll on mobile.
Regards,
AlphtechlogixForum: Plugins
In reply to: [Facebook for WooCommerce] A required field is missing: priceI have the same issue
Forum: Plugins
In reply to: [Twenty20 Image Before-After] Twenty20 stopped workingHi,
I have same problem it stop working and yes show me this error in console.
“$(…).twentytwenty is not a function”i disable paid version but still invoice pdf is not attach with any email
have you recived?
sure. i have send email.
i am sorry but smtp is working fine, its showing error bcz i install smtp for mail logging
Please see i already selected status as well for other emails but none of email have pdf.
https://tinyurl.com/y4k73hrcand i do see also log error it show me only this. and there is no fatal error.
https://tinyurl.com/y33v8bjfi means to say pdf is also not attached for other email as well.
but i am not able to recieve email for other payment methods as well, can you please guide me for debugging as well as for proper setting
is this snippet also disabled email of invoice for this payment method?
i found one more code from one of your college. which one will work perfectly?
add_filter( 'wpo_wcpdf_document_is_allowed', 'wpo_wcpdf_disable_invoice_for_certain_payment_methods', 10, 2 ); function wpo_wcpdf_disable_invoice_for_certain_payment_methods ( $condition, $document ) { if ( $document == 'invoice' ) { $disabled_methods = array('stripe', 'bacs'); $payment_method = $order->get_payment_method(); if ( in_array( $payment_method, $disabled_methods ) ) $condition = false; } return $condition; }