• Resolved pferreiro

    (@pferreiro)


    Hello,

    I would like to know how to include a simple paragraph of text in which an external link can be included.

    For example, to accept the Privacy Policy, it is necessary for the user to accept confirming with a check box, but it is necessary to have a text link with a link to read the privacy text.

    Does anyone know how to do this?

    Regards,
    Pedro

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

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author EDGARROJAS

    (@edgarrojas)

    Hello!

    A field for this is going to be added but for now you can do this by adding a multiple check box field with only one element and then add this in the javascript section of your form:

    
      //AUTO GENERATED CODE, DO NOT DELETE
    (function(){var javaObject={
    
    //YOU CAN PUT YOUR CODE BELLOW
    
    //jQueryFormReference:A jquery reference of the loaded form
    AfterFormLoaded:function(jQueryFormReference){
         rnJQuery('#rnField10 .redNaoCheckBox ').empty().append('Aggree to  <a target="_blank" href="https://www.google.com" rel="noopener noreferrer">Terms and services</a>');
    },
    
    //jQueryFormReference:A jquery reference of the loaded form
    //formData:An object with the information that is going to be submitted
    BeforeFormSubmit:function(formData,jQueryFormReference){
        //Here you can put code that you want to be executed before the form is submitted
    }
    
    //MORE AUTO GENERATED CODE, DO NOT DELETE
    }; return javaObject;})    
    
    

    change ‘rnField10’ for the id of your field (which you can find in the advance section of your form).

    Hope this helps but if it doesn’t please let me know!

    • This reply was modified 6 years, 6 months ago by EDGARROJAS.
    Thread Starter pferreiro

    (@pferreiro)

    Hello @Edagarrojas

    Thanks for response, but i don′t see where can put the link?

    I need the checkbox unchecked, and the text “Agree Terms and services” this is ok.
    But i need add a text link to the article for user read, for example:
    X Agree terms and services. Please check my Privacy policy.

    Best Regards,
    Pedro

    • This reply was modified 6 years, 6 months ago by pferreiro.
    Plugin Author EDGARROJAS

    (@edgarrojas)

    Ah sorry forgot that part, you also need to change https://www.google.com for the url that you want to open.

    Regards!

    Thread Starter pferreiro

    (@pferreiro)

    XDDD

    @edagarrojas, where ? i don′t see any https://www.google.com ??

    Best Regards,
    Pedro

    Plugin Author EDGARROJAS

    (@edgarrojas)

    Its in the code that i sent you

    
    rnJQuery('#rnField10 .redNaoCheckBox ').empty().append('Aggree to  <a target="_blank" href="https://www.google.com" rel="noopener noreferrer">Terms and services</a>');
    

    Regards!

    • This reply was modified 6 years, 6 months ago by EDGARROJAS.
    Plugin Author EDGARROJAS

    (@edgarrojas)

    Its in the code that i sent you

    rnJQuery(‘#rnField10 .redNaoCheckBox ‘).empty().append(‘Aggree to Terms and services‘);

    Regards!

    Thread Starter pferreiro

    (@pferreiro)

    NICE!!!

    Thank you!!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to include a simple paragraph of text with an external link’ is closed to new replies.