How to Remove phpList Branding

If you’ve just installed or are looking to use phpList in production then you will probably want to remove or replace the “Powered by” text on public pages and send email messages.

The following instructions are based on version 3.6.14 however should apply to future versions.

Remove Powered By Image in phpList Public Pages

To remove the powered by text on public pages, such as subscribe unsubscribe, subscription management etc. navigate find and open the following file:

admin/connect.php

Look for the first instance of the $PoweredByImage. Your file will probably look like the image below. Below the instances where $PoweredByImage and $PoweredByText are initially defined, you can either delete the contents (Careful not to remove the if statement) or add below:

$PoweredByImage = "";
$PoweredByText = "";
phpList Removed Powered By on Public Pages

Remove Powered By Image in phpList Email Templates

To remove the branding on all sent emails from phpList locate the following file:

admin/sendemaillib.php

Within that file there are 2 sections we are going to need to alter, first being text signature.

Find the first instance of the $text[“signature”]. It should look like the first line in the image below, comment or delete this line and below add the following:

$text["signature"] = "";

After your file looks like this image we need to move on to remove the html email signature also.

Fine the first instance of the $html[‘signature’].

This time we’re going to comment or delete the whole if statement since its not needed and add the following line:

$html['signature'] = "";

Your code should look like the following image if you commented out the if statement.

Congratulations, branding across all of your phpList should have been removed from public assets.

If you wish to rebrand this to your own company instead of removing, you can simply add or modify the same lines of code to suit.

If you require assistance or clarification regarding anything mentioned in the above article, reach out and receive expert support from the highly skilled technical team here at AOIT. We are dedicated to providing exceptional customer service and will be more than happy to assist you.

To initiate a support request, kindly click the “Request Assistance” button and a member of our team will respond to you within 24 hours.

Thank you for choosing AOIT for your technical support needs.

Similar articles you may find interesting...

Enforced 2FA
Information

Enforced Two-Factor Authentication (2FA)

Starting Monday, November 18th 2024, 2FA will be mandatory for accessing your account. This is necessary because our dashboard allows Single Sign-On (SSO) to server and hosting control panels, it also contains personal details and billing information. Ensuring the security of your data is our top priority.

Read More »
What is DNS
Domains and DNS

What is a DNS and How Does it Work?

What is a DNS? A domain name system (DNS) is a naming database. In this database, internet domain names are identified and translated into Internet Protocol (IP) addresses. The DNS maps the name people use to locate a website to the IP address that a computer uses to locate that website, creating a connection between

Read More »
SSH Keys RSA vs ED25519
Information

SSH Keys Choosing RSA or Ed25519

SSH, or Secure Shell keys have a critical role in modern authentication and encryption when establishing secure connections. By utilising advanced mathematical functions SSH keys ensure that only permitted and trusted users can access remote resources. Within the world of SSH keys there are two main choices for encryption algorithm: RSA and Ed25519. In this

Read More »