• Resolved alphagoldafrica

    (@alphagoldafrica)


    Hi,

    I have a price calculated field which I want to hide from the public but I would like users on the front end to see ‘check email for quote’.

    The email notification of details the user receives after submitting their email, should show the price but not ‘check email for quote’

    I have this setup but when the user receives the email, they receive both the price value and ‘check email for quote’. I don’t want them to see in their email ‘check email for quote’ which they saw on the front end of the website

    Thank you

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @alphagoldafrica

    If you want to exclude fields from the notification emails, you should to remove the special tag <%INFO%> and include only the tags of the fields you really want to send by email.

    For example, assuming you want send only the fields: fieldname1 and fieldname5, with their labels in bold and values in italic. You can to insert the following code into the notification emails:

    
    <p><b><%fieldname1_label%></b>: <i><%fieldname1_value%></i></p>
    <p><b><%fieldname5_label%></b>: <i><%fieldname5_value%></i></p>
    

    Note, that I’m combining HTML tags (<p><b><i>) with the fields’ tags, so, you should select the “HTML” option through the “Email Format” attribute in the form’s settings.

    More information about the special tags to use with the notification emails in the following link:

    https://cff.dwbooster.com/documentation#special-tags

    Best regards.

    Thread Starter alphagoldafrica

    (@alphagoldafrica)

    Its only one field (fieldname28) I don’t want to send on email to the user. Is there a simple code to apply to exclude only one field?

    Thank you,

    Plugin Author codepeople

    (@codepeople)

    Hello @alphagoldafrica

    I’m sorry, at least in the current version of the plugin there is not an option to exclude fields from the notification emails, only the possibility to decide the fields to include.

    Best regards.

    Thread Starter alphagoldafrica

    (@alphagoldafrica)

    Thank you ??

    Thread Starter alphagoldafrica

    (@alphagoldafrica)

    If I want to keep the label bold but the value plain, would the code be as follows:

    <p><b><%fieldname1_label%></b>: <i><%fieldname1_value%></p>

    Thank you,

    Plugin Author codepeople

    (@codepeople)

    Hello @alphagoldafrica

    You have left open a tag for italic.

    There are different alternatives, the yours a valid one:

    <p><b><%fieldname1_label%></b>: <%fieldname1_value%></p>

    but you can use other tags for grouping the field’s components, like: div, span, etc.

    Best regards.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Block something from being sent on email’ is closed to new replies.