Jump to content

How do I hide the 'your recent tickets' module


Recommended Posts

Hello everyone,

I've finally moved the support system out of WHMCS and into Zoho Desk. I've made a number of configuration changes, mostly using hooks, to remove the in-built support system from the clients' portal but I still need to hide the 'Your Recent Tickets' module. Does anyone know how I can do this please?

Many thanks

 

James

Link to comment
Share on other sites

oh i thought I had answered this thread.

On 06/11/2020 at 07:36, jtgroup said:

I've finally moved the support system out of WHMCS and into Zoho Desk. I've made a number of configuration changes, mostly using hooks, to remove the in-built support system from the clients' portal but I still need to hide the 'Your Recent Tickets' module. Does anyone know how I can do this please?

if you're talking about the sidebar, then you can use a hook...

<?php

use WHMCS\View\Menu\Item as MenuItem;

add_hook('ClientAreaSecondarySidebar', 1, function(MenuItem $secondarySidebar){

	if (!is_null($secondarySidebar->getChild('Recent Tickets'))) {
		$secondarySidebar->removeChild('Recent Tickets');
	}
});

pg1rJE9.png

Link to comment
Share on other sites

On 13/11/2020 at 4:06 PM, brian! said:

oh i thought I had answered this thread.

if you're talking about the sidebar, then you can use a hook...


<?php

use WHMCS\View\Menu\Item as MenuItem;

add_hook('ClientAreaSecondarySidebar', 1, function(MenuItem $secondarySidebar){

	if (!is_null($secondarySidebar->getChild('Recent Tickets'))) {
		$secondarySidebar->removeChild('Recent Tickets');
	}
});

pg1rJE9.png

That worked perfectly, thank you!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated