• Hello,

    I would like create a field with the same text, like “Source Lead: My WP Site”
    User doesn’t need to see, I need from my crm.

Viewing 1 replies (of 1 total)
  • Hi @caygri,

    Possibly the below guidline would help you:

    In the CF7 itself, create a hidden field
    [hidden source]

    And via *.JS file insert the value for it, possibly using JQuery and event of form upload or mouse hoover, that trigers a functions updating the value for the created hidden CF7 field.

    
    #some function triggered and calling 'add_text' function
    
    
    function add_text{
        $('[name="source"]').val('Source Lead: My WP Site');
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘How setup hidden field?’ is closed to new replies.