GeoDirectory SupportTitle not in title bar on listings page. Twice on details page – GeoDirectory Support https://wpgeodirectory.com/support/topic/title-not-in-title-bar-on-listings-page-twice-on-details-page/feed Sun, 12 Apr 2026 20:24:41 +0000 http://bbpress.org/?v=2.5.14-6684 en-US https://wpgeodirectory.com/support/topic/title-not-in-title-bar-on-listings-page-twice-on-details-page/#post-41440 <![CDATA[Title not in title bar on listings page. Twice on details page]]> https://wpgeodirectory.com/support/topic/title-not-in-title-bar-on-listings-page-twice-on-details-page/#post-41440 Wed, 03 Jun 2015 18:50:11 +0000 Josh Elledge Check out the attached pictures.

I’d like the title to appear in the title bar for listing pages. Currently, you’ll see the bar is blank – although this doesn’t happen anywhere else.

Also – on the detail page, it appears twice which is unnecessary. Once in the title bar – and once in the content area.

]]>
https://wpgeodirectory.com/support/topic/title-not-in-title-bar-on-listings-page-twice-on-details-page/#post-41476 <![CDATA[Reply To: Title not in title bar on listings page. Twice on details page]]> https://wpgeodirectory.com/support/topic/title-not-in-title-bar-on-listings-page-twice-on-details-page/#post-41476 Wed, 03 Jun 2015 21:57:23 +0000 Simone Hello Josh, this is happening due to your theme’s settings , it is displaying the post/page title in the bar, and so it is duplicating the title in the detail page.
You can hide the duplicated title adding the following in your style.css (inside your child theme’s folder)


h1.entry-title.fn {
display:none;
}
]]>
https://wpgeodirectory.com/support/topic/title-not-in-title-bar-on-listings-page-twice-on-details-page/#post-41498 <![CDATA[Reply To: Title not in title bar on listings page. Twice on details page]]> https://wpgeodirectory.com/support/topic/title-not-in-title-bar-on-listings-page-twice-on-details-page/#post-41498 Thu, 04 Jun 2015 00:51:03 +0000 Josh Elledge Perfect. Any ideas on the title bar on the listing & search results pages?

]]>
https://wpgeodirectory.com/support/topic/title-not-in-title-bar-on-listings-page-twice-on-details-page/#post-41518 <![CDATA[Reply To: Title not in title bar on listings page. Twice on details page]]> https://wpgeodirectory.com/support/topic/title-not-in-title-bar-on-listings-page-twice-on-details-page/#post-41518 Thu, 04 Jun 2015 10:24:16 +0000 Simone The title is missing in those pages because maybe your theme does not recognize them as real “pages” and it doesn’t see the title they have.

Technically speaking, these are like “templates” and they output the title using the wordpress function

<?php the_title(); ?>
]]>