Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #315349

    Hi,
    I have a question regarding your contact form. I have split hosting where the email the form is being submitted TO is hosted by a 3rd party vendor separate from the website.

    My question is with regards to the form. I notice that within the submissions the FROM email that’s shown is the same email that
    is entered within the email field of the form. Something like this is considered spoofing I believe. Do you have recommendations on how best to approach this? To have a designated FROM email that comes from the client @ the domain?

    Thanks!

    #315470

    Hi Justin!

    You’d need to use a more advanced plugin form to achieve that, like:
    http://wordpress.org/plugins/contact-form-7/

    Cheers!
    Josue

    #315559
    This reply has been marked as private.
    #315589

    Hi!

    You can use Enfold columns shortcodes in the CF7 edit area.

    Cheers!
    Josue

    #315843
    This reply has been marked as private.
    #316335

    Hey!

    You can add classes on the p tags and don’t forget to enclosed the whole form inside a container with the avia_ajax_form class. Something like this:

    <div class="avia_ajax_form">
    <p class="first_form  form_element form_element_half">
    Your Name (required)<br />
    [text* your-name] 
    </p>
    
    <p class="form_element form_element_half">
    Your Email (required)<br />
    [email* your-email]
    </p>
    
    <p class="form_element form_fullwidth">
    Subject<br />
    [text your-subject]
    </p>
    
    <p class="form_element form_fullwidth">
    Your Message<br />
    [textarea your-message]
    </p>
    
    <p class="form_element form_element_third">
    [textarea your-message]
    </p>
    
    <p class="form_element form_element_third">
    [textarea your-message]
    </p>
    
    <p class="form_element form_element_third">
    [textarea your-message]
    </p>
    
    [submit "Send"]
    
    </div>

    Regards,
    Ismael

    #316630

    Thanks Ismael,
    I will try this again. What’s above looks close to what I had tried initially, and it didn’t seem to render.
    But let me try again…perhaps I missed something. Thank you.

    #316816
    This reply has been marked as private.
    #316982

    Hey!

    Try adding this code to the Quick CSS:

    .wpcf7-form input[type='text'], .wpcf7-form input[type='email'], .wpcf7-form input[type='tel'], .wpcf7-form select {
        width: 100% !important;
        padding: 13px !important;
        margin-bottom: 0 !important;
    }
    .wpcf7-form input[type='submit']{
        margin: 0;
        padding: 16px 20px;
        border-radius: 2px;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        font-weight: normal;
        font-size: 12px;
        min-width: 142px;
        outline: none;
    }

    Add “first_form” to the first 1/3 element:

    <p class="form_element form_element_third">
    

    Cheers! 
    Josue

    #320000
    This reply has been marked as private.
    #320228

    Hi!

    Seems to be on the right for me – http://screencast.com/t/rpx8dd2X

    Best regards,
    Josue

    #320270

    Nevermind. I styled it. Thanks!

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Contact Form FROM email’ is closed to new replies.