Thank you for the bug fixes and the new feature. Please seem my other post from last week about Bulk Email. (Our existing setup to use SMTP via SendGrid stoped working. We were forced to go use Mailersend. For other reasons, we still need to use SendGrid. So please re-enable that ability. )
I forgot to mention this bug. The household images are not showing up. Simple fix. The $image statement is never reached, because of the if statement above it.
Please update this code:
if(!empty( $addressLine->attachment_id)&&$photo)
{
$image=wp_get_attachment_image( $addressLine->attachment_id,’ca-address-thumb’);
if(defined(‘CA_DEBUG’) )//church_admin_debug( $image);
$add.='<p>’.$image.'</p>’;
}
should be
if(!empty( $addressLine->attachment_id)&&$photo)
{
$image=wp_get_attachment_image( $addressLine->attachment_id,’ca-address-thumb’);
//if(defined(‘CA_DEBUG’) ) church_admin_debug( $image);
$add.='<p>’.$image.'</p>’;
}