Richard Korthuis
Forum Replies Created
-
Forum: Plugins
In reply to: [WP REST Yoast Meta] json ld dataThe plugin should add the yoast meta and json ld for custom post types automatically. Unless you have created a custom WP_REST_Controller for it and have not implemented the
rest_prepare_POSTTYPE
filter. I just did a test and did see them in a custom post type I just created.
So if it isn’t working on your side, it is either because you have a custom WP_REST_Controller which doesn’t implement therest_prepare_POSTTYPE
filter (replacePOSTTYPE
with your actual post type name) or there is some caching which is serving cache from before you activated the WP REST Yoast Meta plugin. If it isn’t caused by any one of those, I am affraid I don’t know what might me causing it.By the way: we also just released a new version of our plugin to fix an inconsistency in the way the json ld data is parsed. We prefer DOMDocument parsing, but if that isn’t installed we try simplexml parsing instead. The two gave a different output of the json ld data, which we fixed. But depending on which is used on your server the output might have changed, so just a heads up ??
Forum: Plugins
In reply to: [WP REST Yoast Meta] How to enable for custom post typeHi @afridley
Thank you for using our plugin!
I am not familiar with Gatsby, so I can not say for sure if it is related to the warnings you are getting. However reading these warnings I must say it sure looks like it is related.
To be sure the problem you are having is related to our plugin (and not to your Gatsby implementation) could you please check if the Yoast Meta is present in the WP RES API? Visit
https://<url-to-your-worpress-installation>/wp-json/wp/v2/posts
and see if there are items with theyoast_meta
element. Please let us know!Forum: Plugins
In reply to: [WP REST Yoast Meta] json ld dataWe just released a new version of our plugin, which now includes the json ld data. For each post/page/… you can find an array of JSON LD data in that object under
yoast_json_ld
.Please let us know if this works for you!
Forum: Plugins
In reply to: [WP REST Yoast Meta] json ld dataTo be honest I wasn’t aware Yoast had added the json ld data, so I am actually very happy with your question ?? So to answer your question: yes there is a possibility our plugin will also output the Yoast json ld data! I will see to it that we will add it as soon as possible.
Forum: Plugins
In reply to: [WP REST Yoast Meta] SEO Title MetaHi @ctagupa
Thank you for using our plugin!
Good question, I am assuming you are refering to the
<title>
tag in the<head>
? In that case there are two answers to your question:First of all is the fact that it isn’t part of the Yoast meta (i.e. the part of the head that is between
<!-- This site is optimized with the Yoast SEO Premium plugin vXX.X - https://yoast.com/wordpress/plugins/seo/ -->
and<!-- / Yoast SEO Premium plugin. -->
).
Second is because the same data already is in theog:title
which is in the Yoast meta. So what is the use of adding it a second time?Please let us know, if this answers your question!
Forum: Plugins
In reply to: [WP REST Yoast Meta] Non Alpahbetic Characters produce parser errorHi @neufeld
We just released a new version of our plugin, which should resolve your issues. Please let us know if you run into any more issues.
Forum: Plugins
In reply to: [WP REST Cache] How to change Caching Service to Memcache(d)Hi @nurgiel and @arindam4u
Thank you for using our plugin!
The message / notice and the setting will only appear if you have a memcache(d) enabling plugin installed and activated. Our plugin does not implement memcached object caching and the setting you are refering to is purely for a fix in the expiration setting when using memcached.
So if you want to use memcached you have to install a separate plugin. See for instance this article on how to enable memcached for WordPress: https://www.cloudways.com/blog/wordpress-memcached-server-tutorial/Forum: Plugins
In reply to: [WP REST Cache] not working on wp5.2.4Hi @mitsuki
There was an issue caused by the WP 5.2.4 security release, which resulted in the WP REST Cache plugin to throw a fatal error. We just released a new version of our plugin to fix this fatal error. Could you please check if this solves your problem too and let us know?
Hi @nurgiel @yclaes @rorymheaney
We just released a new version of our plugin, which should solve this issue. Please let us know if you still have any problems!
Forum: Plugins
In reply to: [WP REST Cache] not working on wp5.2.4Hi @mitsuki
Thank you for using our plugin!
We are investigating the issue and hope to release a fix later today.
Hi @rorymheaney and @yclaes
Thank you for using our plugin!
We are investigating the issue and hope to release a fix later today.
- This reply was modified 5 years, 1 month ago by Richard Korthuis.
Forum: Plugins
In reply to: [WP REST Yoast Meta] Non Alpahbetic Characters produce parser errorHi @neufeld
Thank you for using our plugin!
Sorry for the late reply, somehow I didn’t get a notification of this topic.
We are going to investigate your issue and try to release a fix as soon as possible!
Forum: Plugins
In reply to: [WP REST Yoast Meta] Missing og:title in single postHi @adhitya03
Thank you for using our plugin!
Sorry for the late reply, somehow I didn’t get a notification of this topic. This topic is marked as resolved, does this mean you solved it already?
Forum: Plugins
In reply to: [WP REST Yoast Meta] Question (non issue)Hi @rorymheaney
Thank you for using our plugin!
Yes, you could use the
wp_rest_yoast_meta/filter_yoast_meta
filter like this:/** * Add hid. */ function wpym_add_hid( $yoast_meta ) { foreach( $yoast_meta as &$meta ) { $meta['hid'] = $meta['name'] ?: $meta['property']; } return $yoast_meta; } add_filter( 'wp_rest_yoast_meta/filter_yoast_meta', 'wpym_add_hid', 10, 1);
N.B. I didn’t test this, so possibly you have to tweak it a little.
Please let us know if this is what you wanted!
Forum: Plugins
In reply to: [MultiSite Clone Duplicator] Notices when duplicating a siteYes, sure I can solve it by editing the plugin. But that is bad practice, you should never edit a plugin (because all your edits will get lost once the plugin is updated). So it would be best if the plugin owner can fix it and release an update.
- This reply was modified 5 years, 2 months ago by Richard Korthuis.