William
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Hiding page title on twentyeleven theme.no problemo …
go into text of your page element and add whatever heading you prefer over the page name. you would place it on first line. the issue is not to use page name for the title, correct? this will get it done.
<h1>This is my page</h1>
NOTE: do this while in HTML edit mode.
this had been explained previously..
BTW .. this thread title is how to hide page title
it should be how to remove page name from title and use preferred custom title
Forum: Themes and Templates
In reply to: Hiding page title on twentyeleven theme.This is entry into CSS Override Editor to effect current page title ONLY
.page-id-7 .entry-title
{
display: none;
}that should do it
Forum: Themes and Templates
In reply to: Hiding page title on twentyeleven theme.if you are that concerned about it..
edit your page, go into HTML mode and put in your own title, but this time it can be anything that you want.
<h1>My Page Heading</h1> or choose not to have a page title. no need to edit your PHP code anyplace in your theme
NOTE: I like to use H2 tag instead of H1
That is why you want to remove default page title in first place, correct?
what better solution can there be??? LOL
Forum: Themes and Templates
In reply to: Hiding page title on twentyeleven theme.another alternative would be to create a child theme for performing your customizations. only file required in child theme is the style.css which would totally overwrite the style.css of parent theme without having to make any physical changes to it.
Forum: Themes and Templates
In reply to: Hiding page title on twentyeleven theme.open up page source in your web browser. Look for something like this:
<article id="post-2" class="post-2 page type-page status-publish hentry">This is entry into CSS Override Editor to effect current page title ONLY
.post-2 .entry-title { display: none; }regards,
WilliamForum: Themes and Templates
In reply to: Hiding page title on twentyeleven theme.1. Download and install companion plugin
2. in your dashboard, go to appearance -> companion
3. this will bring up CSS Override Editor
4. enter the following code and save:.entry-title
{
display: none !important;
}WORKS FOR ME .. I would rather use this process … updates will not overwrite my custom CSS. ~peace
Forum: Fixing WordPress
In reply to: How do I remove the title in the header?in my admin panel… Blog Title designates the title, and tagline is used for the description.
look for <div id = “logo” in the header.php file. That block of code identifies that the title and description is to be displayed in your header area.
this allows you to utilize the wordpress admin control panel to edit/update this info.
also, take a look at your style.css file to find the #header #logo code block. this will give you specific info as to how title and description is to be displayed
HINT: make one change at a time.. also, when altering PHP code, comment out the code that you want to change in order to save, then enter altered code. you can always go back if you do not like your results.
regards,
WilliamForum: Themes and Templates
In reply to: remove title of the pageI choose to remove page name from all pages… then I can choose exact text and formatting as I prefer. I look for the following code in the page.php file and simply comment it out.
<!– Commented out
<h2 class=”topTitle”>”><?php the_title(); ?></h2>
–>I hope that this helps.
regards,
WilliamForum: Fixing WordPress
In reply to: How to hide or replace the page name?I choose to remove page name from all pages… then I can choose exact text and formatting as I prefer. I look for the following code in the page.php file and simply comment it out.
<!– Commented out
<h2 class=”topTitle”>”><?php the_title(); ?></h2>
–>I hope that this helps.
regards,
WilliamForum: Fixing WordPress
In reply to: How do I remove the page name in some pagesI choose to remove page name from all pages… then I can choose exact text and formatting as I prefer. I look for the following code in the page.php file and simply comment it out.
<!– Commented out
<h2 class=”topTitle”>“><?php the_title(); ?></h2>
–>I hope that this helps.
regards,
WilliamForum: Fixing WordPress
In reply to: posting via e-mail — POP3 quit: connection does not existI am utilizing Yahoo! Webhosting… after lengthy search on Yahoo! technical side, it was determined that problem was in the fact that I could not access mail processes on the mail server.. my webspace is on separate server from mail processes.
I do not see the logic in that response. WordPress is acting like email client when it is trying to hit the pop3 server for mail. what am I missing here???? anyone else have experience with this problem while using Yahoo! Webhosting?