Jump to content

Remove "View" from supporttickets.php


Georgesosk

Recommended Posts

Hi,

I am trying to remove the "View" filter on the left hand menu of supporttickets.php

I tried using a hook, but I suppose I did something wrong as it didn't work:

<?php

use WHMCS\View\Menu\Item as MenuItem;

add_hook('ClientAreaPrimaryNavbar', 1, function (MenuItem $primaryNavbar) {
   if (!is_null($primaryNavbar->getChild('Support'))) {
       $primaryNavbar->getChild('Support')->removeChild('View');
   }
});

Any thoughts would be appreciated.

Link to comment
Share on other sites

3 hours ago, Georgesosk said:

I tried using a hook, but I suppose I did something wrong as it didn't work:

it wouldn't help that you're using a Navbar hook, when you should be using a Sidebar hook instead. 🙂

<?php

use WHMCS\View\Menu\Item as MenuItem;
 
add_hook('ClientAreaPrimarySidebar', 1, function(MenuItem $primarySidebar) {
	
	if (!is_null($primarySidebar->getChild('Ticket List Status Filter'))) {
		$primarySidebar->removeChild('Ticket List Status Filter');
	}
});
Link to comment
Share on other sites

Left side is not the primary, it's the secondary.
Try this?

<?php
use WHMCS\View\Menu\Item as MenuItem;

add_hook('ClientAreaSecondarySidebar', 1, function(MenuItem $secondarySidebar)
{
        if(!is_null($secondarySidebar->getChild('Support'))){
    	$secondarySidebar->getChild('Support')->removeChild('View');
    	}   
});

Interesting. I posted the above hours ago, and it's not in the thread. See if it works this time.

Link to comment
Share on other sites

19 hours ago, bear said:

Left side is not the primary, it's the secondary.

huh? with Six, all sidebars are shown on the left (if you had a RTL template, they'd be on the right) - but Six certainly wouldn't split sidebars with primary on the right and secondary on the left by default.

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