Show text on Guide only to staff | Community
Skip to main content

Show text on Guide only to staff

  • March 25, 2024
  • 2 replies
  • 0 views

Hi,

I am looking for a way to write text on the main page of the Copenhagen theme to the agents only.

 

 

2 replies

Prashant11

Hi raphael peguet,

Try to use below code in Home_page.hbs

   <h4 class="show_text">Show text to agents<h4>

  <script>
    $( document ).ready(function() {
   $(".show_text").css('display', 'none');
    if(HelpCenter.user.role=='agent'){
        $(".show_text").css('display', 'block');
      }
   });  </script>

 

 


Brett13
  • Community Manager
  • March 26, 2024

Thanks for sharing your solution here @prashant11!