Okay
  Public Ticket #4217214
FluentCRM
Closed

Comments

  •  2
    Remco started the conversation

    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

  •  2,619
    WebWizards replied

    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

  •   Remco replied privately
  •  2,619
    WebWizards replied

    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