Forum Replies Created

Viewing 15 replies - 76 through 90 (of 135 total)
  • Thread Starter Damn!

    (@greedymind)

    Thanks a lot. I’ll be sure to try it out and let you know.

    @gabriello

    I’m having the same issue. I don’t have any hacked or nulled plugins but I installed several outdated plugins inorder to make my registration page display the terms and conditions and since then I’m getting this message “Want create site? Find Free WordPress Themes and plugins.Did you find apk for android? You can find new Free Android Games and apps.”

    I have removed all those plugins but still I’m getting the message. Please tell me how to remove it. Where and how should I search my files to get rid of the hacked code?
    Please help! thanks in advance.

    Thread Starter Damn!

    (@greedymind)

    Hello,

    I know how to show or hide them, but what I want to know is if it is possible to grey out certain fields on a condition, meaning the fields should be visible but inaccessible to the users?

    Thanks.

    Thread Starter Damn!

    (@greedymind)

    Hello again,

    Its the margin in the input tags. margin: 0; solved the problem.

    Thanks.

    Thread Starter Damn!

    (@greedymind)

    Thanks, adding !important did the trick.

    • This reply was modified 7 years, 8 months ago by Damn!.
    Thread Starter Damn!

    (@greedymind)

    Hello again,

    Thanks for pointing in the right direction, I’ve tried this code but it doesn’t seem to be working.

    <style>
    #fbuilder .my-auxiliary-tdee-field input{
    background: none; border: none; text-decoration: underline; font-weight: 800;
    }
    </style>

    Am I missing something? I’m sorry I don’t really know much about these. Thanks.

    Thread Starter Damn!

    (@greedymind)

    Hello,

    Frst of all Thank you. And I’m sorry for asking a newb question as I’m not a tech geek. I just have another question, is it possible to make the cursor “not become” an x when hovered over a dropdown field? because the above code makes the cursor go x when hovered on a dropdown field.

    thanks.

    Thread Starter Damn!

    (@greedymind)

    thanks a lot. it works now

    Thread Starter Damn!

    (@greedymind)

    I’m sorry, but still it doesn’t seem to be working.

    <script>
    jQuery(document).on('change', '.my-unit-dropdown input', function(){
    if(jQuery(this).val() == 'Metric')
    {
    jQuery('.my-auxiliary-kg-field').show().find('input,textarea,select').removeClass('ignore');
    jQuery('.my-auxiliary-kg-field-goal').show().find('input,textarea,select').removeClass('ignore');
    jQuery('.my-auxiliary-lbs-field').hide().find('input,textarea,select').addClass('ignore');
    jQuery('.my-auxiliary-lbs-field-goal').hide().find('input,textarea,select').addClass('ignore');
    }
    else
    {
    jQuery('.my-auxiliary-lbs-field').show().find('input,textarea,select').removeClass('ignore');
    jQuery('.my-auxiliary-lbs-field-goal').show().find('input,textarea,select').removeClass('ignore');
    jQuery('.my-auxiliary-kg-field').hide().find('input,textarea,select').addClass('ignore');
    jQuery('.my-auxiliary-kg-field-goal').hide().find('input,textarea,select').addClass('ignore');
    }
    });
    jQuery(window).on('load', function(){
    jQuery('.my-unit-dropdown input').change();
    });
    </script>

    thanks.

    • This reply was modified 7 years, 10 months ago by Damn!.
    • This reply was modified 7 years, 10 months ago by Damn!.
    Thread Starter Damn!

    (@greedymind)

    Hello again,

    The above code works only when you change the value in the drop down field and that too not properly. What I mean is when the page loads and the default value of drop is metric the code doesn’t work and once you change the value to imperial, the code works and now once again when you change the dropdown value back to metric, it doesn’t bring back the respective kg fields.

    thanks

    Here’s the sample page with 2 forms present: https://damnripped.com/test/

    • This reply was modified 7 years, 10 months ago by Damn!.
    • This reply was modified 7 years, 10 months ago by Damn!.
    • This reply was modified 7 years, 10 months ago by Damn!.
    Thread Starter Damn!

    (@greedymind)

    Hello again,

    The above code doesn’t seem to be working properly for me.

    <script>
    jQuery(document).on('change', '.my-unit-dropdown', function(){
    if(jQuery(this).val() == 'Metric')
    {
    jQuery('.my-auxiliary-kg-field').show().find('input,textarea,select').removeClass('ignore');
    jQuery('.my-auxiliary-kg-field-goal').show().find('input,textarea,select').removeClass('ignore');
    jQuery('.my-auxiliary-lbs-field').hide().find('input,textarea,select').addClass('ignore');
    jQuery('.my-auxiliary-lbs-field-goal').hide().find('input,textarea,select').addClass('ignore');
    }
    else
    {
    jQuery('.my-auxiliary-lbs-field').show().find('input,textarea,select').removeClass('ignore');
    jQuery('.my-auxiliary-lbs-field-goal').show().find('input,textarea,select').removeClass('ignore');
    jQuery('.my-auxiliary-kg-field').hide().find('input,textarea,select').addClass('ignore');
    jQuery('.my-auxiliary-kg-field-goal').hide().find('input,textarea,select').addClass('ignore');
    }
    });
    </script>

    I tried to display two kg fields and hide the lbs fields when the dropdown (present in form 1) value is metric and vice versa.

    • This reply was modified 7 years, 10 months ago by Damn!.
    • This reply was modified 7 years, 10 months ago by Damn!.

    Is it possible to use the value of a “Calculated field in From 1” in “another Calculated field in Form 2” if I have both forms in the same page? If not, is there any other way to achieve this?

    Thread Starter Damn!

    (@greedymind)

    Hello again,

    I also need to know how to change/set the content of the “Instructions for User” of a calculated field from another calculated field dynamically? I mean through code

    Thanks and regards.

    Thread Starter Damn!

    (@greedymind)

    Alright. Another thing I’ve been noticing is that during form building after adding a “HTML content” and putting some code in it and if you select another field and return back to the “HTML content” the code you’ve already put there just vanishes. This happens even if you just move the “HTML content” above or below another field. However, the code persists if you immediately save the form after adding the code into the “HTML content”.

    • This reply was modified 7 years, 10 months ago by Damn!. Reason: typo
    • This reply was modified 7 years, 10 months ago by Damn!.
    Thread Starter Damn!

    (@greedymind)

    Hello,

    Inserting the <meta> tag seems to prevent the zooming altogether, so I didn’t. Regarding the SELECT tag, I’ve included it and it works now. thanks a lot.

    • This reply was modified 7 years, 10 months ago by Damn!.
Viewing 15 replies - 76 through 90 (of 135 total)