Should We Use an SEO Plugin?
This topic contains 33 replies, has 13 voices, and was last updated by Paolo 8 years, 11 months ago.
We have moved to a support ticketing system and our forums are now closed.
Open Support TicketTagged: all in one seo, SEO, yoast
-
AuthorPosts
-
August 12, 2014 at 7:04 am #11714
Hi Manish,
In response to your last remark:
It’s ok if page A contains a few listings that also can be found on page B, as page A and B function as an overview page that contains links to the individual listings. Google understands it’s an overview page. Ebay, YellowPages, etc have it the same way.If both overview pages contain exactly the same listings, than it doesn’t make sense to offer these 2 pages to Google nor the user and de-indexing one would make sense.
Having e.g. 2 detail pages about the same business that contain exactly the same content would cause duplicate issues.
I guess you have more locations than just Jaipur. This would mean that jaipur/hotels and places/hotels don’t contain the same listings (whereas places/hotels contains all hotels and jaipur/hotels only those for Jaipur).
Tip: check your Google Webmaster Tools and run a free scan from ISS SEO tookit (from Microsoft)
August 12, 2014 at 11:37 am #11744Hi bonzoren
Thanks for response. I understand what u explain. I exactly wanted to say the same thing that jaipur/hotels page should display the listings for jaipur only but it displays listing for all locations if you enter this url places/usa/newyork/newyork/hotels direct in browser address bar it will display all hotels, the same result of places/hotels.
if you visit the location page and select your newyork then places/hotels and newyork/hotels both display the hotels in newyork.
It stores location in session variables thats why the hotels category in all location show the same listings
when a bot crawls it index places/hotels as it is in sitemap.xml
now when bot crawls the location page it find links to places/usa/newyork/newyork/hotels in popular category widget
if it index this page the output was the duplicate content of places/hotels/
It means lots of duplticate pagesAugust 13, 2014 at 12:52 pm #11872i want to show this bug in geodirectory with this example
Open the demo site of wpgeo.directory and change the location from location switcher to australia -> new south wales -> Millers point
visit 4 star category in Hotels post type with this url which i bookmarked (http://wpgeo.directory/hotels/millers-point/4-stars/) in new tab)
Note: don’t close the browser
you find one hotel Heidelberg which is listed in this city in 4 stars category
Now close the browser and reopen and now paste this url (http://wpgeo.directory/hotels/millers-point/4-stars/) again
Note: dont open demo site first, paste this url in address bar
it will show you all hotels listed in 4 star category for a short span, till it redirect to the location nearest you. if the makers of geodirectory plugin disable the auto detection of user location they can find this bug.
i want to say if any user bookmarked a url for any category for easily access to visit that listings later and when he/she opens this site with bookmarked link and find all results instead of that specific location then what is the sense.
August 21, 2014 at 7:31 pm #12754Hi all,
Thanks for the trick of the location.
I used it for my post to build a title like that :
%CPT% %Title% in %Current_Location%I would like to put City in Archive now but I don’t know how to do.
Do you use Post Type or Taxonomy for that ?
Where do you insert the current_location tag ?The best solution for SEO would be to have the following titles :
All the Hostels
http://website.com/hostel/All the Hostels in France
http://website.com/hostel/france/All the Hostels in France at Paris
http://website.com/hostel/france/paris/paris/Is it possible to do that ?
August 22, 2014 at 1:12 am #12817Hi Manish, I believe the latest version has fixed this, I can’t find a way to generate the link that you have saved, the link is now…
http://wpgeo.directory/hotels/australia/new-south-wales/millers-point/4-stars/
August 24, 2014 at 4:37 pm #12986Yes It is fixed now. Thanks WPgeo team
September 15, 2014 at 5:16 pm #15464This is a great addition. One thing I’ve noticed though is when I got to a category or subcategory page without a location specified, e.g., Restaurants at the http://www.example.com/restaurants/, looks like the default location gets pulled into the title tag, same as if you were viewing that page with a location explicitly set.
Would like to see that not included, or better, have a default setting. Since all my locations are within a county designation, I’d default all to “Restaurants – Some County | SiteName” and specific locations would then take on their location, “Restaurants – MyCity – MyRegion | SiteName”
Unfortunately, I’m not sure how to modify the code to get that.
cheers
September 15, 2014 at 11:23 pm #15501Maybe I misunderstand Brian, but I’m not seeing that?
<title>Restaurants » GeoDirectory Demo</title>
from Restaurants on the demo site?
September 15, 2014 at 11:57 pm #15504This is based on the Yoast SEO plugin and the additional code for pulling in location details, so probably doesn’t show up on the demo at all.
September 16, 2014 at 4:18 pm #15574Hi brian, if you are using functions provided by “vertuscraig” the location in title of category is pulled from the last added listing in that category. If the location for recent listing added in category is Delhi, then Delhi is shown in title tag.
Try the function i provided in page 1 of this thread. https://wpgeodirectory.com/support/topic/should-we-use-an-seo-plugin/
September 16, 2014 at 5:54 pm #15600September 27, 2014 at 6:35 pm #16738I am using the Seo Yoast plugin and want to customize the text in title bar for location home page template, i can edit the title for custom post type archives and category pages but unable to change the title for location pages. anyone have idea hot to change them according to location. currently It is appearing the same title for every location page.
/location/
/location/india/rajasthan/jaipur/
/location/india/maharashtra/mumbai/every page outputs the same title location-sitename
if we set geodirectory home page as website homepage and want to show normal posts in blog page. Title for website home page and blog page is same.
Please if anyone using seo yoast with geodirectory and noticed these things and have any idea to solve it. update me. Thanks
November 19, 2015 at 5:51 pm #60891I’ve got a problem with this that I hope someone can help me with.
In the list view where listings from multiple cities are displayed, the %%current_location%% value is including the first city listed in the title for Yoast.
How can we we have it just use the region for list/search?
ex:
http://www.rinktime.com/rinks/tags/united-states/california/adult-ice-hockey-tournaments/%%current_location%% should just be “California” instead of “Santa Rosa California”
Thoughts? Thanks in advance.
Here’s the code I’m currently using:
// Add location info to yoast titles start function retrieve_var1_replacement( $var1 ) { global $post; if ($post->post_city) { $city = $post->post_city; } if ($post->post_region) { $region = $post->post_region; } if ($post->post_country) { $country = $post->post_country; } if (isset($city) && !empty($city)) { $location = $city . " "; } if (isset($region) && !empty($region)) { $location .= $region; } //if (isset($country) && !empty($country)) { // $location .= " - " . $country; //} return $location; } function geodir_add_dyn_yoast_title_tags() { wpseo_register_var_replacement( '%%current_location%%', 'retrieve_var1_replacement', 'advanced', 'Adds location to title tags' ); } add_action( 'wpseo_register_extra_replacements', 'geodir_add_dyn_yoast_title_tags' ); // Add location info to yoast titles end
November 19, 2015 at 7:58 pm #60907Hi John,
Do you not just want to use the standard tag: %%location_single%%
You have these tags to choose from: %%location%%, %%in_location%%, %%in_location_single%%, %%location_single%%
Stiofan
November 19, 2015 at 9:46 pm #60918Thanks Stiofan,
Any way to exclude the country? It’s adding too much length to the title tags… I’d also prefer abbreviated state/region/province names for the same reason and in the U.S. when people search on a city, state combo they use the abbreviated version more than half the time.
-
AuthorPosts
We have moved to a support ticketing system and our forums are now closed.
Open Support Ticket