Forum Replies Created

Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • in reply to: Sending newsletters from different e-mail adressess #281038
    Jason Robinson
    Participant

    You can set from both friendly name and email for the From headers on a per-email basis in the Advanced tab, in the same screen where you set which lists are being sent to.

    in reply to: Automation plugin #281037
    Jason Robinson
    Participant

    up voting this. One of our clients is now requesting this too. Love the plugin!!

    in reply to: Feature Request: A/B Testing Subject Lines #281036
    Jason Robinson
    Participant

    Upvoting this again

    in reply to: Feature Request: Integration with Gravity Forms #279258
    Jason Robinson
    Participant

    To anyone who hasn’t seen it, TNP now has GF integration and it works well. Try it!

    in reply to: Feature Request: Integration with Gravity Forms #253997
    Jason Robinson
    Participant

    I will incorporate the get_token and test, I am skipping the activation email as I don’t really need it, but I can understand why others would require it (GDPR etc), that could just be another function call?

    in reply to: Gravity Forms – Pre Sales Question #253985
    Jason Robinson
    Participant

    I can’t post a link here apparently. I’ve tried using the code/link and also just pasting it in and when I click submit, it never shows up

    in reply to: Gravity Forms – Pre Sales Question #253919
    Jason Robinson
    Participant

    There is no easy integration right now, I posted prototype code in another thread on this forum that shows how you can do it yourself if you know PHP

    in reply to: Feature Request: Integration with Gravity Forms #252527
    Jason Robinson
    Participant
    
    add_action('gform_after_submission', 'tnp_add_entry_to_db', 10, 2);
    function tnp_add_entry_to_db($entry, $form) {
    
    	  // uncomment to see the entry object 
    	  //echo '<pre>';
    	  //var_dump($entry);
    	  //echo '</pre>';
    	  
    	$source = $entry['source_url'];
    	$email = $entry[2];
    	$firstname = 	$entry["1.3"];
    	$lastname = 	$entry["1.6"];
    	$subscribe = 	$entry["14.1"];
    
    	if ($subscribe == 'I want to subscribe to the Dow Art Gallery Newsletter') {
      	global $wpdb;
      
      	// add form data to custom database table
    	$wpdb->insert(
    	    'wp47_newsletter',
    	    array(
    	      'email' => $email,
    	      'name' => $firstname,
    		  'surname' => $lastname,
    		  'http_referer' => $source,
    		  'status' => 'C',
    	      'list_1' => '1',
    		  'list_2' => '1',
    		  'list_3' => '1',
    	      'created' => current_time( 'mysql' )
    	    )
    	);
    	}
    }
    
    in reply to: Feature Request: Integration with Gravity Forms #252526
    Jason Robinson
    Participant

    The one field in the database that is not being filled and I am not sure if it needs to be is TOKEN. I am still digging into TNP’s code to figure out how this field’s value is calculated/created. I am not sure it is even needed initially. I have run this code on a GF and now see the subscriber in the TNP’s subscriber page, so I know it works to that point.

    in reply to: Feature Request: Integration with Gravity Forms #252525
    Jason Robinson
    Participant

    I have a prototype function below that can be put into functions.php, this is really rough and fixed to one form, and anyone trying to use this would have to change the array values as well as the table name prefix. Note that some fields are addressed by array index and others are using names. There are a lot of ways this could be expanded, I think my next addition is a simple switch for handling multiple forms.

    in reply to: Feature Request: Integration with Gravity Forms #252523
    Jason Robinson
    Participant

    I’m trying to post a new function to help with this issue and the forum isn’t letting me. It shows that it saved, but it’s not showing here. Is there a new approval flow for messages posted here?

    in reply to: Feature Request: Integration with Gravity Forms #252221
    Jason Robinson
    Participant

    If TNP subscribers were registered as a custom post type, there are a number of existing plugins for Gravity Forms that can push the data into the CPT.

    in reply to: Feature Request: Integration with Gravity Forms #250250
    Jason Robinson
    Participant

    Thinking about this more:

    • Use published/documented GF hooks to intercept form data
    • Decide (based on form data?) what list(s) the submitter should belong to (look up list IDs)
    • Insert into wp_newsletter (email,name,surname,lists_1,list_2,…) values (email,firstname,lastname,1,0,…)

    The above is just a rough outline for custom code running in functions.php approach. A full blown plugin would need UI for picking lists and mapping fields etc.

    in reply to: Feature Request: Integration with Gravity Forms #250212
    Jason Robinson
    Participant

    Where can we post a bounty to get this done? Or Stefano, I am willing to send you PayPal (as I am sure others would too) to make this happen. This is beyond paying for the Agency level yearly subscription that we already pay for.

    in reply to: Feature Request: Integration with Gravity Forms #247749
    Jason Robinson
    Participant

    Even when grabber was available, I was not able to get it to work with GF, sadly. Otherwise I probably wouldn’t be trying to keep this thread alive.

    I will reiterate, if a bounty is needed for this, I am happy to organize and kick off the funding. We really need this. 100% of our clients sites used Gravity Forms.

    in reply to: Feature Request: Integration with Gravity Forms #234892
    Jason Robinson
    Participant

    We really need this integration. I have many clients that would drop MailChimp or Vertical Response or Constant Contact if they knew there was integration with TNP and GF.

    I want to express gratitude for all the work being done on TNP in general, it is happy making to see new features and updates come out. How can we help to get the GF integration done? Bounty?

    in reply to: Feature Request: Integration with Gravity Forms #177995
    Jason Robinson
    Participant

    Is Grabber even still supported? I am willing to help pay for this integration to happen. We use TNP on 10+ sites and all of those sites use Gravity Forms. Integration between the two without Grabber would be greatly appreciated!

    in reply to: Gravity Forms – Pre Sales Question #93025
    Jason Robinson
    Participant

    I found it, I have to go under my downloads, once logged in!

    in reply to: Gravity Forms – Pre Sales Question #93023
    Jason Robinson
    Participant

    I found this page: https://www.thenewsletterplugin.com/documentation/grabber-extension

    But it says I can download Grabber from the downloads page, which I can’t find (!)

    in reply to: Gravity Forms – Pre Sales Question #92715
    Jason Robinson
    Participant

    I really need grabber too, I don’t see it listed in the extensions list when I go to /wp-admin/admin.php?page=newsletter_main_extensions

Viewing 20 posts - 1 through 20 (of 20 total)