Myntekt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can you remove the black bar once a user had logged in?I’ve used that website for HTML and CSS, and some jQuery but I don’t remember much of that. I plan on learning PHP soon.
Forum: Fixing WordPress
In reply to: Can you remove the black bar once a user had logged in?That makes sense. The ‘!’ means the opposite of what is written after it, right?
Forum: Fixing WordPress
In reply to: Can you remove the black bar once a user had logged in?For those wondering, this code disables it for everyone but admins:
add_action('after_setup_theme', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } }and this disables it for everyone
show_admin_bar(false);Forum: Fixing WordPress
In reply to: Can you remove the black bar once a user had logged in?Well I guess I could have googled that but I didn’t know its name. I’m new to wordpress and there is a lot that I don’t know. Thanks
Forum: Fixing WordPress
In reply to: Can you remove the black bar once a user had logged in?Yup I think that is it
Forum: Fixing WordPress
In reply to: Login/Logout button on menuHm.. ok
Forum: Fixing WordPress
In reply to: Login/Logout button on menuJust another thing. I don’t know PHP but I do somewhat get what is happening in the code. I don’t understand what the 10,2 thing is. Could you explain that if it isn’t too complicated?
Forum: Fixing WordPress
In reply to: Login/Logout button on menuThat worked. Thank you 🙂
Forum: Fixing WordPress
In reply to: Getting spammed with new accounts with nothing on the siteDo you recommend any of those plugins specifically?
huh.. I know about css. And html too. The thing is, I want to run a script that changes all the elements with the color red (which I don’t know the name of, since the parent theme has a lot of them) to the color blue. This could be done one by one but it would take a lot of time to do and to discover all the ID’s/classes.
The theme is Zerif lite
Forum: Fixing WordPress
In reply to: Creating a child theme modifies the looks of without any changesHey, by the way. I know that this is kind of offtopic, but is there an easy way of finding out what I have to add in the css to change something? For example, how do I find the element that cointains the “Home” title?
Thanks againForum: Fixing WordPress
In reply to: Creating a child theme modifies the looks of without any changesYeah, got it. It’s working. Thanks a lot really!
Forum: Fixing WordPress
In reply to: Creating a child theme modifies the looks of without any changesWell, that actually made a lot of sense. I understand the rules of CSS but didn’t really think of that before. I’ll try it out. Just to confirm, I need to remove what I have on my php file and put in what you sent here, right? I don’t know anything about php so I didn’t quite understand what you did there.
Forum: Fixing WordPress
In reply to: Creating a child theme modifies the looks of without any changesDid you see what I pasted? http://imgur.com/92i8jrc,xheS2Dg#0 That’s how it looks. Basically what you said. Black/smaller header, logo is bugged out and the post title loses the bold thing. I think that is a valid reason to say it isn’t working as it should..