joelnewcomer
Forum Replies Created
-
Forum: Plugins
In reply to: [Send Emails with Mandrill] Lost Password link being removed from emailI found the solution to my problem here: https://organicweb.com.au/wordpress/mandrill-password-link-error/
Forum: Plugins
In reply to: [Sermon Browser] PHP 7 CompatibilityNo, I never found a fix.
Forum: Plugins
In reply to: [Download Monitor] PHP 7 ErrorHi Barry, thanks for your quick response. In the error log, I was assuming that errors specific to PHP7 have the “[php7:error]” indicator like this error but I might be wrong. It appears that a function in the plugin is passing a null variable that is making its way to the add_rewrite_tag() function. It appears to have something to do with having a custom post type with a rewrite slug.
The two Download Monitor files that seem to be triggering the error are:
src/Shop/bootstrap.php
src/DLM.phpI’m guessing that one of those files needs an if statement added to make sure that a variable is not null. I’m not sure.
Unfortunately I can’t do testing on this website because it is live—normally I would copy it to a staging environment, but this install is our largest at 12.4 GB.
I hope this information helps in some way. For now I am locked into using an older version of Download Monitor. Thanks Barry!
Joel
I am having the same issue. Here is the public calendar but none of the events show on my website:
Has anyone found a solution?
Forum: Plugins
In reply to: [Popups for Divi] Popup not showing up in front endThank you Philipp! You are awesome!
Forum: Plugins
In reply to: [Popups for Divi] Popup not showing up in front endFor those of you looking for a solution, I added the following javascript to my theme:
jQuery(“.trigger-popup”).on( “click”, function() {
var trigger = jQuery(this).attr(‘id’);
trigger = trigger.replace(“trigger-“, “#”);
DiviPopup.openPopup(trigger);
});Then instead of using the Link field, I add a class of “trigger-popup” and an ID of “trigger-my-popup” where “my-popup” is the ID of your popup.
Forum: Plugins
In reply to: [Popups for Divi] Popup not showing up in front endThe problem is that when you add a link to a section, row, column, or module in Divi now, Divi doesn’t use an a tag to make it a link. They use javascript. This plugin requires them to be standard a tag links. Hopefully the plugin developer can fix this.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] PHP 7 CompatibilityThank you for your quick response. I thought it was most likely okay, but wanted to make sure. Thanks again!
Thanks for your quick response! I did log out and test it, but now I’m thinking that my browser must have been caching the search results. I did a test this morning and it didn’t show a scheduled post that I was testing with. Thanks again!
I am having an issue with getting an HTTP error when uploading SVGs when this plugin is activated. To me it seems like the plugin should exclude SVGs.
Forum: Plugins
In reply to: [Safe SVG] W3C Validator@hendrim @enshrined Thanks for your feedback! I am using get_template_part() in some places and file_get_contents() in other places to load the SVGs inline. @hendrim I did try another plugin (SVG Support) and had the same results. The website is hosted on WP Engine and SVGs that I push up using Git are not affected, only SVGs uploaded to the media library. @enshrined I can write a function to remove the XML declaration, but it would be awesome if you could add an option to your plugin to automatically remove it. Thanks again! You guys are awesome! For now I’m just going to turn a blind eye to the few W3C Validator errors.
Forum: Plugins
In reply to: [Safe SVG] W3C ValidatorHi Daryll, I did a clean WordPress install with no plugins other that Safe SVG and it is still pre-pending SVGs with the XML declaration, so I assume it is WordPress core that is doing that? Thanks again!
Joel
Forum: Plugins
In reply to: [Safe SVG] W3C ValidatorHi Daryll, thank you for your quick response! Yes, we are using them inline. The SVGs we are uploading don’t have the XML declaration in them. The XML declaration is being pre-pended after the file is uploaded and I assumed that the Safe SVG plugin was doing that but maybe it is another plugin causing that or possibly something in WordPress core. The SVG before being uploaded does not contain this:
<?xml version=”1.0″ encoding=”UTF-8″?>
But after uploading it to the media library, it does. Thanks for your help! I’ll post back here if I find out what is causing that. Thanks again!
Joel
Forum: Plugins
In reply to: [Media File Renamer: Rename for better SEO (AI-Powered)] Updating post metaThat’s exactly what I was looking for. Thanks Jordy!
Forum: Plugins
In reply to: [Media File Renamer: Rename for better SEO (AI-Powered)] Updating post metaThanks for taking the time to write a very thorough response. I was afraid you might say something like that, but it makes sense. I wanted to follow up with another question. I see that you have filters, but do you have hooks so that I could write some code to update some specific ACF fields when a file is renamed? Thanks again!