Home › Toolset Professional Support › [Resolved] Hide Quick Edit and disconnect Link from Child Post table
This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.
Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.
Our next available supporter will start replying to tickets in about 1.82 hours from now. Thank you for your understanding.
Tagged: Post-relationship
This topic contains 1 reply, has 2 voices.
Last updated by Laura 6 years, 1 month ago.
Assisted by: Laura.
I have Created a relationship between Obituary->Service (1:M) . In Edit Obituary table I am Displaying all the Services. So From Service Post table I want to remove Quick Edit and Disconnect Link.
Please find and attachment of the Image.
Hi,
at the moment there is no native way to hide the links unless you use some custom CSS or JS to hide them.
You can try this code to your theme's functions.php file to remove all links, just be sure to substitute “post-type-slug” with your own slug:
add_action('admin_head', 'func_hide_related_posts_links'); function func_hide_related_posts_links() { if( get_post_type() === 'post-type-slug' ) { echo '<style> td.column-post-field .edit { display:none; } td.column-post-field .delete { display:none; } </style>'; } }
Let me know if this works for you.