Title: sdaveCL's Replies | WordPress.org

---

# sdaveCL

  [  ](https://wordpress.org/support/users/sdavecl/)

 *   [Profile](https://wordpress.org/support/users/sdavecl/)
 *   [Topics Started](https://wordpress.org/support/users/sdavecl/topics/)
 *   [Replies Created](https://wordpress.org/support/users/sdavecl/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/sdavecl/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/sdavecl/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/sdavecl/engagements/)
 *   [Favorites](https://wordpress.org/support/users/sdavecl/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 36 total)

1 [2](https://wordpress.org/support/users/sdavecl/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/sdavecl/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/sdavecl/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Editor] If your plugin is going haywire, click here for the fix – Jan 2020.](https://wordpress.org/support/topic/if-your-plugin-is-going-haywire-click-here-for-the-fix-jan-2020/)
 *  [sdaveCL](https://wordpress.org/support/users/sdavecl/)
 * (@sdavecl)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/if-your-plugin-is-going-haywire-click-here-for-the-fix-jan-2020/#post-13215117)
 * This is caused by an incompatibility with PHP 7.1 and higher. Upgrading my old
   sites from 7.0 to 7.4 made my admin section go wonky. **This is the fix.**
 * If your Installed Plugins page was not showing all plugins, you could not select
   all, and buttons under plugin names were missing, replacing the line as OP states
   does the trick.
 * $data = array(); is still working in August 2020. Thank you!
 * Deactivating a plugin without admin access can be done by renaming the plugin
   folder under wp-content/plugins.
    -  This reply was modified 5 years, 10 months ago by [sdaveCL](https://wordpress.org/support/users/sdavecl/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Change the "og image" property](https://wordpress.org/support/topic/change-the-og-image-property/)
 *  [sdaveCL](https://wordpress.org/support/users/sdavecl/)
 * (@sdavecl)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/change-the-og-image-property/#post-4777059)
 * marvin_edward the concern is not how to set a default og:image.
 * The problem is a bunch of og:images automatically added to the <head> which prevents
   social networks from picking up the one you want when sharing a page/post.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Image Issue with Google](https://wordpress.org/support/topic/image-issue-with-google/)
 *  [sdaveCL](https://wordpress.org/support/users/sdavecl/)
 * (@sdavecl)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/image-issue-with-google/#post-4766046)
 * This post describes how to strip all but the featured image og:image tag of the
   post from the <head>:
 * [http://webgilde.com/en/wordpress-seo-facebook-image-open-graph/](http://webgilde.com/en/wordpress-seo-facebook-image-open-graph/)
 * Takes a snippet of code added to your theme’s functions.php to do it.
 * The exact snippet I added was this:
 *     ```
       add_filter('wpseo_pre_analysis_post_content', 'mysite_opengraph_content');
       function mysite_opengraph_content($val) {
       return preg_replace("/<img[^>]+>/i", "", $val);
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Change the "og image" property](https://wordpress.org/support/topic/change-the-og-image-property/)
 *  [sdaveCL](https://wordpress.org/support/users/sdavecl/)
 * (@sdavecl)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/change-the-og-image-property/#post-4776966)
 * This post describes how to strip all but the featured image og:image tag of the
   post from the <head>:
 * [http://webgilde.com/en/wordpress-seo-facebook-image-open-graph/](http://webgilde.com/en/wordpress-seo-facebook-image-open-graph/)
 * Takes a snippet of code added to your theme’s functions.php to do it.
 * The exact snippet I added was this:
 *     ```
       add_filter('wpseo_pre_analysis_post_content', 'mysite_opengraph_content');
       function mysite_opengraph_content($val) {
       return preg_replace("/<img[^>]+>/i", "", $val);
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Image Issue with Google](https://wordpress.org/support/topic/image-issue-with-google/)
 *  [sdaveCL](https://wordpress.org/support/users/sdavecl/)
 * (@sdavecl)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/image-issue-with-google/#post-4766005)
 * I think this has something to do with how WordPress SEO is implementing Open 
   Graph image tags now. **Every single image** featured in a post now has an og:
   image tag in the <head> section.
 * I just tried posting to Google+ and I can’t select the Featured Image because
   there are too many og:image tags and G+ wont allow me to select from all of them.
 * Another thread about this issue here:
    [http://wordpress.org/support/topic/change-the-og-image-property](http://wordpress.org/support/topic/change-the-og-image-property)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Change the "og image" property](https://wordpress.org/support/topic/change-the-og-image-property/)
 *  [sdaveCL](https://wordpress.org/support/users/sdavecl/)
 * (@sdavecl)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/change-the-og-image-property/#post-4776819)
 * Same problem here. With an image heavy post that I have I can’t get Google+ to
   pick up the Featured Image because there are too many og:image tags in the <head
   >.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Timestamp removed in 0.9.2.10?](https://wordpress.org/support/topic/timestamp-removed-in-09210/)
 *  [sdaveCL](https://wordpress.org/support/users/sdavecl/)
 * (@sdavecl)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/timestamp-removed-in-09210/#post-3755661)
 * WP version 3.8
    W3 Total Cache version 0.9.3
 * I’m having the same problem, but even after turning off the minify option there
   still aren’t any timestamps.
 * Cache flushed. Different browsers tried. Turned off all plugins but W3 Total 
   Cache. Switched to a default WordPress theme. No timestamps to be found.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Many Page not found issues with URLs after upgrade](https://wordpress.org/support/topic/many-page-not-found-issues-with-urls-after-upgrade/)
 *  [sdaveCL](https://wordpress.org/support/users/sdavecl/)
 * (@sdavecl)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/many-page-not-found-issues-with-urls-after-upgrade/#post-3978037)
 * It’s doing the same thing with paginated galleries, where you get the “Not Found”
   error when clicking to go to the next page.
 * It’s the URL that it tries to load which is faulty. It looks like it is trying
   to link to another WordPress installation **inside** the gallery folder.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] REQUEST: change manually og:locale](https://wordpress.org/support/topic/request-change-manually-oglocale/)
 *  [sdaveCL](https://wordpress.org/support/users/sdavecl/)
 * (@sdavecl)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/request-change-manually-oglocale/#post-3448300)
 * This would be a very nice feature.
 * According to another user, adding the following to **your theme’s functions.php**
   does the trick:
 *     ```
       add_filter('wpseo_locale', 'override_og_locale');
       function override_og_locale($locale)
       {
           return "en_GB";
       }
       ```
   
 * Of course, you would replace “en_GB” with your country code.
 * [http://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-how-do-you-set-the-oglocale-value](http://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-how-do-you-set-the-oglocale-value)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Can't change Titles and Descriptions](https://wordpress.org/support/topic/cant-change-titles-and-descriptions/)
 *  Thread Starter [sdaveCL](https://wordpress.org/support/users/sdavecl/)
 * (@sdavecl)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/cant-change-titles-and-descriptions/#post-3364224)
 * Seems quite a few people are having this problem.
 * [http://wordpress.org/support/topic/page-seo-section-not-saving](http://wordpress.org/support/topic/page-seo-section-not-saving)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Page SEO section not saving](https://wordpress.org/support/topic/page-seo-section-not-saving/)
 *  [sdaveCL](https://wordpress.org/support/users/sdavecl/)
 * (@sdavecl)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/page-seo-section-not-saving/#post-3320123)
 * I started a thread about this while back but no solution or response from Yoast
   yet.
 * [http://wordpress.org/support/topic/cant-change-titles-and-descriptions](http://wordpress.org/support/topic/cant-change-titles-and-descriptions)
 * In my case, it is not a plugin conflict as I have tried disabling all plugins
   but WordPress SEO and it did not fix the problem.
 * What does work is switching to a default WordPress theme then switching back 
   to the site’s regular theme. **This only works temporarily** and the problem 
   comes back after a few days.
 * Problem exists in all browsers.
 * I don’t see any errors in Chrome console, and WordPress debug mode offers no 
   clues that I see.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Facebook unable to download og:image and other meta information](https://wordpress.org/support/topic/facebook-unable-to-download-ogimage-and-other-meta-information/)
 *  [sdaveCL](https://wordpress.org/support/users/sdavecl/)
 * (@sdavecl)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/facebook-unable-to-download-ogimage-and-other-meta-information/#post-3454443)
 * Works fine for me. I’d advise you to add a longer description though.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Error: Author profile page redirects to another URL.](https://wordpress.org/support/topic/error-author-profile-page-redirects-to-another-url/)
 *  [sdaveCL](https://wordpress.org/support/users/sdavecl/)
 * (@sdavecl)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/error-author-profile-page-redirects-to-another-url/#post-3454440)
 * WordPress SEO does automatically insert valid Google Authorship markup, but not
   when the user enters their profile URL incorrectly.
 * You must insert your **FULL Google+ profile URL** into “Your Profile” in WordPress,
   not just the number. You need to have the “[https://plus.google.com/&#8221](https://plus.google.com/&#8221);
   in there as well.
 * Currently, the author meta in the <head> of your site looks like this:
    `<link
   rel="author" href="103093506223212784034">`
 * That is acting as a relative URL, so it’s just tacking that number onto the page’s
   current permalink.
 * What you’re actually linking to in this case is [http://www.interactiontalks.com/teen-looks/teen-acne/teen-acne-home-acne-care/103093506223212784034](http://www.interactiontalks.com/teen-looks/teen-acne/teen-acne-home-acne-care/103093506223212784034)
 * Thing is, you haven’t even filled out your Google+ profile so Authorship is going
   to do just about nothing for you. At the _very least_ you should add a profile
   picture and a little bit to the “About” section, even if you’re not posting.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Wrong og:locale in](https://wordpress.org/support/topic/wrong-oglocale-in/)
 *  [sdaveCL](https://wordpress.org/support/users/sdavecl/)
 * (@sdavecl)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/wrong-oglocale-in/#post-3417825)
 * Having same problem with a UK website.
 * Changed the language in wp-config.php to “en_uk” which changes the _meta language_
   tag but the _og:locale_ does not follow suit.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Can't change Titles and Descriptions](https://wordpress.org/support/topic/cant-change-titles-and-descriptions/)
 *  Thread Starter [sdaveCL](https://wordpress.org/support/users/sdavecl/)
 * (@sdavecl)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/cant-change-titles-and-descriptions/#post-3364192)
 * Changes made in meta box are not saving again.
 * I’m not seeing any errors in Chrome or in the WordPress Debug console.
 * Again tried deactivating all plugins but WordPress SEO to no avail. Problem occurs
   in all browsers.
 * I’m having a hard time understanding how this problem could come and go, why 
   changing the themes back and forth from default would fix it but only temporarily.
 * I should also mention that I have other websites hosted with the same hosting
   company that are not having this problem.

Viewing 15 replies - 1 through 15 (of 36 total)

1 [2](https://wordpress.org/support/users/sdavecl/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/sdavecl/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/sdavecl/replies/page/2/?output_format=md)