• Resolved chinook65

    (@chinook65)


    Is there a permanent way to disable the ‘Duplicate’ option for pages and posts? I can manually disable the option via modifying the core plugin files, but that’s not preferable as I do not like to change core plugin files. Override perhaps?

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The duplicate page is a commonly used feature, so we don’t have the option to remove it. The duplicate feature sets the duplicated page to draft status, so it shouldn’t affect your live page unexpectly.

    Thread Starter chinook65

    (@chinook65)

    Thanks for the reply. There’s another content duplicatation plugin I prefer to use that offers additional functionality when a content item is duplicated, which results in displaying two ‘Duplicate’ links for content items if that plugin is active, so my goal is to remove TB’s Duplicate option so it’s not confusing for my content managers.

    Thanks

    Thread Starter chinook65

    (@chinook65)

    This is a follow-up solution. I added this to my theme’s functions.php file and it keeps the option hidden for me:

    /* hide Themify duplicate option in admin dashboard */

    add_action('admin_head', 'admin_css');

    function admin_css() {
    echo '<style>
    .themify-builder-duplicate {
    display: none !important;
    }
    </style>';
    }

    Cheers

Viewing 3 replies - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.