• Resolved Fabbstar

    (@fabbstar)


    Hi there,

    Firstly, may I thank you for all of the great support you offer on this plugin, you are second to none.

    I was wondering if there is a way of sending information on the confirmation email to only one of the possible selected email addresses in the “Send Copy to User” section.

    For example, we have a form that sends a confirmation email to two email addresses selected in the “Send Copy to User” section.

    Currently, we can only send the same confirmation email to all of the email addresses selected in this section.

    Is there a function or field that can be used to show extra information to one of these email addresses, but not to all selected?

    Many thanks,
    F

Viewing 3 replies - 16 through 18 (of 18 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @phixate,

    If you’ve followed my instructions, and you have included the hidden field, and used the code I sent you in the previous ticket, if the field with the class name: “contract-price” assigned is a calculated field, you simply should use the hidden field as part of the equation.

    Or you can assign the value directly into the code I sent you previously:

    
    <script>
    jQuery(document).on('change', '.retail-price input', function(){
    jQuery('.retail-price2 input').val(this.value).change();
    jQuery('.contract-price input').val(this.value).change();
    });
    jQuery('.retail-price input').change();
    </script>
    

    Best regards.

    That just sets the Contract Price to the Retail Price when I change a value in the first form. But if I select one of those two inputs and tab to the next the Contract Price does recalculate to what it should be.

    https://whittsroofing.com/gazebos/index.php/53-2/

    I have another CFF where all of these fields are in one form and everything works fine even without any of the extra coding you have given me.

    https://whittsroofing.com/gazebos/index.php/product/8×8-octagon-gazebo/

    I might just change my plan to use that.

    • This reply was modified 6 years, 8 months ago by phixate.
    • This reply was modified 6 years, 8 months ago by phixate.
    • This reply was modified 6 years, 8 months ago by phixate.
    Plugin Author codepeople

    (@codepeople)

    Hello,

    Yes, if all fields are in the same form, you don’t need the codes I sent you in the previous tickets.

    I’m not sure what do you want now, however, if you prefer I can implement your project, but I would need a detailed description of it, from my private website:

    https://wordpress.dwbooster.com/customization

    Best regards.

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Confirmation Email’ is closed to new replies.