BuddyBoss Home – Web › Support Forums › Themes › BuddyBoss theme › how to remove logo from log in page
- This topic has 8 replies, 4 contibutors, and was last updated 10 years ago by Alyssa.
Question
October 22, 2014 at 5:33 pm #32821@tmg2014Is there a way to make the logo not show up on the login page? Or a way to add a separate one just for that? Mine looks all goofy because of the size
Answers
October 23, 2014 at 7:07 am #32828@tmg2014Still having some problems if anyone is out there! I downloaded Filezilla but I’m really not sure what I’m looking for. I read in another thread its line 86? but they aren’t number and I dont’t have that many lines on the log in htp code if I’m pulling up the right window. Is there any way to do it from the dashboard? Is filezilla what I should be using? I have a dell laptop.
October 23, 2014 at 11:14 am #32834@george123Just limit the size via css or use css to “display: none;” for the element
October 23, 2014 at 12:53 pm #32841@alyssa-buddyboss
AlyssaParticipant@tmg2014 try adding this to your functions.php file of the child theme:
add_action('login_enqueue_scripts','hide_logo'); function hide_logo(){ echo '<style> #login h1{display:none;} </style>'; }
@george123 FYI custom.css is not loaded on the login pageOctober 23, 2014 at 1:47 pm #32865@tmg2014Is there a video anywhere on uploading a child theme? I watched Michael’s on youtube and they were very helpful. He mentioned doing one but I can’t find it.
October 23, 2014 at 2:06 pm #32866@tmg2014Where do I find the prepackaged child theme?
October 23, 2014 at 2:13 pm #32868@style960@tmg2014 When logged into this site go to https://www.buddyboss.com/my-account/ or click My Downloads from the header menu. You can download the child theme from there, install from the WordPress dashboard in the same way you installed the BuddyBoss theme.
October 24, 2014 at 11:10 am #32893@tmg2014I got the child theme all happy and running. I added the text and it removed the logo but now this text shows up on every page
add_action(‘login_enqueue_scripts’,’hide_logo’); function hide_logo(){ echo ”; }
October 24, 2014 at 9:25 pm #32916
- The question ‘how to remove logo from log in page’ is closed to new replies.