letterafterz
Forum Replies Created
-
Forum: Plugins
In reply to: [Enable Media Replace] When file is replaced CDN URL is changed+1 for this feature
Also experiencing this error. Seems to only relate to some of my ACF fields (such as date). Turning off simple history fixes the issue.
I’m going to post this issue on the ACF bug forums as well.
Forum: Plugins
In reply to: [Yoast SEO] Category page Yoast SEO field missing after updateI’ve run with debug enabled and I get this error:
Catchable fatal error: Argument 1 passed to WPSEO_Metabox_Tab_Section::add_tab() must implement interface WPSEO_Metabox_Tab, boolean given, called in /var/www/vhosts/website/httpdocs/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-tab-section.php on line 60 and defined in /var/www/vhosts/website/httpdocs/public/wp-content/plugins/wordpress-seo/admin/metabox/class-metabox-tab-section.php on line 109
- This reply was modified 6 years, 8 months ago by letterafterz.
- This reply was modified 6 years, 8 months ago by letterafterz.
Forum: Plugins
In reply to: [Yoast SEO] How to Remove "Content : Bad etc" in wp-admin/post ?Here’s a situation for you:
You’re using a plugin like ACF for content so the content and SEO scorer doesn’t actually read any of your content.
A client uses the CMS and sees BAD all over their articles or pages and you have to explain to them that this isn’t relevant to their site.
Still no resolution here at my end.
FYI I also have a thread on this issue here:
https://support.advancedcustomfields.com/forums/topic/issue-with-yarpp-plugin-loading-image-array/Forum: Plugins
In reply to: [Yoast SEO] Webmaster Tools Crawl Error 404 for "/div"I’ve also had this issue for ages across multiple sites and can’t figure out what’s causing it.
Forum: Plugins
In reply to: [Yoast SEO] wpseo_opengraph_image not workingBeing a filter it will only fire if there is an actual image set for Facebook.
If you set a default image for Facebook in the YOAST settings, the hook will start firing for you.
While I don’t think it’ll solve the issues that you’re having, you can fix that error message by changing YARRP_Cache.php to this on line 330:
if (defined('WPLANG')) { switch ( substr(WPLANG, 0, 2) ) { case 'de': $lang = 'de_DE'; break; case 'it': $lang = 'it_IT'; break; case 'pl': $lang = 'pl_PL'; break; case 'bg': $lang = 'bg_BG'; break; case 'fr': $lang = 'fr_FR'; break; case 'cs': $lang = 'cs_CZ'; break; case 'nl': $lang = 'nl_NL'; break; default: $lang = 'en_US'; break; } }else{ $lang = 'en_US'; }
Further investigation suggests the could be associated with some custom SQL ignoring these values perhaps? Does the plugin do anything like this?
Forum: Plugins
In reply to: [YARPP Experiments] YARPP Experiments no longer visible in WP SettingsEdit wp-content/plugins/yet-another-related-posts-plugin/includes/yarpp_meta_boxes_hooks.php
uncomment this:
/** @since 3.3: hook for registering new YARPP meta boxes */
//do_action(‘add_meta_boxes_settings_page_yarpp’);Hey Luke,
Your wp-posts table needs to be running the MyISAM engine to support the FULLTEXT index. There should be a note with more details at the top of the settings page.
Forum: Plugins
In reply to: [Yoast SEO] Undefined index when debug = trueComment out line 451 in: wp-content/plugins/wordpress-seo/inc/class-wpseo-meta.php
This will be fixed in the next update, as per the github.
I’ve resolved the issue now by using image objects in acf instead of image IDs.
Thanks.