Hi,
Another question. I want to change the way checkbox data is e-mailed to me. Now it looks like this:
OptionA
OptionB
OptionC
and it has be like this
OptionA OptionB OptionC.
By which way could this be changed?
Thanks!
Started 2 years ago by Jos | 2 posts |
Hi,
Another question. I want to change the way checkbox data is e-mailed to me. Now it looks like this:
OptionA
OptionB
OptionC
and it has be like this
OptionA OptionB OptionC.
By which way could this be changed?
Thanks!
Hi,
You need to customize "helper-functions.php" file for this, go to line 369 and you'll see these code :
$checkbox_content .= '- '.$option_label.'<br />';
then change it to
if ($form_id == 1)
$checkbox_content .= '- '.$option_label.' ';
else
$checkbox_content .= '- '.$option_label.'<br />';
those code will make your check box options in the same line for form 1 email
MachForm Support
You must log in to post.