Replacement of Checkout Form doesn't fire
-
I thought I might be able to do a quick debug since you mentioned somewhere it was EDD’s new options that might have broken it. I was trying to have it work for ‘Disable guest’ and ‘Show registration ‘.
I have to stop. ?? Just thought I’d let you know what I found so far.
It appears that EDD is loading ‘checkout/template.php’ twice. Once in ‘plugins_loaded’ and again (by ajax?) when the ‘ajax spinner’ is displayed after the shopping cart and payment method selection is displayed on the checkout page.
This appears to do
add_action( 'edd_purchase_form_register_fields', 'edd_get_register_fields' );
twice. The second of which is AFTER this plugins
remove_action( 'edd_purchase_form_register_fields', 'edd_get_register_fields' )
runs.So the remove action doesn’t actually workas the action is getting added again.
EDD appears to be adding the checkout form fields by ajax.
I had to stop and move on to other stuff, but thought I’d note this in case anyone else felt inspired to get it working.
- The topic ‘Replacement of Checkout Form doesn't fire’ is closed to new replies.