Forum Replies Created
- AuthorPosts
yannis
Participantsorry, I didn’t use the back ticks in my previous message
// conditional formatting - uses different scripts for email styling add_filter('quform_all_form_data_html', function ($content, Quform_Form $form, $showEmptyFields) { if (!in_array($form->getId(), array(3))) { return $content; } // END add_filter('quform_all_form_data_html', function ($content, Quform_Form $form, $showEmptyFields) { $newline = "\r\n"; $content = '<table width="100%" cellpadding="3" cellspacing="0" border="0" style="table-layout: fixed; background: #ffffff; border-bottom: 1px solid #d4d4d4; box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.07);">' . $newline; ... the rest of the original code
- This reply was modified 6 years, 1 month ago by
yannis.
yannis
ParticipantDear Ally,
thanks for the prompt reply. I must have done something wrong because the script breaks the website.
Here is the code with your suggested addition:
// conditional formatting - uses different scripts for email styling
add_filter('quform_all_form_data_html', function ($content, Quform_Form $form, $showEmptyFields) {
if (!in_array($form->getId(), array(3))) {
return $content;
}
// ENDadd_filter('quform_all_form_data_html', function ($content, Quform_Form $form, $showEmptyFields) {
$newline = "\r\n";
$content = '<table width="100%" cellpadding="3" cellspacing="0" border="0" style="table-layout: fixed; background: #ffffff; border-bottom: 1px solid #d4d4d4; box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.07);">' . $newline;... the rest of the code
- This reply was modified 6 years, 1 month ago by
- AuthorPosts