Get started
Customization
Known compatibility issues
Here we gather the plugins that have known compatibility issues with Dintero Checkout for WooCommerce. This document will be updated if/when needed and it’s our goal that the list will shorten rather than expand.
Some of the plugins listed below may have a solution; others unfortunately do not. We always try to make our plugins compatible with as many other plugins and set-ups as possible, but depending on code outside of our control in other plugins, we can not always enable compatibility.
WooCommerce 8.7 – order attribution origin
With the release of WooCommerce 8.7 (see PR), the fields required for keeping track of the order origin has been moved to a different action, namely woocommerce_checkout_after_customer_details
.
The action hooks that we have in our existing template are, therefore, no longer adequate. So as to not break any existing custom template, we’ve decided not to modify the template file. Instead, you need to add this code snippet:
function dwc_add_after_customer_details() {
do_action( 'woocommerce_checkout_after_customer_details' );
}
add_action('dintero_express_after_wrapper', 'dwc_add_after_customer_details');
To get the functions exemplified in this section to work you need to add the code to your theme’s functions.php. You can add it as its own plugin or through the Code Snippets plugin, or something similiar of your choice.