jgarturo
Forum Replies Created
-
Forum: Plugins
In reply to: [Fatal Error Notify] Sends double notifications?Hi Kostas,
The plugin is just set to use the email address entered in the settings. But if the wp_mail() function is available, it uses this to send the mail. We actually did that with SMTP mail plugins in mind, since some sites may have problems using PHP’s mail() function.
So it’s quite possible, if WP Mail SMTP is handling the mail, that it’s sending out an additional message somehow.
Yeah, I did see that, which is good. The Gravity Forms HelpScout plugin obviously doesn’t have the same check in place. But it’s still generally a good practice to prefix your class names with some sort of identifier, like
class Hustle_Aweber_CurlResponse {}
Just because CurlResponse is probably a pretty common class name and a lot of other plugin devs might not think to use if(!class_exists()).
But if it’s a composer package maybe you can’t edit it. I just needed the plugin for a couple of days for Black Friday, so I’ve since deleted it, but thought I’d point that out.
Good work otherwise though, worked perfectly for my needs 🙂
Same issue. I’m a paying Ultimate Member customer and when I go to their “paid support” I just get a message telling me to post in the forums. https://ultimatemember.com/paid-support/.
Is there any way to get support on this product? I’ve sent hundreds of customers to them over the years and never had anything more than minor issues, but this is going to mean we can’t use UM for this site if it can’t be resolved.
WP Fusion integrates Ultimate Member and ActiveCampaign, check out https://wpfusionplugin.com/activecampaign/ and https://wpfusionplugin.com/documentation/integrations/ultimate-member/
You can do this using WP Fusion, they just expanded to integrate with ActiveCampaign. Check out https://wpfusionplugin.com/activecampaign/
Just looked and saw you already have a pull request pending that fixes most of the issues. Mine is really just a quick patch for my client.. would need some work to be released. Here’s hoping ACF includes this in core one day.
I needed this working for a client so I hacked it together so it works with repeater fields again. If you want to email me at [email protected] I can send you the changes… maybe you can review it and finish the flexible content part?
Open source FTW 🙂
Forum: Plugins
In reply to: [EDD Google Analytics Universal Ecommerce] Multiple submissionsOk, I just emailed you an updated plugin file.
Forum: Plugins
In reply to: [EDD Google Analytics Universal Ecommerce] Multiple submissionsYeah I found the same thing in my research. I was able to reverse the transactions by creating a page that set a negative value with the same transaction number, but it’s inconvenient. I don’t use GA for accounting but if I had $1,200 of sales it’s a little confusing to see $3,100 in my GA… makes it harder to track which campaigns are performing well.
The problem is that my purchase confirmation page also contains my download link and activation key, and I imagine some people are coming back to the page after downloading because they forgot to copy the key. If I fork your plugin and modify it to set a meta value after the tracking beacon has been sent for the first time, do you want me to send it to you? I’d rather spend the hour fixing your code than have to buy another plugin (plus I hate YOAST with a passion).
Thanks for your advice
Any luck with this?
http://oi59.tinypic.com/fy1iis.jpg
Any obvious solutions? I can probably figure this out with some error_log’ing on my local install.. was just looking for a quick answer if you had one. I’ll play with it today / tomorrow and post back here when I get it working.
Your modified function registers the affiliate correctly in pending status but doesn’t add the user to the list. Ideally I’d like to only add the user to the list when they’ve been accepted as an affiliate… but if your plugin isn’t set up that way I can find a workaround.
I’m using a custom registration form. The full code looks like:
function wpf_register_affiliate( $user_id ) { // Only run on UserPro forms if(!isset($_POST['unique_id'])) return; // Only run on affiliate registration forms if(!isset($_POST['form_role-' . $_POST['unique_id']])) return; $user = get_userdata( $user_id ); $data = array( 'user_id' => $user_id, 'payment_email' => $user->user_email ); $result = affwp_add_affiliate( $data ); } add_action( 'user_register', 'wpf_register_affiliate', 20, 1 );How can I best auto-subscribe someone to the configured Mailchimp list?