Jump to content

Addon request


Recommended Posts

  • 3 weeks later...

What, specifically are you trying to do, place these at the end, or the beginning of the page? Something like an ad, for your own company?

This is quite a bit outside of the scope of WHMCS (a billing / hosting account manager), more like in the scope of your server admins, but you can do that through a number of apache modules.

 

Link to comment
Share on other sites

7 hours ago, Charles Bradbeer said:

Hello,

I have made a hook what does this but it doesn't seem to work? Do you know how to make it work?


<?php
add_hook('ClientAreaFooterOutput', 1 {
    $footer = '<p>demo</p>';
    return $footer;
})

syntax errors, this should work:

<?php
add_hook('ClientAreaFooterOutput', 1, function($vars){
    $footer = '<p>demo</p>';
    return $footer;
});

 

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