• In the demo backend, the Quote Settings includes an option to “hide the Quotes section from the Client Area” but I don’t see that in my version. Is that something that was removed at some point? Thank you for your help!

Viewing 1 replies (of 1 total)
  • Plugin Author SlicedInvoices

    (@slicedinvoices)

    The “hide the Quotes section from the Client Area” option is specific to our Client Area extension, which is a separate (paid) plugin. If you don’t have this extension, then you won’t see this in your settings.

    If you are using the free version and want to hide Quotes from your admin area, you can use the following code snippet to do this:

    add_action( 'admin_menu', 'sliced_remove_admin_quotes', 999 );
    function sliced_remove_admin_quotes() {
    	remove_menu_page('edit.php?post_type=sliced_quote');
    }

    Hope that helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Can I Disable the Quotes Portion?’ is closed to new replies.