Hi there, there is a few really valuable WooCommerce plugins (WooCommerce Subscriptions, and WooCommerce Memberships).
These are premium plugins valued at around $200 however they give you the ability to create hidden pages in WP only to be accessed by certain users (in your case people who sign up for the chosen area report).
[removed by moderator in accordance with forum rules]
Thread Starter
s1865
(@s1865)
Thanks for your response, tysonadams!
The full area report appears on Google. Is there a way to hide the full area report WordPress pages from search engines results?
Thread Starter
s1865
(@s1865)
Thanks tysonadams! We have reviewed the two links.
We have hidden the full area report pages from the WordPress search using the following coding:
function SearchFilter($query) {
if ($query->is_search) {
$query->set(‘cat’,’0,1′);
}
return $query;
}
add_filter(‘pre_get_posts’,’SearchFilter’);
We edited the page id to suit our needs.
We are using WordPress SE0 By Yoast. We have modified the settings to tell robots not to index the page or follow any links on the page and also made sure that the page isn’t listed in the sitemap.
But the full area report is still appearing on Google search results. Is there an alternative way?
The other option suggested on the second link was the Search Everything plugin but this plug-in hides specified pages from the internal search (the search box on each page) which we have already done but it doesn’t seem to affect a Google search.
Any suggestions/advice to hide specific WordPress pages on search engines results?
Hmm… I found this article, it may be out of date since it was from 2008, but I found some interesting tactics to do what you are trying to do here:
https://moz.com/blog/12-ways-to-keep-your-content-hidden-from-the-search-engines
I noticed specifically this section of the article
Forcing Form Submission
Search engines will not submit HTML forms to attempt an access of the information retrieved from a search or submission. Thus, if you keep content behind a forced-form submission and never link to it externally, your content will remain out of the engines
Edit: I also found this article which is more up to date and WordPress specific
http://www.15minutemondays.com/2015/04/06/how-to-hide-pages-from-search-listings-in-wordpress/