问题
I can't add attributes to products in woocommerce. It shows this error.
select2.js:934 Uncaught Error: Option ‘ajax’ is not allowed for Select2 when attached to a element.
回答1:
it is a Conflict with WooCommerce and select2.js. this error shows beacause woocommerce is updated i think this will solve your problem.
add_action('init', function() { define('SELECT2_NOCONFLICT', true); }, 1);
function my_acf_init()
{
acf_update_setting('select2_version', 4);
}
add_action('acf/init', 'my_acf_init');
来源:https://stackoverflow.com/questions/46237329/acf-conflict-with-woo-commerce-attribute