Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Edit post unlimited minutes?

The following plugin should work, but I have not tested it.

<?php

/*

Plugin Name: Ignore Edit Lock

Plugin URI: https://bbpress.org/forums/topic/263

*/

function members_ignore_edit_lock() {

global $bb_roles;

$bb_roles->role_objects['member']->add_cap( 'ignore_edit_lock', true );

}

add_action( 'bb_got_roles', 'members_ignore_edit_lock' );

?>

Save that bit of code as members-ignore-edit-lock and put it in bbPress’ my-plugins/ directory.

Skip to toolbar