blissyung
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Remove og article:published_time/modified_time@tizz You’re welcome, glad it worked ??
Same problem! spent a few hours trying to figure it out. @rankmath Your solution worked for me thanks but it’s quiet a shame this had to happen to a popular plugin such as this.
Before I found this solution I had already used a plugin to delete RankMath database tables and still couldn’t get the update to work. I lost my settings because backup and restore feature for settings doesn’t seem to function, it was same in the old version so anytime I delete plugin data I have to go through each settings manually and that’s time consuming, Kindly get a fix for that too.
Thanks for plugin and hope it gets better.
Forum: Plugins
In reply to: [Yoast SEO] Twitter creator output errorThanks for the reply. It seems you still didn’t get my message.
When I put “username” at Users>Profile>Twitter username (without the @) it wont save, it instead picks settings under User>Profiles>> “SOCIAL NETWORKS” where I put the full URL changing that from URL to “Username” will break admin twitter links.
Forum: Plugins
In reply to: [Yoast SEO] Twitter creator output errorHard to explain kindly take a look at the pictures
This is my profile settings: Image 1
This settings was added to user profile after installing Yoast: Image 2
Source code: Output image
I’m not able to update second image unless I change from the first image and that breaks theme twitter links.
Was working perfectly before 14.3
Just thought you should know, checked a few colleagues sites and output was @http://twitter.com/username they haven’t even noticed it yet.
Forum: Plugins
In reply to: [Yoast SEO] Bring back meta keywordsOkay, I’ve read above links just thought you might consider in future updates. thanks for clarifications though.
Forum: Plugins
In reply to: [Yoast SEO] Twitter creator output error@devnihil No, it’s value under USER>Profile >Twitter username (without @) (Changes won’t save) instead it uses “Social Networks” under USER>Profile which I don’t want to change
Forum: Plugins
In reply to: [Yoast SEO] Remove og article:published_time/modified_timeFound it! you can now mark this as resolved. For anyone else looking for this here you go.
add_filter( 'wpseo_frontend_presenter_classes', function ( $filter ) { if (($key = array_search('Yoast\WP\SEO\Presenters\Open_Graph\Article_Modified_Time_Presenter', $filter)) !== false) { unset($filter[$key]); } return $filter; } ); add_filter( 'wpseo_frontend_presenter_classes', function ( $filter ) { if (($key = array_search('Yoast\WP\SEO\Presenters\Open_Graph\Article_Published_Time_Presenter', $filter)) !== false) { unset($filter[$key]); } return $filter; } );
Credits: https://www.ads-software.com/support/topic/filter-for-open-graph-articlepublished_time/
- This reply was modified 4 years, 5 months ago by blissyung.
Forum: Plugins
In reply to: [Yoast SEO] Filter for Open Graph article:published_timeThank you @mihdan I’ve been looking for this. @finalwebsites Yoast explained; Some filters and actions were deprecated since v14.0 of Yoast SEO for WordPress. LINK
I just removed Modified date and published date using the code provided by @mihdan
add_filter(
‘wpseo_frontend_presenter_classes’,
function ( $filter ) {if (($key = array_search(‘Yoast\WP\SEO\Presenters\Open_Graph\Article_Modified_Time_Presenter’, $filter)) !== false) {
unset($filter[$key]);
}return $filter;
}
);add_filter(
‘wpseo_frontend_presenter_classes’,
function ( $filter ) {if (($key = array_search(‘Yoast\WP\SEO\Presenters\Open_Graph\Article_Published_Time_Presenter’, $filter)) !== false) {
unset($filter[$key]);
}return $filter;
}
);I can now change the presenters to remove any OG output I please ??
Forum: Plugins
In reply to: [Yoast SEO] Remove og article:published_time/modified_timeI visited these pages (https://developer.yoast.com/customization/yoast-seo/api-filter-actions-deprecations/https://developer.yoast.com/blog/yoast-seo-14-0-adding-metadata/ countless times and i couldn’t figure it out that’s why I started this thread. I only know basics of codding as said in my second reply, I think it’s your way of telling me indirectly to get premium so I get support you can’t put those codes here for free users. thanks for your help anyway… AIOSEO didn’t hesitate but provide me codes on their first reply to disable those tags in my other website.
Please anyone else who can provide those filter codes should kindly reply to this thread thanks.
- This reply was modified 4 years, 5 months ago by blissyung.
Forum: Plugins
In reply to: [Yoast SEO] Remove og article:published_time/modified_timeI already went through there besides I’m not a developer I’m only looking for a replacement for those filters that would work with the new version Yoast
Wow thanks, I scrapped the entire internet for days couldn’t find anyone wanting to do this lol. hope it helps someone else.
Same here I was worried it was a problem from my website.