WPIntell

Source evidence

Double Opt-In Email

Mailster Gravity Forms · support · 2018-02-28T17:34:00+00:00

mixedsentiment
mediumseverity
0.84relevance
3replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

6 / 36 rows with source links

16.7% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

30 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
MB-Jan resolved
Hi there, We love this plugin. It integrates Mailster perfectly with Gravity Forms. We understand that if Double-Opt-In is activated, Mailster chooses the first form’s double-opt-in settings for the email content that gets send out. This works great, but we now have the issue that we would like to change the wording slightly for subscribers that subscribe through one specific form. Is there any chance that you can add a dropdown with available forms, where the admins can select which form’s email settings should be used for users that sign up through a Gravity Form? If you are too busy at the moment, can we modify the plugin ourselves and send you our version? We do not want to loose the changes with the next plugin update. Thank you for your help. Best regards, Jan Hi there! Thank you for writing in! We provide all of our official support via the member area on our website. If you have not done so yet, please use the link below to register for access so that you can post your question there: https://mailster.co/go/register/ We are looking forward helping you out. Hi there, I know you mentioned that I should contact your support, but I thought it is quicker if we add the functionality ourselves instead. Here is the updated plugin. We commented where we made the changes and here are also the lines we edited: /mailster-gravity-forms.php: Line 95 to 97 /views/page.php: Line 116 to 123 File: http://files.marketingbear.com/wp/plugins/mailster-gravity-forms.zip It would be great if you could incorporate these changes in the next plugin updates. Thank you. Best regards, Jan Hi there! Thanks for the feedback! An option for the form may confuse users to much as they edit a form within a (Gravity) form. What you can do is a custom code like so: add_filter( 'mailster_verify_subscriber', function( $entry ) { if ( !isset( $entry['form'] ) ) { $entry['form'] = 123; } return $entry; } ); This adds the form id to every entry which hasn’t one. Hope that helps!

Comments

3 shown
EverPress 2018-02-28T19:34:00+00:00

Hi there! Thank you for writing in! We provide all of our official support via the member area on our website. If you have not done so yet, please use the link below to register for access so that you can post your question there: https://mailster.co/go/register/ We are looking forward helping you out.

MB-Jan 2018-03-13T11:34:00+00:00

Hi there, I know you mentioned that I should contact your support, but I thought it is quicker if we add the functionality ourselves instead. Here is the updated plugin. We commented where we made the changes and here are also the lines we edited: /mailster-gravity-forms.php: Line 95 to 97 /views/page.php: Line 116 to 123 File: http://files.marketingbear.com/wp/plugins/mailster-gravity-forms.zip It would be great if you could incorporate these changes in the next plugin updates. Thank you. Best regards, Jan

EverPress 2018-03-14T19:14:00+00:00

Hi there! Thanks for the feedback! An option for the form may confuse users to much as they edit a form within a (Gravity) form. What you can do is a custom code like so: add_filter( 'mailster_verify_subscriber', function( $entry ) { if ( !isset( $entry['form'] ) ) { $entry['form'] = 123; } return $entry; } ); This adds the form id to every entry which hasn’t one. Hope that helps!