Jump to content

Powered by WHMCompleteSolution loaction


Omle

Recommended Posts

You can certainly shift it around using the rest of the templates, I initially did that to neatly integrate it into the footer in our layout before the boss man got the unbranded license.

 

I think it is inserted just before footer.tpl

 

Can you remember how you did it, as I want to do the same thing as well. Would be great if you could remember, thanks.

Link to comment
Share on other sites

  • 2 years later...

i have managed to do this using jquery. i removed it from where it is and put it in my footer instead. this is the code i used, works a treat

 

$(document).ready(function() {

$("p a")

.each(function()

{

if( $(this).attr("href")=="http://www.whmcs.com/" ) {

$(this).parent().hide();

}

});

 

});

Link to comment
Share on other sites

i have managed to do this using jquery. i removed it from where it is and put it in my footer instead. this is the code i used, works a treat

 

$(document).ready(function() {

$("p a")

.each(function()

{

if( $(this).attr("href")=="http://www.whmcs.com/" ) {

$(this).parent().hide();

}

});

 

});

 

Could you give a Noob some steps on how you implemented this using jquery I'd really appreciate it

Thanks

Link to comment
Share on other sites

  • 3 months later...

You cannot alter the powered by line through CSS or within the .tpl file pages. It's encoded within WHMCS files.

 

It appears after each subpage (eg: clientareadetails.tpl) and before footer.tpl. The only way you can style the link is using:

p a {
  color: #ff0000;
}

 

Bear in mind that this will affect every link included in a paragraph tag. If you do not want the powered by line, you will need to purchase an unbranded license instead.

Link to comment
Share on other sites

  • 1 year later...
i have managed to do this using jquery. i removed it from where it is and put it in my footer instead. this is the code i used, works a treat

 

$(document).ready(function() {

$("p a")

.each(function()

{

if( $(this).attr("href")=="http://www.whmcs.com/" ) {

$(this).parent().hide();

}

});

 

});

 

I want use this code, but I don't know where add?

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