Opened 9 years ago
Closed 8 years ago
#7172 closed defect (bug) (worksforme)
Woocommerce checkout AJAX and Buddypress AJAX are in conflict
Reported by: | egyptimhotep | Owned by: | imath |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | Core | Keywords: | needs-testing needs-patch reporter-feedback |
Cc: |
Description
The only way how to fix is to disable ajax woocommerce checkout.
<?php /** * Disable checkout script, because of conflict BuddyPress and Woocommerce Ajax conflict. */ function disable_checkout_script(){ wp_dequeue_script( 'wc-checkout' ); } add_action( 'wp_enqueue_scripts', 'disable_checkout_script' );
Change History (3)
Note: See
TracTickets for help on using
tickets.
Hi egyptimhotep
Thanks for your feedback. I will look at this asap.