Jump to content

Register Hidden


Recommended Posts

13 hours ago, Guilherme Linhares said:

Hello, i need hidden the link register in secundarysidebar.

there are two ways to do this...

1. if you don't want clients to register without ordering, you can remove the "Register" option from the admin settings by unticking the checkbox below and that will remove the link...

setup -> general settings -> other -> Allow Client Registration

Opções -> Configurações Gerais -> Outros -> Permitir Registro de Cliente

L7zxh_Ujb_Rn678_Nepv8of3g.png

2. if you just want to remove the link in the secondary sidebar, you can use an action hook - so create a new .php file in /includes/hooks, call it 'registerlink.php' (or whatever you want) and paste the following code into it.

<?php

use WHMCS\View\Menu\Item as MenuItem;

add_hook('ClientAreaSecondaryNavbar', 1, function (MenuItem $secondaryNavbar)
{
	if (!is_null($secondaryNavbar->getChild('Account'))) {
            $secondaryNavbar->getChild('Account')
			->removeChild('Register');
	}
});

you won't need to use both solutions - so just choose which is best for your situation. :idea:

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
  • 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