
When you launch a Bitnami WordPress AMI on AWS, it has a bitnami banner on the corner. To remove the corner banner, I will share step by step guide to remove bitnami banner from WordPress blog.
Page Contents
Steps to Remove Bitnami Banner
There are two ways to remove the banner from the corner
Step 1: SSH to the Bitnami EC2 instance
First, you have to connect to the EC2 instance using your serverkey and IP of the instance.
$ ssh -i example.pem [email protected]
Now run the following command to disable the banner.
$ sudo /opt/bitnami/apps/wordpress/bnconfig --disable_banner 1
After disabling the banner, restart the server again.
$ sudo /opt/bitnami/ctlscript.sh restart
Step 2: Hide the banner using custom CSS
You can hide the Bitnami banner page using custom CSS. Add the following line to the custom CSS field.
$ bitnami-banner {display:none;}
Conclusion
By following this article, remove Bitnami Banner from WordPress. Share this article, if you like it.