Conversation
supportHi there, Here’s a working fix for the (impossibility to) delete issue a lot of people are facing. Find: class-jj4t3-log-listing.php Replace: // Nonce verification. if ( empty( $nonce ) || ! wp_verify_nonce( $nonce, ‘bulk-404errorlogs’ ) ) { return false; } With: // Nonce verification. if ( empty( $nonce ) || ! wp_verify_nonce( $nonce, ‘bulk-404errorlogs’ ) ) { if ( empty( $nonce ) || ! wp_verify_nonce( $nonce, ‘bulk-‘ . $this->_args[‘plural’] ) ) { return false; } } And you should be good to go. Cheers, Robert This topic was modified 3 years, 2 months ago by Robert van Hall .
No comments were stored for this source.