Jump to content

Change btn-link home page panels Overdue Invoices


Drweb

Recommended Posts

How can I change the link of the btn-link to the widget Overdue Invoices, in the clientareahome.

 

Currently the button takes the client to clientarea.php?action=masspay&all=true but I would like to change the link to clientarea.php?action=invoices.

 

I can't create a hook to change this link.

 

Thank you.

 

2017-01-26_0511.png

Link to comment
Share on other sites

if you create a new .php file in /includes/hooks, and paste the code below into it, then it will change the link in the panel. :idea:

 

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

add_hook('ClientAreaHomepagePanels', 1, function (Item $homePagePanels)
{
   if (!is_null($homePagePanels->getChild('Overdue Invoices'))) {
                $homePagePanels->getChild('Overdue Invoices')
                               ->setExtra('btn-link','clientarea.php?action=invoices');
   }

});

Link to comment
Share on other sites

if you create a new .php file in /includes/hooks, and paste the code below into it, then it will change the link in the panel. :idea:

 

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

add_hook('ClientAreaHomepagePanels', 1, function (Item $homePagePanels)
{
   if (!is_null($homePagePanels->getChild('Overdue Invoices'))) {
                $homePagePanels->getChild('Overdue Invoices')
                               ->setExtra('btn-link','clientarea.php?action=invoices');
   }

});

 

Wonderful! The hook worked perfectly.

 

Thank you so much.

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