komiSid1122
New member
- May 30, 2022
- 4
- 0
- 1
16.9 is Released@NullMaster Hi, I downloded the premium plugin from the developer. Could you null this one please? Thanks in advance.
Waiting for @NullMasterYoast SEO Premium v16.9 Untouched :
Download Yoast SEO Premium v16.9 for WordPress Plugin Nulled Free
v16.9 - August 10th, 2021
Meet Yoast SEO 16.9: This release comes with a brand-new SEO workout that helps you make sure that your content is findable! It shows you if your website is suffering from orphaned content problems and helps you fix them. Moreover, the plugin now comes with two image SEO assessments and improved performance. Read more about what’s new in Yoast SEO 16.9 in our...
noHello, should i delete my free version of yoast before uploading this latest nulled copy to my website?
Tomz updated Yoast SEO Premium - Best WordPress SEO Plugin with a new update entry:
Yoast SEO Premium v16.9 Nulled
Read the rest of this update entry...
I placed it on the bottom of wp-seo-premium.php and it works.I think it's better to kept this code inside the wordpress-seo-premium.php, so that it wouldn't become unactivated when the free version got auto updated.
Code by @TassieNZ, iirc
$site_information = get_transient( 'wpseo_site_information' );
if ( isset( $site_information->subscriptions ) && ( count( $site_information->subscriptions ) == 0 ) ) {
delete_transient( 'wpseo_site_information' );
delete_transient( 'wpseo_site_information_quick' );
}
add_filter( 'pre_http_request', function( $pre, $parsed_args, $url ){
$site_information = (object) [
'subscriptions' => [
(object) [
'product' => (object) [ 'slug' => 'yoast-seo-wordpress-premium' ],
'expiryDate' => '+5 years'
],
(object) [
'product' => (object) [ 'slug' => 'yoast-seo-news' ],
'expiryDate' => '+5 years'
],
(object) [
'product' => (object) [ 'slug' => 'yoast-seo-woocommerce' ],
'expiryDate' => '+5 years'
],
(object) [
'product' => (object) [ 'slug' => 'yoast-seo-video' ],
'expiryDate' => '+5 years'
],
(object) [
'product' => (object) [ 'slug' => 'yoast-seo-local' ],
'expiryDate' => '+5 years'
]
],
];
if ( strpos( $url, 'https://my.yoast.com/api/sites/current' ) !== false ) {
return [
'response' => [ 'code' => 200, 'message' => 'ОК' ],
'body' => json_encode( $site_information )
];
} else {
return false;
}
}, 10, 3 );
It's a false positive. U can use it safely.