Daniel Hendricks
Forum Replies Created
-
Forum: Reviews
In reply to: [Atomic Blocks - Gutenberg Blocks Collection] Quality and InvaluableOh no! I just noticed that you were purchased by WP Engine. ??
Are they planning on shutting you down as they did with Array Themes?
Forum: Plugins
In reply to: [Safe SVG] Refresh existing SVG’sI am not the author. Your theme (possibly host, but likely the theme) is messing with you. (I am not a nice person, though you seem nice.)
This plugin is boolean. It is awesome, else there is something terrible about a situation.
Forum: Plugins
In reply to: [commonWP] Minified wp/gh files+1 was thinking the same
- You might name the constant something like
COMMONWP_MINIFY
for some consistency with WP constants. Not a big deal. - Just an idea: It might be nice to check for the commonWP constant in addition to a generic constant of some sort that other plugin authors might share. As an example, the Amazon Web Services plugin checks for the existence of either
DBI_SECRET_ACCESS_KEY
orAWS_SECRET_ACCESS_KEY
. Perhaps likeCOMMONWP_MINIFY
andJSDELIVR_MINIFY
… (or something else reasonable, unique, yet generic)
(PS, don’t forget to give it a 5-star rating folks!)
- This reply was modified 6 years, 1 month ago by Daniel Hendricks.
Forum: Plugins
In reply to: [Safe SVG] W3C ValidatorAs an experiment, you could try using a different plugin to maybe/possibly help troubleshoot the cause. Note that I prefer Safe SVG uber alles and would switch back – I’m just trying to come up with ideas to narrow down the culprit.
Though, as Daryll mentioned, I have a feeling that it may be prudent and maximize compatibility to use a filter.
- This reply was modified 6 years, 2 months ago by Daniel Hendricks. Reason: Added note re: Daryll's suggestion
Forum: Plugins
In reply to: [Safe SVG] W3C ValidatorI would suspect that WordPress is adding it, but I am not an expert. When you view source on an SVG upload from the media library link, does it have the
<?xml tag
? Do you have PHP short tags enabled (I assume not)? Is it feasible to modify WordPress image fetching functions (for SVG files) withfile_get_contents()
(or similar) instead? I’m just spit-balling… Is this hosted with a shared provider, or your own environment? (thinking maybe they have something in place to add the tag where absent, though that would be odd)Forum: Plugins
In reply to: [Safe SVG] SVG Logo Not Displaying^By the way, the above wasn’t necessarily meant to be good advice, but rather a possible easy solution.
EDIT: One that note, I see no img+svg tags in the page markup. 0_o
- This reply was modified 6 years, 5 months ago by Daniel Hendricks. Reason: I wanted to
Forum: Plugins
In reply to: [Safe SVG] SVG Logo Not DisplayingThough I am obviously a WordPress fan (and also of Safe SVG!), WP themes are notoriously bad for SVG support. Daryll is right. I’m not sure of your CSS comfort, but a cheap CSS trick that you can try:
img[src$=".svg"] { width: 100%; height: auto; }
If the theme author is a wanker (and assuming he/she didn’t *inline style* [the horror] for inappropriate reasons, this might work but may come with consequences. Else move the above to the footer, if supported. YMMV.
img[src$=".svg"] { width: 100% !important; height: auto !important; }
I don’t know why ma.tt still has a war on SVG. Yeah, I’ve heard the argument. It is complete rubbish.
(apologies if www.ads-software.com.com completely mangles the markup… Ironically, no Preview Post)
Forum: Reviews
In reply to: [Cookie Information | Free GDPR Consent Solution] Can’t add a link with CF7Do be fair, CF7 is just one plugin and this WP GDPR Compliance is only 5 months old. The author seems genuine, and it is free.
Forum: Plugins
In reply to: [Safe SVG] Can’t install due to errorHas it ever worked for you before? If I was to make a stab in the dark, I’m wondering if another plugin is using the Sanitizer class and perhaps it is out-of-date.
I’ve had this issue with plugins that autoload dependencies. Let’s say 2 plugins require a piece of code, but one author hasn’t updated it in ages. Eventually there are deprecation issues galore.
That’s just a theory, though. The only way to know for sure would be a find+replace and disable other plugins, reactivating them one at a time to see if one collides.
Forum: Plugins
In reply to: [Better Search Replace] Error: Try decreasing the “Max Page Size”This issue went away for me when I increased my max_execution_time to 300 and my memory_limit from 128M to 256M. (I’m using it on a huge multisite install)
Forum: Plugins
In reply to: [Advanced Cron Manager - debug & control] Trunk only contains readme.txt?Thank you for the response.
In case anyone stumbles across this post, here is the GitHub link:
https://github.com/BracketSpace/Advanced-Cron-ManagerDaniel
I ended up hacking a fix for this by overriding with output buffering. If someone has a better fix, please advise.
Thank you,
DanielA depreciation notice won’t cause issues on the … backend
It floods the logs, and I don’t want to turn them all off because I want to know where I can fix things.
PHP recommends using anonymous functions
I’ll close this. You answered my question.
- This reply was modified 6 years, 8 months ago by Daniel Hendricks. Reason: Fixed blockquote
We’re running 5.8.1.3, and I notice them in Error Log Monitor.
Forum: Plugins
In reply to: [Safe SVG] Plugin not workingI don’t see any SVGs linked on that page.
Are you getting any browser console errors? (If you don’t know what that means, let me know which web browser you are using – Internet Exploder, Chrome, Firefox, etc – and I can add assistance.)
- You might name the constant something like