Viewing 1 replies (of 1 total)
  • Plugin Author Brice Capobianco

    (@brikou)

    Hi gloriusdoge,
    You have to enable “Revisions” in the post type option menu (top right of the edit screen). Then scroll down and you’ll see something like this.

    https://ps.w.org/simple-revisions-delete/assets/screenshot-5.jpg?rev=1079182

    Plus: you have to add extra post types to the plugin compatibility.

    function bweb_wpsrd_add_post_types( $postTypes ){
        $postTypes[] = 'additional-cpt';
        $postTypes[] = 'another-cpt';
        return $postTypes;
    }
    add_filter( 'wpsrd_post_types_list', 'bweb_wpsrd_add_post_types' );

    Best,

Viewing 1 replies (of 1 total)
  • The topic ‘Single Revision Delete’ is closed to new replies.