Omle Posted June 22, 2008 Share Posted June 22, 2008 which .tpl is the "Powered by WHMCompleteSolution" located at, im not trying to delete it i just wanna move it to the footer, its making the page look ugly how it is now. 1 Quote Link to comment Share on other sites More sharing options...
penguin Posted June 22, 2008 Share Posted June 22, 2008 It's coded in, not in the templates. You'd need to purchase the unbranded licence to remove it. 0 Quote Link to comment Share on other sites More sharing options...
chickendippers Posted June 22, 2008 Share Posted June 22, 2008 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 0 Quote Link to comment Share on other sites More sharing options...
Allosunshine Posted June 25, 2008 Share Posted June 25, 2008 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. 0 Quote Link to comment Share on other sites More sharing options...
chickendippers Posted June 25, 2008 Share Posted June 25, 2008 You have to go through each template and add your footer up to the point you want the powered by line to appear. Then add the rest of your code to footer.tpl. Eg. <div id="footer"> <p>© 2002-2008 Valcato Hosting.</p> Powered by WHMCS appears here </body> </html> 0 Quote Link to comment Share on other sites More sharing options...
Allosunshine Posted June 25, 2008 Share Posted June 25, 2008 But will that clear the original Powered By Line?? 0 Quote Link to comment Share on other sites More sharing options...
chickendippers Posted June 25, 2008 Share Posted June 25, 2008 No, there's no way to actually get rid of the powered by line without buying a branding-free license. 0 Quote Link to comment Share on other sites More sharing options...
Allosunshine Posted June 25, 2008 Share Posted June 25, 2008 Thanks for the info. 0 Quote Link to comment Share on other sites More sharing options...
danwoodbury Posted July 19, 2010 Share Posted July 19, 2010 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(); } }); }); 0 Quote Link to comment Share on other sites More sharing options...
JFOC Posted July 20, 2010 Share Posted July 20, 2010 Nice Trick 0 Quote Link to comment Share on other sites More sharing options...
celtaweb.net Posted July 21, 2010 Share Posted July 21, 2010 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 0 Quote Link to comment Share on other sites More sharing options...
susan88 Posted July 22, 2010 Share Posted July 22, 2010 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 Does it breach the Licence Agreement? 0 Quote Link to comment Share on other sites More sharing options...
Damo Posted July 22, 2010 Share Posted July 22, 2010 Yes it does. If you don't want the branding then purchase the appropriate license. 0 Quote Link to comment Share on other sites More sharing options...
pmatra Posted October 23, 2010 Share Posted October 23, 2010 I think the 'Powered by WHMCS' should go in the side menu, or at least give it a little more padding on the top. Has anyone done this? 0 Quote Link to comment Share on other sites More sharing options...
blymp Posted October 23, 2010 Share Posted October 23, 2010 I think the 'Powered by WHMCS' should go in the side menu, or at least give it a little more padding on the top. Has anyone done this? You can manage that with css... 0 Quote Link to comment Share on other sites More sharing options...
pmatra Posted October 23, 2010 Share Posted October 23, 2010 I have been CSS'ing the hell out of my site. I just have to find where it is.... 0 Quote Link to comment Share on other sites More sharing options...
Jordan Posted October 24, 2010 Share Posted October 24, 2010 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. 0 Quote Link to comment Share on other sites More sharing options...
webbusman Posted August 28, 2012 Share Posted August 28, 2012 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? 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.