oliverjuwig
Forum Replies Created
-
Hi, already posted a review quite a while ago. It is a great and easy to use plugin.
Fixed. Thanks a lot.
Still not working on my site. You can test it here.
Same problem here…
Forum: Plugins
In reply to: [Reading Time WP] Bug in 2.0.6. and greaterI installed the newest version 2.0.8, which had been released yesterday, and it looks like the problem has been solved.
Thanks
Oliver
Forum: Plugins
In reply to: [Site Reviews] Minor bug with new versionYES, TESTED AND FIXED.
THANKS A LOT
Forum: Plugins
In reply to: [Site Reviews] Minor bug with new versionThe click works, but the first set of reviews is shown again. The second set is shown on the second click. And so on. For me, this behaviour is independent of the Browser in use.
I think, the root cause is possibly the Twenty Seventeen theme, which constructs the home page from several WordPress pages. If I can help you to track down the issue, for example by removing my fix for a few Hours, please let me know.
Forum: Plugins
In reply to: [WP Fastest Cache] Cache Purge APIHi,
thanks for your fast reply. I looked at your tutorial and I also looked at the code. In the end, I ended up with a somewhat different solution, which I automated using the Plugin “WP Crontrol”. The reason for that is, that I must purge the Autoptimize Cache at the same time.
<?php function purge_cache() { if ($_GET['token'] == PURGE_CACHE_TOKEN) { if (class_exists('autoptimizeCache') && class_exists('WPFastestCache')) { $wpfc = $GLOBALS["wp_fastest_cache"]; $wpfc->deleteCache(true); autoptimizeCache::clearall(); $wpfc->deleteCache(true); echo 'Cache cleared...'; } else { echo 'Invalid configuration...'; } } else { echo 'Access denied...'; } } add_action('parse_request', 'my_custom_url_handler'); function my_custom_url_handler() { if (substr($_SERVER["REQUEST_URI"], 0, 12) == '/purge-cache') { purge_cache(); exit(); } }
The function purge_cache can be called using ‘https://mydomain.com/purge-cache?token=xyz’ where xyz equals the special security token constant. The code for the WP Crontrol entry looks like this:
$_GET['token'] = PURGE_CACHE_TOKEN; purge_cache();
Forum: Plugins
In reply to: [Reading Time WP] Incompatibility with Responsive VoiceWorks great – thanks.
Forum: Plugins
In reply to: [Shariff Wrapper] What is the Shariff concept?https://www.heise.de/ct/artikel/Shariff-Social-Media-Buttons-mit-Datenschutz-2467514.html
Sorry, it’s in German, but you can translate it with Google…
Forum: Fixing WordPress
In reply to: Disable Header video until user consent is givenI found a solution on my own:
function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for(var i = 0; i <ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } jQuery(document).ready(function( $ ){ var supportsVideo = wp.customHeader.supportsVideo; wp.customHeader.supportsVideo = function() { return supportsVideo() && (getCookie('cookie_notice_accepted') == 'false'); } });
Note: The cookie ‘cookie_notice_accepted’ will be set to ‘false’, if the user accepts…
- This reply was modified 6 years, 7 months ago by oliverjuwig.
Forum: Plugins
In reply to: [Asset CleanUp: Page Speed Booster] Possible Bug in 1.2.6.6Fixed. Thanks…
Forum: Plugins
In reply to: [azurecurve Tag Cloud] New version 1.0.5 does not workYes, 1.0.6 looks good, issue resolved…
Forum: Plugins
In reply to: [azurecurve Tag Cloud] New version 1.0.5 does not workSame for me. I had to rollback to 1.04