Go Back   WarriorForum - Internet Marketing Forums > Warrior Support Forums > Website Design
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 06-15-2009, 02:16 PM   #1
I Get Mine, Got Yours?
War Room Member
 
GoGetta's Avatar
 
Join Date: Dec 2007
Location: United Kingdom.
Posts: 1,685
Blog Entries: 6
Thanks: 363
Thanked 505 Times in 197 Posts
Social Networking View Member's Twitter Profile 
Default Wordpress Pages Help

Hi Guys,

Howw do you hide a published page?

I have an order confirmation page on a site of mine and I want to hide it from navigation but be published so when an order is made, it will forward the buyer to this page!

How do you hide a published page?

GoGetta

GoGetta is offline   Reply With Quote
Old 06-15-2009, 02:33 PM   #2
Don't Just Sit There!
 
pjCheviot's Avatar
 
Join Date: Jan 2009
Location: NE UK
Posts: 748
Thanks: 498
Thanked 231 Times in 208 Posts
Social Networking View Member's Twitter Profile  View Member's YouTube Profile
Default Re: Wordpress Pages Help

Hi GoGetta

Take a look at this explanation How To Hide A Wordpress Page | Silly Blogger

or I also use this plugin

http://wordpress.org/extend/plugins/wp-low-profiler/


"I started out with nothing and I've still got most of it left!"

Fellow Warrior KimW needs our help

pjCheviot is offline   Reply With Quote
Old 06-15-2009, 03:06 PM   #3
Wasim
War Room Member
 
Join Date: Nov 2008
Posts: 88
Thanks: 30
Thanked 10 Times in 9 Posts
Contact Info
Send a message via Skype™ to Wasim
Default Re: Wordpress Pages Help

The way I managed to do it was to visit one of my already visible published pages on my wp blog > right click > view source

I then select ALL the code > right click > copy and then paste it into a new document in Dreamweaver. Save it as 'what-ever name'.

Dreamweaver allows me to view the code AND see what the page will look like.
I can then see the page design. I then select and delete the parts I don't want and publish the page through Dreamweavers own built in ftp.

I did it with a few pages and they look ok.
Take a look at this one: http://wasims.com/shop-books.html where I did not want the side bars showing but wanted the whole width to be used by the content.

The cool thing about this is that this page cannot be navigated to through by blog, only if I specifically give the link to someone. It's really cool for promoting pages or products and having 'thank you' pages for each different product. (I haven't done it for that yet but I would imagine that to be a very good use for it.)
Wasim is offline   Reply With Quote
Old 06-15-2009, 04:10 PM   #4
I Get Mine, Got Yours?
War Room Member
 
GoGetta's Avatar
 
Join Date: Dec 2007
Location: United Kingdom.
Posts: 1,685
Blog Entries: 6
Thanks: 363
Thanked 505 Times in 197 Posts
Social Networking View Member's Twitter Profile 
Default Re: Wordpress Pages Help

That plugin did the trick, Thanks!

GoGetta

GoGetta is offline   Reply With Quote
Old 06-15-2009, 07:33 PM   #5
HyperActive Warrior
War Room Member
 
Join Date: Oct 2002
Posts: 360
Thanks: 112
Thanked 48 Times in 39 Posts
Default Re: Wordpress Pages Help

Quote:
Originally Posted by GoGetta View Post
I have an order confirmation page on a site of mine and I want to hide it from navigation but be published so when an order is made, it will forward the buyer to this page!
Quote:
Originally Posted by GoGetta View Post
That plugin did the trick, Thanks!
If you are referring to the "WP low Profiler" plugin, you should be aware that it does not hide completely the page and search engines can still find it. From the plugin page:
Quote:
In every other place on your WordPress blog, like in the archives, the sitemap, or directly via permalinks, the post will appear as normal. Search engines will also be able to find it since the archive link is always there.
So, there's a great possibility for that page to be indexed and shown in the search engines.

If you want to really hide it, I find the Wasim's solution (above) a better approach - sure it's some more work, but the page is more protected. An addition to Wasim's solution I would add to the source of that page a "NOINDEX,NOFOLLOW" meta tag in the "head" section just to make sure SEs don't index it:
Code:
<meta name="robots" content="NOINDEX,NOFOLLOW">
Carlos
CMartin is offline   Reply With Quote
Old 06-15-2009, 09:47 PM   #6
Wasim
War Room Member
 
Join Date: Nov 2008
Posts: 88
Thanks: 30
Thanked 10 Times in 9 Posts
Contact Info
Send a message via Skype™ to Wasim
Default Re: Wordpress Pages Help

CMartin, that's a handy bit of code there. I'll definately be using that in the future. Thanks for posting that.
Wasim is offline   Reply With Quote
Old 06-16-2009, 01:35 AM   #7
Web Designer | Developer
 
webdesignservice's Avatar
 
