Hey Guys,
on the client portal side I am getting admin only JS and it is causing my page to reload over and over again
Happens when not signed in, I have added a support link on my client pages - and when I remove that the refresh stops but the javascript is still present.
The JS in the bottom is
<!-- display admin ticket count menu badge--> <script> jQuery(function($){ if( $("a[href=/portal/plugin/support_managerpro/client_main/]").length ) { $( document ).ready(function() { $.get( '/admin/plugin/support_managerpro/client_tickets_count/', function(newRowCount){ $("a[href=/portal/plugin/support_managerpro/client_main/]").html( newRowCount.trim() ); }); }); setInterval(function(){ $.get( '/admin/plugin/support_managerpro/client_tickets_count/', function(newRowCount){ $("a[href=/portal/plugin/support_managerpro/client_main/]").html( newRowCount.trim() ); }); },5000); } }); </script> <!-- end display admin ticket count menu badge-->