Anil Sardemann
Forum Replies Created
-
Hi Sumit,
many thanks, this is perfect.
Kind regards,
Anil
Hi, great, many thanks.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Cooklie Policy displays social mediaBut nevermind, maybe it is fixed with the next update, and pardon for misspelling the headline of this ticket. Just saw. I will close the ticket and wait for the next update.
Thanks for the informations.
Best regards,
Anil- This reply was modified 3 years, 7 months ago by Anil Sardemann.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Cooklie Policy displays social mediaHi @jarnovos ,
I can confirm that it is set on “No”, when I tick it on “yes” the Marketing and Tracking Cookies Section appears.
Best regards,
AnilForum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Cooklie Policy displays social mediaHi Aert,
this is kind of weird,
when I tick this in the screenshot on yes the Marketing- / Tracking-Cookies Section appears. Unfortunately I am not able to deactivate the social media section. It is deactivated but still appears.
Best regards,
AnilHi @rogierlankhorst,
I just deleted the “Require Authentication for All Requests” part and it works now. Thank you for clarification.Kind regards
- This reply was modified 4 years, 3 months ago by Anil Sardemann.
Hi @rogierlankhorst, yes did like that:
remove_action( ‘wp_head’, ‘rest_output_link_wp_head’ );
remove_action( ‘template_redirect’, ‘rest_output_link_header’, 11 );
remove_action( ‘rest_api_init’, ‘wp_oembed_register_route’ );
remove_action( ‘wp_head’, ‘wp_oembed_add_discovery_links’ );
remove_filter( ‘oembed_dataparse’, ‘wp_filter_oembed_result’, 10 );add_filter( ‘rest_authentication_errors’, function( $result ) {
// If a previous authentication check was applied,
// pass that result along without modification.
if ( true === $result || is_wp_error( $result ) ) {
return $result;
}// No authentication has been performed yet.
// Return an error if user is not logged in.
if ( ! is_user_logged_in() ) {
return new WP_Error(
‘rest_not_logged_in’,
__( ‘You are not currently logged in.’ ),
array( ‘status’ => 401 )
);
}// Our custom authentication check should have no effect
// on logged-in requests
return $result;
});`So maybe it’s fine to have just the object string displayed there. For safety reason I rather want to keep the REST API Blocker. Or do you think it would be fine just do delete the
remove_filter( 'oembed_dataparse', 'wp_filter_oembed_result', 10 );?Kind regards
- This reply was modified 4 years, 3 months ago by Anil Sardemann.
Forum: Reviews
In reply to: [Easy Updates Manager] Problems with older PluginsOk, thank you.
Namaste
AnilForum: Reviews
In reply to: [Easy Updates Manager] Problems with older PluginsOk, maybe a missunderstanding. Your Plugin works fine, but my other (older) plugins which usually send me email notifications doesn’t send them anymore. Don’t know why but the only change that happened was the update of your plugin. The other ones are older so it’s not your fault but just wanted to inform you about it. And surely you’ll get a 5 Star rating!
Nevermind I understand it’s not possible to handle any conflict with such old plugins like f.e. file monitor.
Namaste & thanks for your support
Anil