Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author raiserweb

    (@raiserweb)

    Hi Carodani

    The plugin is designed to pull in the CSS style, as well as the HTML layout, into the browser.

    Are you using any other email based widgets that might be altering the way the emails are being created?

    Hi, great plugin!

    You just need to inline the CSS. That will fix this issue.

    Change line 89 of the plugins functions.php file to:

    echo $new_email->style_inline( $new_email->get_content() );

    Plugin Author raiserweb

    (@raiserweb)

    Hi danielbitzer

    Thank you for this fix – top marks to you sir

    raiserweb

    Hi raiserweb,

    Try this fix for customer note preview on line 87 of functions.php file

    switch ( $for_filter )
    	{
    		case 'customer_note':
    			$new_email->trigger(array(
    				'order_id' => $wc_email_test_order_id,
    				'customer_note' => "Hi there, \n Donec ullamcorper nulla non metus auctor fringilla. Lorem ipsum dolor sit amet, consectetur adipiscing elit."
    			));
    			break;
    		default:
    			$new_email->trigger( $wc_email_test_order_id );
    			break;
    	}
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘CSS ignored’ is closed to new replies.