• Hi

    If you wanted to allow a revisor to update the Page ‘Order’ for example. Then I use this filter to enable showing the page attributes box:

    add_filter('rvy_hidden_meta_boxes', 'revisor_show_page_atts_box');
    function revisor_show_page_atts_box($unrevisable_css_ids) {
    
    	$key = array_search('pageparentdiv', $unrevisable_css_ids, true);
    	unset($unrevisable_css_ids[$key]);
    
    	return $unrevisable_css_ids;
    
    }

    When they change the ‘Order’ then hit ‘Submit Revision’, the first problem is that there is no way to see that this has changed in the revision manager. And the second problem is when the admin presses ‘Publish Now’, it doesn’t actually update it anyway.

    This is crucial for me as revisors need to be able to change the order of pages, is there a solution to this problem?

    Thanks – Andy

    https://www.ads-software.com/plugins/revisionary/

  • The topic ‘This plugin does not work when a revisor tries to update the page attributes?’ is closed to new replies.