• Hi there,

    This plugin works great for reordering Woocommerce products, but it it seems to clash with the inbuilt drag and drop ordering for Woocommerce attributes. Basically, with this plugin activated the attribute is not saved, constantly reverting back to the original order.

    Any fixes or suggestions for other plugins that may work on a Woocommerce site?

    Thanks!

    https://www.ads-software.com/plugins/simple-custom-post-order/

Viewing 1 replies (of 1 total)
  • I ran into this problem and solved it like this in SCPO version 2.2:

    edit file simple-custom-post-order.php and find the function “_check_load_script_css()”. Inside that function (on line 111) you should see
    if ( in_array( $_GET['post_type'], $objects ) ) {

    replace it by
    if ( in_array( $_GET['post_type'], $objects ) && !isset( $_GET['taxonomy'] ) ) {

    This results in the javascript no longer being loaded on taxonomy pages and thus not interfering with WooCommerce’s built-in term sorting.

Viewing 1 replies (of 1 total)
  • The topic ‘Conflict with Woocommerce attributes’ is closed to new replies.