Working fix for delete issue
-
Hi 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
- The topic ‘Working fix for delete issue’ is closed to new replies.