Forum Replies Created

Viewing 15 replies - 1 through 15 (of 33 total)
  • Thread Starter michaely50

    (@michaely50)

    Brian
    Appreciate your prompt response
    I realise that the pro version would fix the problem but as a not for profit organisation with basically a weekly newsletter the extra cost is hard to justify

    I will continue with Mailpoet 2 and your excellent plugin to create the Newsletter. This works fine and switching to MP3 is more about layout.
    Hopefully by the time Mailpoet close down version 2 they will fix this issue. Otherwise PLAN B??
    Thanks again
    Michael

    Thread Starter michaely50

    (@michaely50)

    Appreciate a comment.

    Summarising, in Mailpoet 3, when html for an image is pasted into text (using html editor) the image does not appear in the email. This works fine in Mailpoet 2
    Thank you

    Thread Starter michaely50

    (@michaely50)

    PS
    In the original post the image was the link “img src= etc” rather than showing the actual image

    Thread Starter michaely50

    (@michaely50)

    Hi
    No sooner had I sent this support request and I found that I can add the html to the mailpoet Newsletter
    This fixed the problem. Sorry for false alarm
    Michael

    Thread Starter michaely50

    (@michaely50)

    More info
    I changed the publish date of one logo to April and updated.
    The logo was visible in the dashboard but not in the footer
    Michael

    Thread Starter michaely50

    (@michaely50)

    Jan
    Undersponsors in the dashboard the logos are visible although at this point in time they show on the site.(i updated the publish date) I believe they still showe in dashboard when not on the site.
    I have not updated recently. WordPress 4.4.2 and sponsors 1.8.5
    All other images on the site behave
    It is like the sponsor images have a lifetime of 3 to 4 weeks.
    As I said simply updating the publish date to a more recent one and the logo is back
    Just updating the sponsor without changing the publish date does not work.
    Michael

    Thread Starter michaely50

    (@michaely50)

    Hi again
    It has happened again. Certainly not every transaction. Error below

    I have stuck with 4.0.14 as only a few more days until the end of this event and reluctant to rock the boat. Part of the problem?

    Strange and fortunate it is infrequent

    Again, resending the ipn from paypal worked
    Regards
    Michael

    PROCESSING PAYPAL IPN TRANSACTION
    2016-05-12 10:06:55 Seamless Donations Version: 4.0.14
    2016-05-12 10:07:18 IPN failed: unable to establish network chatback connection to PayPal
    2016-05-12 10:07:18 ==> url = ssl://www.paypal.com:443/, errno = 0, errstr = php_network_getaddresses: getaddrinfo failed: Name or service not known
    2016-05-12 10:07:18 IPN failed (unrecognized response) for sessionID A3F44105-8ADC-870F-B366-9BFAF34AB53C
    2016-05-12 10:07:18 ==>
    2016-05-12 10:07:20 IPN processing complete.

    Thread Starter michaely50

    (@michaely50)

    Hi David
    Bit the bullet and resent the ipn from paypal
    This time the post was created in website and all good

    No idea why this did not occur when the donation was first created. Hopefully the last time it happens. I will keep an eye on it
    Regards
    Michael

    Thread Starter michaely50

    (@michaely50)

    No
    I did receive an email from paypal for the donation just not from plugin.
    I checked the ipn log in paypal and the transaction is shown as sent.
    What is the consequence of resending the ipn?
    Regards
    Michael

    Thread Starter michaely50

    (@michaely50)

    Thanks Jan
    My css skills are not that great
    I suspected it was the theme but I wanted to make sure that was the case
    I will get woothemes to help
    Appreciate the quick response
    Thankyou
    Michael

    Thanks David
    I should have mentioned it is im my “custom seamless” plugin
    Michael

    Hi
    Thanks for the code “esaner”
    I took what you published and with a bit of trial and error got it to work. I combined the 3 functions that you presented.
    I also took the logic that Ariel presented( not shown in my code) and adapted that so that a customized donation page exists for each participant by using a registration process. Makes it so much easier for people to donate to the correct fund. Hope it might help someone because both snippets certainly helped me

    add_filter( 'seamless_donations_form_donation_section', 'es_remove_funds_field_cloak' );
    function es_remove_funds_field_cloak( $array ) {
    
     // data for dropdown
    	$query_args  = array(
    		'orderby'     => 'menu_order',
    		'order'       => 'asc',
    		'post_type'   => 'funds',
    		'post_status' => 'publish',
    		'numberposts' => - 1,
    		'meta_query'  => array(
    			array(
    				'key'   => '_dgx_donate_fund_show',
    				'value' => 'Yes',
    			)
    		)
    	);
    	$posts_array = get_posts ( $query_args );
    
    	$fund_count = count ( $posts_array );
    
    	if ( $fund_count > 0 ) {
    
    		$options_array = array(
    			606 => 'No Rider',
    		);
    
    		foreach( $posts_array as $post ) {
    			$title                = $post->post_title;
    			$id                   = $post->ID;
    			$options_array[ $id ] = $title;
    		}
    	}
    
         // remove the check box
        $array['elements']['_dgx_donate_designated'] = array(
    		'type'   => 'checkbox',
    		'select' => '1',
    		'id'     => 'dgx-donate-designated',
    		'cloak' => 'specific-fund',
    		//'prompt' => esc_html__ ("I would like to designate this donation to a specific fund", 'seamless-donations' ),
    	);
    
        $array['funds_section']                     = array(
    				'elements' => array(
    					'designated_fund_label'       => array(
    						'type'  => 'static',
    						//'cloak' => 'specific-fund',
                            'reveal' => 'specific-fund',
    						'value' => esc_html__ ( 'Select your Rider: ', 'seamless-donations' ) . " ",
    					),
    					'_dgx_donate_designated_fund' => array(
    						'type'    => 'select',
    						//'cloak'   => 'specific-fund',
                            'reveal' => 'specific-fund',
    						'class'   => '',
    						'options' => $options_array,
    					),
    				),
    			);
    
        //echo "
    <pre>"; print_r( $array ); echo "</pre>
    ";
    	return $array;
    }

    Laurie
    I am not a good enough programmer to do this for you but looks like the mail chimp people can help. The “hook” they are talking about, and the one I mentioned, can be found in David’s documentation. (The function called when paypal returns to seamless donations) I looked at mail chimp and they have similar functions to the one’s I use. A few lines of code in ,seamless_donations_paypal_ipn_processing_completeand placed in a child theme functions.php will insert the details into mail chimp
    Hope that helps
    Regards
    Michael

    Hi
    Hope you don’t mind a comment.
    I use MailPoet (rather than Mail Chimp) but I suspect the principles are the same

    I use this hook ‘seamless_donations_paypal_ipn_processing_complete’
    which takes the session as the variable and gives access to donor firstname, Lastname and email address for a given donation (plus all the other stuff).

    I then insert these values into the Donor mail list using a mailpoet function.
    You could check whether they ticked the box to receive updates before actioning
    Seems to work
    Regards
    Michael

    Thread Starter michaely50

    (@michaely50)

    Fixed it
    FAQ
    <?php if ( function_exists( ‘ADDTOANY_SHARE_SAVE_KIT’ ) ) {
    ADDTOANY_SHARE_SAVE_KIT( array( ‘use_current_page’ => true ) );
    } ?>

    Ta

Viewing 15 replies - 1 through 15 (of 33 total)