gazella
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Delete Forum Post with Private Info on It..showing on GooglePlease remove that forum post!
Forum: Themes and Templates
In reply to: [Attitude] How to remove the "|" on the title?Nvm.
Added this:
<title><?php wp_title(”); ?></title>Forum: Themes and Templates
In reply to: [Attitude] How to remove the "|" on the title?Thanks!
But I am thinking more of a script instead of a plugin.
I’m using another SEO plugin already.Forum: Themes and Templates
In reply to: [Attitude] Add search to menu barI’m not an expert at this stuff…
However I did get it to work on my own site: https://jl-gazelle.com
I have this under Appearance >> Theme Options>> Edit CSS:
.menu-item.menu-item-search { float:right; width:200px; }
.menu-search-form { float:right; padding-top:35px; width:250px; }
.menu-search-form { width:auto; }
.menu-search-form #s { background:#000000; border:1px solid #252226; font-size:10px; color:#f8f5f9; margin:0 1px 0 0; padding:1px; width:160px; float:left; }And I have this added on my functions.php:
function add_search_to_wp_menu ( $items, $args ) {
if( ‘primary’ === $args -> theme_location ) {
$items .= ‘<li class=”menu-item menu-item-search”>’;
$items .= ‘<form method=”get” class=”menu-search-form” action=”‘ . get_bloginfo(‘home’) . ‘/”><p><input class=”text_input” type=”text” value=”Search” name=”s” id=”s” onfocus=”if (this.value == \’Search\’) {this.value = \’\’;}” onblur=”if (this.value == \’\’) {this.value = \’Search\’;}” /></p></form>’;
$items .= ”;
}
return $items;
}
add_filter(‘wp_nav_menu_items’,’add_search_to_wp_menu’,10,2);… My search form is very simple.
You can play with the numbers and colors to adjust to your liking.
If you google “WordPress search on menu”… there are a lot of blogs that show you how to have a fancier search form.Forum: Themes and Templates
In reply to: [Attitude] Not Showing Full-Post & how to change Summary lengthThe Featured Slider is also showing on my Daily page.
I want the featured slider only on the homepage. Is there a way to disable it on my Daily page, and have my Daily page show Blog Full Content…
It’s at the Blog Full Content Display template already.
Forum: Themes and Templates
In reply to: [Attitude] Not Showing Full-Post & how to change Summary lengthSo the Blog Full Content Display can only work on Posts but not the main page? Am I correct?
Once I added the Feature Slider, the ‘Blog Full Content Display’ for my “Daily” page doesn’t work anymore, and won’t show full content even after I switched to the Blog Full Content Display template.
I’ve unchecked the Allow Comments in my Discussion section, Media section, and on the individual media file section too and it still has a “Leave A Reply” on the attachment page.
Forum: Themes and Templates
In reply to: [Attitude] Logo Header Not ShowingThank you all!
I’m learning more from your posts.I changed the image to a .gif and it worked! ??
WPyogi –
I’ve changed my hover colour on the theme’s style.css already.I’m trying to figure out how to do the child theme… I’ve gotten as far as downloading Cyberduck and making the child theme folder.
Forum: Themes and Templates
In reply to: [Attitude] Logo Header Not ShowingOh. Thank you for you reply.
Do you know which code I must change in the Editor > style.css?