SEO Title, Meta description and Canonical URL is empty after website clone
-
I have multiple country domains with the same content in different languages. I update content on a single website regularly and then clone other websites on monthly basis with main website sql dump. I run a set of SQL queries to change the domain name and other content where ever required.?
These fields ‘SEO Title’, ‘Meta description’ and ‘Canonical URL’ in product_tags (Edit tag page) and product categories (Edit category page) are empty after the running update query.
I have tried to export and import Yoast settings to other websites. Does Yoast SEO have any migration procedure? What I am missing here?
Here are a few queries as examples.UPDATE wp_options SET option_value = REPLACE(option_value, 'example.com', 'example.co.uk') WHERE option_value LIKE '%example.com%'; UPDATE wp_yoast_seo_links SET url = REPLACE(url, 'example.com', 'example.co.uk') WHERE url LIKE '%example.com%'; UPDATE wp_yoast_prominent_words SET stem = REPLACE(stem, 'example.com', 'example.co.uk') WHERE stem LIKE '%example.com%'; UPDATE wp_yoast_indexable SET permalink = REPLACE(permalink, 'example.com', 'example.co.uk') WHERE permalink LIKE '%example.com%'; UPDATE wp_yoast_indexable SET canonical = REPLACE(canonical, 'example.com', 'example.co.uk') WHERE canonical LIKE '%example.com%';
The page I need help with: [log in to see the link]
- The topic ‘SEO Title, Meta description and Canonical URL is empty after website clone’ is closed to new replies.