php – How to remove Branding WHMCS Ver 8.1 Powered by WHMcomplete solutions
php – How to remove Branding WHMCS Ver 8.1 Powered by WHMcomplete solutions
Using attribute selector… This should work:
$(document).ready(function() {
$([href*=whmcs.com]).each(function(){
$(this).parent().remove();
});
});
So you now target the elements by the href
value… Whatever the DOM structure.
If the href
contains whmcs.com
(the *=
operator), the parent of that element will be removed.
Try adding this code in custom.css in your template
#main-body .primary-content p:last-child{
display: none;
}
php – How to remove Branding WHMCS Ver 8.1 Powered by WHMcomplete solutions
For anyone interested.
Am using the SwiftModders theme and found it in the following file
templatesswiftmoddersjsswiftmodders.min.js
Used Notepad++ and searched Powered by and deleted that section.
Issue resolved ^^