hickman120
Forum Replies Created
-
Exactly the same for me.
This happens when you try to link a new account. After you (successfully) login to Instagram, this error appears and the account is not linked.
There doesn’t appear to be any way around it and the plugin isn’t functional =/
Hey Ben
Don’t know of any other plugin that does all of the things that this one does. I’ve been modifying my functions file to make the changes. As an example, you can put this in your functions.php file:
add_filter( 'woocommerce_checkout_fields' , 'alter_woocommerce_checkout_fields' ); function alter_woocommerce_checkout_fields( $fields ) { unset($fields['billing']['billing_first_name']); // remove the customer's First Name for billing unset($fields['billing']['billing_last_name']); // remove the customer's last name for billing unset($fields['billing']['billing_company']); // remove the option to enter in a company unset($fields['billing']['billing_address_1']); // remove the first line of the address unset($fields['billing']['billing_address_2']); // remove the second line of the address unset($fields['billing']['billing_city']); // remove the billing city unset($fields['billing']['billing_postcode']); // remove the ZIP / postal code field unset($fields['billing']['billing_country']); // remove the billing country unset($fields['billing']['billing_state']); // remove the billing state unset($fields['billing']['billing_email']); // remove the billing email address - note that the customer may not get a receipt! unset($fields['billing']['billing_phone']); // remove the option to enter in a billing phone number unset($fields['shipping']['shipping_first_name']); unset($fields['shipping']['shipping_last_name']); unset($fields['shipping']['shipping_company']); unset($fields['shipping']['shipping_address_1']); unset($fields['shipping']['shipping_address_2']); unset($fields['shipping']['shipping_city']); unset($fields['shipping']['shipping_postcode']); unset($fields['shipping']['shipping_country']); unset($fields['shipping']['shipping_state']); unset($fields['account']['account_username']); // removing this or the two fields below would prevent users from creating an account, which you can do via normal WordPress + Woocommerce capabilities anyway unset($fields['account']['account_password']); unset($fields['account']['account_password-2']); unset($fields['order']['order_comments']); // removes the order comments / notes field return $fields; }The above code removes all/most boxes from the checkout page. So you just need to adjust the code above to show/unshow the fields that you want.
Granted – it’s not as easy as using a plugin to do it, but it’s the only thing I got =)
Note: you should actually create a Child Theme and put the code in the functions.php file for the child theme, not the parent theme!
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Credit Card details Cannot Be Filled InGuys
I fixed the problem for my site by eventually tracking the problem to the “Woocommerce Poor Guys Swiss Knife” plugin. I can’t work out exactly what the problem was, but deactivating this plugin fixed the problem.
It also fixed a number of other issues I’d noticed happening during the purchase process – all of which were Ajax related problems. So obviously the plugin is causing an Ajax conflict somewhere.
Thought I’d let you know.
Cheers!
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Credit Card details Cannot Be Filled InThis is also happening to me too.
The problem is happening on this page -> https://deondane.com/checkout/
Of course you have to add a product to your cart first. The boxes for credit card payments literally cannot be clicked into or typed into. It’s just an unclickable text box.
I’m using the “Storefront” theme from WooCommerce and have been for about a year, no other changes have occurred recently that I’m aware of. I’m guessing this must’ve happened since a recent update of a plugin.
Are we able to get a proper investigation going so that we can get this fixed?
Exactly the same happens for me – when you click on the blue “Setup or link an existing PayPal account” button – you login to PayPal, go through the process of allowing permissions, etc and then return to the WooCommerce page.
But nothing changes – the account isn’t connected and the blue button is still there.
No error messages, just the default notice at the top which says “PayPal Express Checkout is almost ready. To get started, connect your PayPal account.”
Seems I can’t connect my PayPal account to this plugin so it’s a no-go it seems =(