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

    (@codepeople)

    Hi,

    Could you send me the url to the webpage with the form inserted, to check it in detail, please?

    Best regards.

    Thread Starter rajb

    (@thedatacrawler)

    Hi,

    Here is the page url- https://www.promptcloud.com/roi-calculator

    Thanks

    Plugin Author codepeople

    (@codepeople)

    Hi,

    I’ve checked your webpage, and your form includes 6 fields.

    – The name field,
    – Email field,
    – Message field,
    – Button field,
    – Section break field,
    – and a Calculated field,

    all of them are visible in the form (please, look the screenshot in the following link: http://wordpress.dwbooster.com/customdownloads/2016-05-25/screenshot.jpg)

    By the way, the equation associated to the Calculated field has not much sense: fieldname2+fieldname3+fieldname4, because it is the sum of the name, email, and message.

    About the button inserted in your form, if you want evaluate the equations pressing a button, you should not repeat the equation in the onclick event of the button, simply select as the button’s type the “Calculate” option, and please, remove the code entered in its onclick event because it is incorrect.

    Your current form is not evaluating the equation dynamically, because has been unticked the corresponding checkbox in the “Form Settings” tab.

    Finally, you should know that the theme active in your website is not compatible with jQuery v1.12.3 distributed with WordPress v4.5, and generates an uncaught syntax error, in the line of code:

    $j(".mobile_menu > ul > li.has_sub > span.mobile_arrow, .mobile_menu > ul > li.has_sub > h3, .mobile_menu > ul > li.has_sub > a[href*=#]").on('tap click', function(e) {

    of the file:

    https://cdn-ssl-promptcloud.pressidium.com/wp-content/themes/bridge/js/default.min.js

    Best regards.

    Thread Starter rajb

    (@thedatacrawler)

    Hi, the forms are visible very much, but the inputs to the forms are not. Please try entering the values in any field, the value wont be visible.

    Also, please ignore the button formula, it’s just temporary 🙂

    Plugin Author codepeople

    (@codepeople)

    Hi,

    The texts are there, but the style definition:

    input:valid,textarea:valid{background:0 0;color:#fff}

    in the file:

    https://cdn-ssl-promptcloud.pressidium.com/wp-content/themes/bridge/css/stylesheet.min.css

    Assigns to the texts in textareas and input fields the white color (#fff), but the background is white too, so, the texts are not visible because they have the same color than the background.

    To correct the conflicts with the styles in your theme without edit the files, please, insert a “HTML Content” field in your form, and enter as its content, the piece of code:

    <style>
    #fbuilder input[type="text"],
    #fbuilder input[type="number"],
    #fbuilder input[type="password"],
    #fbuilder textarea{color:#000 !important;}
    </style>

    and that’s all.
    Best regards.

    Thread Starter rajb

    (@thedatacrawler)

    Thank you so much for the help. Working fine now 🙂

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Inputs not getting displayed.’ is closed to new replies.