Kevin Grabher
Forum Replies Created
-
Forum: Plugins
In reply to: [Local Google Fonts] Error when I try to activate the PluginRemoving the trailing “,” on line 328 in /local-google-fonts/includes/class-local-google-fonts-admin.php fixes the issue:
( $variant->fontStyle == 'italic' ? 'Italic' : '' ),
- This reply was modified 2 years, 2 months ago by Kevin Grabher.
Forum: Plugins
In reply to: [EU Cookie Law for GDPR/CCPA] Accept not workingHave you tried disabling your cache plugin(s)?
Forum: Plugins
In reply to: [EU Cookie Law for GDPR/CCPA] Blocco automatico – Revolution sliderIt is not an active decision that Revolution Slider is blocked but a consequence of the autoblock feature which simply blocks any script I believe.
Forum: Plugins
In reply to: [EU Cookie Law for GDPR/CCPA] Blocco automatico – Revolution sliderI would hope there is a different solution. Maybe some type of custom excludes so the tag does not have to be hardcoded to other plugins php files.
Forum: Plugins
In reply to: [EU Cookie Law for GDPR/CCPA] Blocco automatico – Revolution sliderI’ve modified line 4624 in /revslider/includes/output.class.php
<script eucookielaw_exclude type="text/javascript">
and /revslider/public/revslider-front.class.php on line 524
public static function add_setREVStartSize(){ $script = '<script eucookielaw_exclude type="text/javascript">';
It’s not a pretty solution however as this change will be lost with every update.
Does anyone have a better solution?Forum: Plugins
In reply to: [EU Cookie Law for GDPR/CCPA] Google Analytics _ga _gat_gid Cookies IssueI’ve created a script for blocking GA.
You can use something like https://de.www.ads-software.com/plugins/code-snippets/ to add the code. Don’t forget to replace ga-disable-UA-XXXXXXXXX-X with your GA code.function blockGA(){ echo '<script>'; if ( function_exists('cookie_accepted') && cookie_accepted() ) { //cookies accepted } else { //cookies blocked echo "window['ga-disable-UA-XXXXXXXXX-X'] = true;"; } echo '</script>'; } add_action('wp_head', 'blockGA', 0, 0);
Forum: Plugins
In reply to: [EU Cookie Law for GDPR/CCPA] Blocco automatico – Revolution sliderHi,
I’m not sure how the code should be added. Could you add an example?
regards, Kevin
Forum: Plugins
In reply to: [ACF Photo Gallery Field] Show custom fields in the API restDid you ever find a solution to this?
Forum: Plugins
In reply to: [Contact Form 7] Safari does not submit form if attachment input is presentSame issue as well, anybody got a workaround?