diff --git a/admin/options.php b/admin/options.php index 5447b45c..e45f67c2 100644 --- a/admin/options.php +++ b/admin/options.php @@ -124,7 +124,7 @@ function options_ui( $sitewide = false, $customize_defaults = false ) { 'revisor_lock_others_revisions' => __("Editing others' revisions requires role capability", 'revisionary'), 'revisor_hide_others_revisions' => __("Listing others' revisions requires role capability", 'revisionary'), 'admin_revisions_to_own_posts' => __("Users can always administer revisions to their own editable posts", 'revisionary'), - 'queue_query_all_posts' => __('Compatibility Mode', 'revisionary'), + //'queue_query_all_posts' => __('Compatibility Mode', 'revisionary'), 'revision_update_notifications' => __('Also notify on Revision Update', 'revisionary'), 'trigger_post_update_actions' => __('Revision Publication: API actions to mimic Post Update', 'revisionary'), 'diff_display_strip_tags' => __('Hide html tags on Compare Revisions screen', 'revisionary'), @@ -161,7 +161,6 @@ function options_ui( $sitewide = false, $customize_defaults = false ) { $this->option_captions['publish_scheduled_notify_admin'] = sprintf(__('Email Editors and Administrators when a %s is published', 'revisionary'), $future_revision_singular); $this->option_captions['rev_approval_notify_admin'] = sprintf(__('Email Editors and Administrators when a %s is approved', 'revisionary'), $pending_revision_singular); } - $this->form_options = apply_filters('revisionary_option_sections', [ 'features' => [ @@ -372,7 +371,7 @@ function options_ui( $sitewide = false, $customize_defaults = false ) { option_checkbox( 'copy_posts_capability', $tab, $section, $hint, '' ); - + if (defined('PRESSPERMIT_VERSION')) :?>
+
diff --git a/defaults_rvy.php b/defaults_rvy.php index a63404e4..a8a1acd4 100644 --- a/defaults_rvy.php +++ b/defaults_rvy.php @@ -34,7 +34,7 @@ function rvy_default_options_sitewide() { 'revisor_lock_others_revisions' => true, 'revisor_hide_others_revisions' => true, 'admin_revisions_to_own_posts' => true, - 'queue_query_all_posts' => true, + //'queue_query_all_posts' => true, 'require_edit_others_drafts' => true, 'diff_display_strip_tags' => false, 'scheduled_revision_update_post_date' => true, @@ -84,7 +84,7 @@ function rvy_default_options() { 'revisor_lock_others_revisions' => 1, 'revisor_hide_others_revisions' => 1, 'admin_revisions_to_own_posts' => 1, - 'queue_query_all_posts' => 0, + //'queue_query_all_posts' => 0, 'require_edit_others_drafts' => 1, 'diff_display_strip_tags' => 0, 'scheduled_revision_update_post_date' => 1, diff --git a/functions.php b/functions.php index cc517960..8f02d240 100644 --- a/functions.php +++ b/functions.php @@ -1,5 +1,4 @@ add_cap('upload_files'); } - } elseif (version_compare($last_ver, '2.4.3-beta4', '<')) { // Empty Queue condition was reported with Elementor, so default this setting + } + /* + elseif (version_compare($last_ver, '2.4.3-beta4', '<')) { // Empty Queue condition was reported with Elementor, so default this setting if (defined('ELEMENTOR_VERSION') || defined('ELEMENTOR_PRO_VERSION')) { update_option('rvy_queue_query_all_posts', 1); } } + */ if ($current_version != $last_ver) { require_once( dirname(__FILE__).'/lib/agapetry_wp_core_lib.php');