Join Date: Apr 2009
Location: 117 N Cooper St.,Olathe KS, USA
Posts: 90
Thanks: 7
Thanked 3 Times in 3 Posts
Default Re: Wordpress Pages Help

Glad to hear you solve your problem GoGetta.

WP low Profiler is really a great Plugin

This plugin allows you to control the visibility of a post in three different views the homepage, the Category page as well as the
feeds.

webdesignservice is offline   Reply With Quote
Old 06-16-2009, 02:27 AM   #8
Don't Just Sit There!
 
pjCheviot's Avatar
 
Join Date: Jan 2009
Location: NE UK
Posts: 748
Thanks: 498
Thanked 231 Times in 208 Posts
Social Networking View Member's Twitter Profile  View Member's YouTube Profile
Default Re: Wordpress Pages Help

Carlos

The aim of the OP was to hide a page from navigation - and the plugin and blog instructions each do that.

Remember ANY page can be found and indexed - so your "no index, no follow" would apply to any page which needs to be hidden from search engines, not just ones hidden by the methods given (even Wasim's). Also some robots will ignore a meta tag.


"I started out with nothing and I've still got most of it left!"

Fellow Warrior KimW needs our help

pjCheviot is offline   Reply With Quote
Old 06-16-2009, 03:03 PM   #9
Senior Warrior Member
War Room Member
 
Karen Blundell's Avatar
 
Join Date: Jul 2008
Location: Niagara Region, Canada
Posts: 1,103
Thanks: 1,452
Thanked 408 Times in 318 Posts
Social Networking View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Karen Blundell
Default Re: Wordpress Pages Help

I use the plugin pageMash to hide my pages. It works perfectly.

Karen Blundell is offline   Reply With Quote
Old 06-16-2009, 11:09 PM   #10
HyperActive Warrior
War Room Member
 
Join Date: Oct 2002
Posts: 360
Thanks: 112
Thanked 48 Times in 39 Posts
Default Re: Wordpress Pages Help

Quote:
Originally Posted by pjCheviot View Post
The aim of the OP was to hide a page from navigation - and the plugin and blog instructions each do that.
But a very special page
From the OP: "I have an order confirmation page on a site of mine and I want to hide it from navigation but be published so when an order is made, it will forward the buyer to this page!"
Without knowing what is the page content, from my understanding this is a "Thank You" page where the OP might have links to download the product or a form to subscribe in order to get the product.

So, these kind of pages, "Thank You" pages, should be protected/hidden from search engines and the solution implemented by the OP (using the "WP low Profiler" plugin) does not give him this kind of protection, thus my post alerting him for this fact.

Quote:
Remember ANY page can be found and indexed
I don't agree! I have many pages that were never found and thus indexed by search engines, not even by the "bad" robots. It always depends on the way you protect those pages.

Quote:
so your "no index, no follow" would apply to any page which needs to be hidden from search engines, not just ones hidden by the methods given (even Wasim's).
Correct.

Quote:
Also some robots will ignore a meta tag.
Sure... by the "bad" robots. As the robots meta tag is a standard, it's expected that most of the search engine robots respects this tag and from my experience the major SEs respect it.

But remember that SEs' robots find pages by following links/URLs. So, if you don't have any links pointing to a specific page, then it cannot be found. Off course that if a *bad* customer publishes a link to a "Thank You" page, then that page can also be found by robots and get indexed... so, the use of the robots "noindex" meta tag can help.

The "bad" robots can find pages by using brute force attacks, but usually these "bad" robots (or malware robots) are not looking for "thank you" pages, but for specific pages that have bugs and allows them to do whatever they are looking for.

Carlos
CMartin is offline   Reply With Quote
Old 06-17-2009, 02:57 AM   #11
Enthusiastic Warrior
War Room Member
 
takingaction's Avatar
 
Join Date: Mar 2008
Location: New York, NY, USA.
Posts: 92
Thanks: 24
Thanked 18 Times in 18 Posts
Social Networking View Member's Twitter Profile  View Member's YouTube Profile
Default Re: Wordpress Pages Help

There are download protection scripts that require the visitor to come from a certain location (ie payment processor) in order to see the download page content. Therefore, even if a download page was indexed in the search engines, it would not reveal any content if it was visited directly.

Would such a script work in WordPress?

takingaction is offline   Reply With Quote
Old 06-17-2009, 03:27 AM   #12
WP Queen
War Room Member
 
Leanne King's Avatar
 
Join Date: Aug 2007
Location: Sydney , Australia
Posts: 1,105
Thanks: 9
Thanked 198 Times in 132 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Leanne King
Default Re: Wordpress Pages Help

Glad you found the solution to hide your page but you also need to no index it - quick way - install platinum seo and check the box to no index no follow on that page.

Leanne King is offline   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > Warrior Support Forums > Website Design

Tags
pages, wordpress

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 07:35 AM.