Mihai
Forum Replies Created
-
I can’t… It is on local and and I have already fixed this by changing the terms slug from numeric in text-numeric. I decided to open this ticket because I thought it was good for you to know about this problem, not because I didn’t find a solution.
Thank you!
But it seems that in both situations the scripts run correctly, the cookies are registered.
I apologize, this issue is not related to the blocksy theme.
Forum: Fixing WordPress
In reply to: Update core does not workForum: Fixing WordPress
In reply to: Update core does not workThank you!
There are no php specific errors, there are no pearl specific errors, max execution time is 30 in php options and 300 in wp config.
There are some 303 errors but not at the time of the update attempts.It happens in all WP installations (one fresh, for testing), it seems to be something much more general.
Forum: Plugins
In reply to: [Yoast SEO] How to remove Site Title in Page Title?1. Yes.
2. Yes!
https://yoast.com/help/configuration-guide-for-yoast-seo/
Try to use the SEO settings / Search Appearance and do not ignore the SEO settings on each page.Forum: Plugins
In reply to: [Yoast SEO] Problem with Yoast SEOThe problem you have mentioned has nothing to do with the sitemap.
It is not about SEO plugin it is about Google.Google alone decides what description to display on each page, and that description may be different depending on the query for which the result was displayed.
You can only help him understand what is on that page.Try a search like: site:your_site/page to see default index.
Forum: Plugins
In reply to: [Yoast SEO] How to remove <meta property="article:tag" from Post?Add this code in function.php:
function remove_wpseo_fb_tags() {
global $wpseo_og;
remove_action(‘wpseo_opengraph’, array($wpseo_og, ‘tags’), 16);
}
add_action(‘wpseo_opengraph’, ‘remove_wpseo_fb_tags’);It works.
Thank you!- This reply was modified 7 years, 8 months ago by Mihai.