Comment on Talian 5 WordPress SEO Theme by SEO Dave.
The page issue is a problem with many themes, I think the general idea of WordPress as a blogging platform is to create a small number of the static Pages and the rest are blog posts, so as themes are created the Page issue with header navigation bars are over looked. Not a problem with themes that lack the header navigation menu.
Two solutions, don’t add more than a few pages :)
Or add a little code to your header to limit the number of pages shown on the navigation bar.
The latter is achieved as follows.
Load your header.php file in a text editor or the WordPress theme editor.
find
<?php wp_list_pages('title_li=&depth=1'); ?>
and change to
<?php wp_list_pages('include=1,2,3,7&title_li=&depth=1'); ?>
The include part of this determines which pages to show.
So if you just had
include=1
It would only list the 1st page created which is the About page I think.
To create your list you need to either go into your Dashboard and under Pages/Edit on the menu hover over the Title of a Page you want listed and read it’s post number, my sitemap for example is post=17 and looks like this when hovered over-
.co.uk/wp-admin/page.php?action=edit&post=17
So it’s the number 17 I was looking for.
Take these numbers and plug them into your include list, save and upload.
So if I wanted the About page (1) and the Sitemap (17) for this site only it would look like this-
<?php wp_list_pages('include=1,17&title_li=&depth=1'); ?>
Save your header.php file and upload if you worked offline.
Should then only show the Pages you determine.
To list the rest of the pages you’ll need to use the sidebar menu called Pages, (yours is already on your menu) which is already listed if you don’t use widgets, if you use Widgets you’ll need to add it if you haven’t already done so.
I’d like to add this to the theme, but it’s one of those fiddly code things a lot of users aren’t comfortable with. Best I could do is include the depth=1 code which means sub-pages aren’t displayed on the header navigation menu.
David Law
More Comments by SEO Dave
WordPress SEO Ad Theme
WordPress Adsense Theme Menu
Probably not enough details to determine what’s wrong.
When others had issues with the Talian 5 theme menu it was either they had too many static Pages added to their menu or broken HTML code in a post.
There’s a lot of …
Continue Reading Talian 5 Theme
WordPress SEO Ad Theme
Mobile Responsive WordPress Themes
Mobile responsive features is on the list of things to improve support for.
David …
Continue Reading Talian 5 Theme
WordPress SEO Ad Theme
How to Make WordPress Theme Customizations
If you mean pointing you in the right direction to achieve something like how do I make the text bigger or a different colour, generally yes (within reason).
If you mean make major code changes and help you with the code …
Continue Reading Talian 5 Theme
WordPress SEO Ad Theme
AdSense Ads vs Clickbank Ads
Yes you can use Clickbank ads instead of AdSense ads with Talian, both are built into Talian.
There isn’t a membership section to this website, so no way to login, guess you are confusing this site for another one.
David …
Continue Reading Talian 5 Theme
WordPress SEO Ad Theme
Talian WordPress SEO Theme Update
Talian 5 is over due an update.
Talian 5 works with WordPress 3.3.1, one minor CSS Talian options page issue, the footer isn’t placed correctly when you load the Talian options page, has no impact on the site (plan to fix …
Continue Reading Talian 5 Theme
WordPress SEO Ad Theme
Best WordPress SEO Theme Update
If you have Talian 5 you have the latest version. Working on an update now and it’s a major update, so warrants a version 6 :-)
Also going to rename the theme (for branding reasons) and work on different looks that …
Continue Reading Talian 5 Theme
WordPress SEO Ad Theme
WordPress Theme Home Page Menu Link
As you are running Talian 05 it’s easy to achieve through the Talian options menu.
Find the setting “Home Page Link On/Off”
Tick the “Home Navigation Link OFF” radio button and “Save Options”.
That will remove the home page link on the navigation …
Continue Reading Talian 5 Theme
WordPress SEO Ad Theme
Talian WordPress Theme Code Validates
Yes the Talian themes HTML code validates, as you can see from my site you linked to it validates.
If you look at the site you are on now you’ll see there’s validation errors related to the Twitter Updates menu item. …
Continue Reading Talian 5 Theme
WordPress SEO Ad Theme
WordPress Plugin Breaking Comments
The theme comment system works fine on my sites, I’ve got around 15,000 comments on my sites. No other customer has reported a similar issue.
I tried to post a comment and looks like it didn’t work.
When I load …
Continue Reading Talian 5 Theme
WordPress SEO Ad Theme
Why is My Credit Cards Declined Online?
I only take payments through PayPal and not had this issue reported before, PayPal takes payments from Canada and the US MasterCard’s.
Might just be a particular debit/credit card you are using they don’t like. I’ve had this issue myself a …
Continue Reading Talian 5 Theme
WordPress SEO Ad Theme
Creating Niche Banner Images
Changing the banners is easy, I include instructions with the theme how to change the banners to your own images and how to change the number of images as well.
My wife struggles with computers, but made the banners for multiple …
Continue Reading Talian 5 Theme
WordPress SEO Ad Theme
WordPress Exclude Pages From Navigation Menu
I use option 2 Mark.
If you load the header.php file into a text editor and find:
wp_list_pages(‘sort_column=menu_order&title_li=&depth=1&exclude=’)
The exclude= bit can be used to exclude pages from the top navigation menu.
You read of the Page IDs from the edit page section under …
Continue Reading Talian 5 Theme