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.
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
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