I believe I can help you remove the FluentCRM tab from your vendor product editor with a code snippet. However, to provide you with the exact code, I'll need to take a look at how this is currently implemented.
Could you please share a vendor login (username and password) so I can access the dashboard and check the code structure of that page and the FluentCRM tab?
Thank you for providing the login details. I've checked your dashboard and prepared a code snippet that will remove the FluentCRM tab from your vendor area.
You can add this code to your theme's functions.php file or using a code snippets plugin:
I have fluentCRM showing in my product editor for my vendors. How can I disable this?
Attached files: Screenshot 2025-07-28 at 7.52.48 AM.png
Hi Remco,
I believe I can help you remove the FluentCRM tab from your vendor product editor with a code snippet. However, to provide you with the exact code, I'll need to take a look at how this is currently implemented.
Could you please share a vendor login (username and password) so I can access the dashboard and check the code structure of that page and the FluentCRM tab?
Kind regards,
Stefan
Hi Remco,
Thank you for providing the login details. I've checked your dashboard and prepared a code snippet that will remove the FluentCRM tab from your vendor area.
You can add this code to your theme's functions.php file or using a code snippets plugin:
add_action('marketking_dashboard_head', function(){ ?> <script> jQuery(document).ready(function(){ jQuery('.fluent_crm-settings-tab').remove(); }); </script> <style> .fluent_crm-settings-tab{ display:none !important; } </style> <?php });Let me know if you see any issues,
Kind regards,
Stefan