elschnuppero
Forum Replies Created
-
Forum: Plugins
In reply to: [Web Stories] Webstories, Google Fonts and GDPRI tried some other directories on our server and found a solution. Now we can add local fonts over the settings and the webstory itself isnt loading from google fonts server anymore. Thank you.
Forum: Plugins
In reply to: [Web Stories] Webstories, Google Fonts and GDPRHi Pascal,
thank you for your reply.
We tried to switch the font but we couldnt get the plugin to use a “custom” locally hosted since it gave us an CORS-error.
Well, i tried to upload an image of the error, but apparently the support forum doesnt like screenshots, so i paste the error:
Please ensure correct CORE settings for allowing font usage on this site.
But the font is placed on our own server, the same site.
And so we only have the options inside the stories to pick from google fonts ??
Thank you
Nothing new i guess?
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Complianz and WebstoriesAwesome. Thank you.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Complianz and WebstoriesHi @jarnovos ,
thank you for your quick reply. Maybe i can send you the link per email or similar since we dont want the url be in public right now?
Thank you
Forum: Plugins
In reply to: [Web Stories] GDPR complianceTHANX
Forum: Plugins
In reply to: [Web Stories] GDPR compliance@luckynasan Thanks for your reply.
But where can i find information about the data the plugin is sending to google since i have to write this in the data privacy agreement of my website? I cant find anything about this on the web.Forum: Plugins
In reply to: [DebugPress: Debugger in Popup] Doesnt work on different sitesNice, i’ll take a look.
Forum: Plugins
In reply to: [WP Fastest Cache] Fastest Cache and events calendarGreat tip. I will give it a try.
Forum: Plugins
In reply to: [DSGVO Vimeo] Fehlermeldung “undefined constant url”Jap, Fehler ist auch bei mir heute aufgetreten. Jemand ne Idee?
This worked (we only have 2 buttons), even when WordFence tried to stop the implementation:
window.onload = function(){ setTimeout(function(){ if ( document.querySelectorAll('#rtec').length > 1 ) { document.querySelectorAll('#rtec')[1].remove(); } }, 1000); };
- This reply was modified 5 years, 10 months ago by elschnuppero.
Hi there, we have the same problem . And unfortunately neither of the above solutions worked for us.
- This reply was modified 5 years, 10 months ago by elschnuppero.
Sure, it would be helpful to have a visual separation between aspects the plugin does for you and things you need to do yourself. I had a few moments where i wasn’t sure, because there was a button to click but things i needed to do myself. So i clicked the button and it jumped somewhere and i was confused because i thought the plugin is doing something.
Found a solution:
add_filter('um_profile_field_filter_hook__date','my_custom_sanitize_fields', 9999, 2 ); function my_custom_sanitize_fields( $value, $data ){ if( $data['metakey'] == 'birth_date' ){ $value = date("d.m.Y", strtotime($value)); } return $value; }