arcticblue
Forum Replies Created
-
Forum: Reviews
In reply to: [Cache Warmer] May the performance be with you!I found the bug. in cache-warmer.php 192 it defines the slug. On Windows XAMMP there is a / at the end. Now it removes the / 🙂
Forum: Plugins
In reply to: [Hide SEO Bloat] From now on only available via Githubjust switch to rankmath, it is worth it. faster better, less bloat.
ganz ehrlich! 😉
Forum: Plugins
In reply to: [Newsletter - Send awesome emails from WordPress] Captcha not showing upHi there,
I just tested the case again and now the captcha page is shown and works fine.. I don’t know, if any plugin update was done in the past days, I just have it on auto update. Caching was never installed. Maybe some standard browser caching through htaccess, but nothing special. So I suggest to close this topic now 🙂 I can’t reproduce the “error” so.. nothing to do 🙂
Although I have some suggestions to improve the UX, this is another story.
Guys thank you for your time and good work!
kind regards
Denis
Forum: Plugins
In reply to: [Newsletter - Send awesome emails from WordPress] Captcha not showing upThanks @adamnz. I didn’t find the right time to investigate .. but I will check for caching first, but it’s local so I have it under my control and on the production also. I’ll keep you both informed as I discover the root cause of me being stupid infront of the computer.
kind regards
Denis
Forum: Plugins
In reply to: [Newsletter - Send awesome emails from WordPress] Captcha not showing upHello Michael,
Thanks for you response. I’m a webdev and I had it on my local network. I am not quite sure if I really had no caching active, but I will test it out on weekend. Maybe I will take a closer look to find the cause. I’ll keep you informed. Kind regards
Denis
I’m glad, if I could help. have a nice day
Sure. As for your probs.. I dont know if activated debugging / error logging would give more detailed informations. it’s hard to find the cause for those submission fails. the submission could also be blocked by the host or a security plugin or a thousand other things. also maybe you check easy wp smpt or similar plugins if your host encourages you to use authenticated transmittions for more security. and also you could check for cf7ic or akismet antispam if thats an issue. cheers
- This reply was modified 2 years, 10 months ago by arcticblue.
- This reply was modified 2 years, 10 months ago by arcticblue.
Forum: Plugins
In reply to: [Contact Form 7] Can’t renew Pro Licenseeverybody can create a plugin and name it like CF7 Pro somethig.
the core plugin here is contact form 7, and it is free. so you are talking about different plugin.
my suggestion: save all (even not emailed) form transmissions with this little buddy: https://wordpress.org/plugins/contact-form-cfdb7/ this is kind of an addon for cf7 and pretty simple
- This reply was modified 2 years, 10 months ago by arcticblue.
Forum: Reviews
In reply to: [Contact Form 7] Still awful after all these years . . .I as a dev of a lot of sites, have had never real probs with this plugin. as a matter of fact, I use it allways and write code to work with the collected form data. it is usefull and time saving, for all those years.
this is good! Thanks!
Hey Kyle,
as of version 3.1.0 do I understand it right, that a fresh install would not block all other fc7 forms? I understand it the way, that I would need the human shortcode only if the cf7 conditions forms plugin is installed too. is that right?
Forum: Plugins
In reply to: [reGenerate Thumbnails Advanced] Period is not working (Bug?)it is also impossible to select 2016 or earlier- This reply was modified 8 years, 6 months ago by arcticblue.
Forum: Plugins
In reply to: [reGenerate Thumbnails Advanced] Period is not working (Bug?)I’d say it is. I could not regenerate images between 1 jan 2017 and 31 jan 2017. It says there are no images found.. and it kinda makes sense. (there are a LOT of images in jan.
Forum: Plugins
In reply to: [CAOS | Host Google Analytics Locally] Anonymize and Admin UserI did some little changes to accomlish that..
look for the functions and replace and add the code…
hopefully the author will update it..?save-ga-local.php:
function register_save_ga_locally_settings() {
……
register_setting (‘save-ga-locally-basic-settings’,’sgal_use_anonymize_ip’);
…..
}<h2>Host Google Analytics Locally</h2>
……
$sgal_use_anonymize_ip = esc_attr(get_option(‘sgal_use_anonymize_ip’));
…..… and then a bit further at the end of the table..
………..
<tr valign=”top”>
<th scope=”row”>Use anonymize ip?</th>
<td><input type=”checkbox” name=”sgal_use_anonymize_ip” <?php if($sgal_use_anonymize_ip == “on”) echo ‘ checked ‘ ?>/></td>
</tr>
</table>
…………function add_ga_header_script() {
……………add this at the top of the function
$sgal_use_anonymize_ip = esc_attr(get_option(‘sgal_use_anonymize_ip’));
……..……..add this at the end of the function and replace the existing code
$_anonymize_ip = “”;
if($sgal_use_anonymize_ip == “on”)$_anonymize_ip = “ga(‘set’, ‘anonymizeIp’, true);”;
echo “ga(‘create’, ‘” . $sgal_tracking_id . “‘, ‘auto’);
“.$_anonymize_ip.”
ga(‘send’, ‘pageview’);
</script>”;
}thats it. only deactivate and reactivate , then adjust the pluginoptions in the backend.
works like a charm.