jarelsc
Forum Replies Created
-
I found the same issue later too. Looks like a PHP issue now. Since you’re getting an error I assume you’re on PHP8+. So instead of just adding to the array, I wrapped a conditional around it if the array is empty.
$attachments = $this->addAttachmentToMail( $message );
if( !empty( $attachments ) ) {
$content[‘attachments’] = $attachments;
}The above code got it working again for me with and without file attachments.
**I’m not the plugin developer, and I edited the plugin file directly. So please proceed with caution.
Forum: Plugins
In reply to: [Membership Plugin - Kadence Memberships] Update 3.0.2 breaks accessThis new update also completely broke all my websites on multiple multisite networks. Nothing better than getting flooded with emails and phone calls from multiple clients panicking that their site is down. Every page on all sites on each network now defaults to “Members with a certain role”, which effectively locks down access to each site completely. It also automatically created 5 additional pages that are completely unnecessary and should not be created by default. ie Register, Edit Your Profile, Update Billing Card, Welcome, and Your Membership. Now I have to spend the entire day reverting this plugin for dozens and dozens of sites that are totally locked down, delete these extraneous pages, and also clear the site cache to remove all the cached pages that are locked down. These plugin developers should have done a better job of testing their plugin thoroughly before releasing an update that critically affects so many sites.
@rwickhamdwcorg, I did figure out a solution by editing some files in Events Manager. I wrote an article about it on my site here:
https://jarelculley.com/events-manager-multisite-unique-email-per-subdomain/
I basically changed the code so it uses the site admin email in Settings.
I also keep a .txt file handy of any plugin edits I make with some notes since they’ll be gone after updating the plugin.
Well this is totally ridiculous. So the “from” email address is limited to 1 email for the entire network as this is only available in the Network Admin?? So if I have two sites on my multisite install and they both have EM activated, only one site can have a custom “from” email address, the other is stuck with the email EM defaults to!
These email settings NEED to be site specific “not” a network setting. The documentation on EM should be updated so people know about this issue before sinking lots of time and money for PRO.
Thanks EM for wasting my money to get PRO, and I definitely won’t be purchasing another PRO license again until this is fixed.
Forum: Plugins
In reply to: [Claudio Sanches - PagSeguro for WooCommerce] Pagseguro Checkout Not LoadingI just ended up purchasing the plugin from the woocommerce store and there’s worked fine. Didn’t have time to try to debug. Thanks
Forum: Plugins
In reply to: [Gravity Forms WYSIWYG] Plugin Conflict with Gravity Forms Survey Add OnSince I don’t have time to go back’n’forth with the developer I looked into the plugin files myself to try to figure this out.
First. I prefixed all the functions in both plugin files. I used prefix gfw_ (Didn’t fix things, but better safe than sorry).
Second. I looked at gf_wysiwyg.php file on line 29 and 30. There are two add_action(s). Both have their priority set to 20. I changed the priority to 10. And like magic, both plugins are working together like they should.HACKED FIX:
Open gf_wysiwyg.php
Locate line 29, and 30
Change priority 20 to priority 10
Re-upload file via ftpJust wanted to post this until the developer releases on official patch.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] GF Name and Address fields not mappingYes. I just had that syntax error yitwall mentioned. I was using “.” instead of “_”. I figured that out but forgot to post here. Thanks for the help. 🙂