anantaraj
Forum Replies Created
-
Actually, @joostvandevijver really helps me to solve the issue, the issue was from the custom theme jquery issue, which was preventing paypal button to show,
After deregistering the jquery from the theme it start working.function remove_custom_jquery() {
wp_deregister_script(‘ghd-jquery’);
}
add_action(‘wp_enqueue_scripts’, ‘remove_custom_jquery’, 999);this code deregister the custom theme scripts.
For Paypal Image
function woocommerce_paypal_payments_gateway_icon( $icon, $id ) {
if ( $id === ‘ppcp-gateway’ ) {
return ‘//your paypal image link wrap in img tag’;
} else {
return $icon;
}
}
add_filter( ‘woocommerce_gateway_icon’, ‘woocommerce_paypal_payments_gateway_icon’, 10, 2 );For Debit and credit card image
function woocommerce_debitcard_payments_gateway_icon( $icon, $id ) {
if ( $id === ‘ppcp-card-button-gateway’ ) {
return ‘//your credit card image link wrap in img tag’;
} else {
return $icon;
}
}
add_filter( ‘woocommerce_gateway_icon’, ‘woocommerce_debitcard_payments_gateway_icon’, 10, 2 );
Actually, i need this function because I am using standard card processing, in Advance card processing you will find the option to show image in tab of “Advanced Card Processing”:- This reply was modified 2 years ago by anantaraj. Reason: code clarity
@joostvandevijver , Yes I cannot figure it out by myself, I have also send a private support as per you said.
@digeek I cannot get you properly, Though I tried the same approached as you said, nothing changed in my checkout page.
Can you bit guide me, since you have solved this kind of issue in the site previously .
Thank you@joostvandevijver , Yes I see there is a JavaScript error in my site, At first when the page loads at checkout page the error will comes from the button.js (from the woo commerce PayPal payment plugin ) and later it is overrides by the spinner.js, that’s the reason I think the PayPal button is not showing.
Now, how to handle these type of error, though its first time I am facing such kind of issue in my sites.Forum: Reviews
In reply to: [WooCommerce PayPal Payments] Paypal error ;- Could not retrieve order.Hi @niklasinpsyde ,
Thank you for your valuable reply. I have created a forum lets see if any one help me
https://www.ads-software.com/support/topic/woocommerce-paypal-payment-could-not-retrieve-order/
Thank you- This reply was modified 2 years, 2 months ago by anantaraj.
Forum: Plugins
In reply to: [WooCommerce] Checkout Page country dropdown not clickableI got my answer after a debugging the site.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 doesn’t send messages@havingtrouble to rollback, please download the following plugin https://www.ads-software.com/plugins/wp-rollback/ and activate it,
then go to the plugins , then you will see rollback option in each plugin. select the contact form 7 and rollback to 5.3 version. after the rollback deactivate the plugin
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 doesn’t send messagesyes I agree with the @lorenz76 , that the rollback is not the good option.
for my site, I tried to rollback the plugin & it start working.
For the good option, try Updating your theme, WordPress version to latest, and contact form 7 to the latest version. so it will work
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 doesn’t send messagesFor a rollback there is the plugin
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 doesn’t send messagesrollback the plugin to 5.3 can solve the issue,
But make sure, backup both database and files
as per the forum https://www.ads-software.com/support/topic/form-not-sending-please-just-rollback/ Please refer this
I even rollback the plugin to 5.3, that can solve my problem to some extend ??
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 doesn’t send messagesSame Problem, Since I Updated my theme to latest wp version and contact form 7 to latest version, this problem has arises.
Hy glen,
is it will affect the other visitor who submits the form too ?
since the upload field is available for all except me.. what if they submits the form multiple times, do their IP will also block ?
Hy glen, Thankyou for the fast response,
i tried to clear the cache form the browser but it is still not appearing.
in console
when the site in not-login ( showing from incognito mode)
the error from the console
https://i.ibb.co/Sv0ZMjm/image.png
when it is login
https://i.ibb.co/sPbhc98/image.png
though there is some error, the upload field is visible.
Thank you
Hy Suresh Patel,
I think you missed to insert the [upload-resume] in the mail tab.
Check below screen shot