• Resolved zmzdtc888

    (@zmzdtc888)


    Not sure if it’s just me or the plugin but being my favourite plugin it is no longer working, right after the update to WP 6.0. Would like to know if anyone has the same problem here and any advice?

Viewing 7 replies - 1 through 7 (of 7 total)
  • I can verify this. Same issue here as well with WP v6.0

    Same. I also noticed no replies from support in quite some time. Hopefully he’s still around.

    I found the same problem after I installed the plugin onto my WP 6.0 Woo shop.

    After a bit of digging around, it turns out the problem is the JS code is no longer finding the IDs of the posts that are being bulk edited.

    The fix is to edit wpbulkremove.js. You need to replace lines 58 – 60:

    bulk_edit_row.find( '#bulk-titles' ).children().each( function() {
     post_ids.push( $( this ).attr( 'id' ).replace( /^(ttle)/i, '' ) );
    });

    with:

    bulk_edit_row.find( '#bulk-titles-list .button-link.ntdelbutton' ).each( function() {
     post_ids.push( $( this ).attr( 'id' ).replace( /_/g, '' ) );
    });

    I tested this with both posts and Woo products.

    Great plugin though. Heaps quicker to use this than try and remove categories product-by-product. ??

    • This reply was modified 2 years, 5 months ago by TheDogBox.
    Thread Starter zmzdtc888

    (@zmzdtc888)

    Wow! Thank you TheDogBox, works for me!

    Thank you very much TheDogBox, works for me as well – WP 6.0 and Woo 6.5.1

    Nice find @thedogbox! Many thanks.

    Plugin Author MasterNs

    (@frile)

    Just released a new version that supports WP 6.0. Please let me know if some issues found.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘No longer working with WP 6.0’ is closed to new replies.