cbilgen
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Ryu] How to remove "Home" from nav bar***only when @HomeThanks again!
Forum: Themes and Templates
In reply to: [Ryu] How to remove "Home" from nav bar***only when @HomeGot it, just had to delete the
</div
parts.Forum: Themes and Templates
In reply to: [Ryu] How to remove "Home" from nav bar***only when @HomeAlso, is there a way to remove the footer? I removed the text content of the footer but I’d like to get rid of the divider/extra space as well. I tried deleting the footer content completely but it messed up my search bar at the top of my site.
Any suggestions?Forum: Themes and Templates
In reply to: [Ryu] How to remove "Home" from nav bar***only when @HomeAwesome- thanks esmi!
Forum: Themes and Templates
In reply to: [Ryu] How to remove "Home" from nav bar***only when @HomeWow so simple! Worked great, thanks alot for the help everyone.
Also, would you happen to know how I can hide the “Home” page title that shows up at the bottom of the home page as well?
Forum: Themes and Templates
In reply to: [Ryu] How to remove "Home" from nav bar***only when @HomeForgive my incompetence with code, but where does
.home.page .menu-item-42 { display:none; }
go?Forum: Themes and Templates
In reply to: [Ryu] How to remove "Home" from nav bar***only when @HomeOk fixed that, but my Home button is still there…
here is my functions.php in my child theme:<?php function my_show_home( $args ) { $args['show_home'] = false; return $args; } add_filter( 'wp_page_menu_args', 'my_show_home' ); ?>
Is something wrong?
Forum: Themes and Templates
In reply to: [Ryu] How to remove "Home" from nav bar***only when @HomeAhh ok that is good to know. Now though, I put the code in the child theme’s functions.php and the code itself shows up at the top of my website…
Forum: Themes and Templates
In reply to: [Ryu] How to remove "Home" from nav bar***only when @HomeI am still unfortunately not seeing any change. Also, I just noticed I had moved(instead of copied) the functions.php from my parent to the child theme. and when I try to replace it/re-copy it back, my site goes blank…could this have something to do with why it is not working?
Forum: Themes and Templates
In reply to: [Ryu] How to remove "Home" from nav bar***only when @HomeHmm, I must be doing something wrong because it is not changing anything…Does that code just go anywhere in the functions.php file?
Forum: Fixing WordPress
In reply to: How to remove "Home" from navigation***only when @Homeright, thanks!