Quote Originally Posted by poosk View Post
4.MAJOR problem
All subscriptions made through index.php?main_page=subscribe are TEXT-ONLY even though html would be selected and displayed as default it won't work...
To fix this you need to edit the /includes/templates/YOUR_TEMPLATE/templates/tpl_subscribe_header.php file and change the lines that read...
PHP Code:
    $content .= '<label class="smallText">' zen_draw_radio_field('customers_email_format''HTML'true) . ENTRY_EMAIL_HTML_DISPLAY '</label>';
    
$content .= '<label class="smallText">' zen_draw_radio_field('customers_email_format''TEXT'false) . ENTRY_EMAIL_TEXT_DISPLAY '</label>'
...to...
PHP Code:
    $content .= '<label class="smallText">' zen_draw_radio_field('email_format''HTML'true) . ENTRY_EMAIL_HTML_DISPLAY '</label>';
    
$content .= '<label class="smallText">' zen_draw_radio_field('email_format''TEXT'false) . ENTRY_EMAIL_TEXT_DISPLAY '</label>'
Should be round lines 22-23.

Hope that helps.

Regards,
Christian.