Damn!
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Disable fieldsThanks a lot. I’ll be sure to try it out and let you know.
Forum: Fixing WordPress
In reply to: Malicious text appears when i am logged offI’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.Forum: Plugins
In reply to: [Calculated Fields Form] Disable fieldsHello,
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.
Forum: Plugins
In reply to: [Calculated Fields Form] Distance between fieldsHello again,
Its the margin in the input tags.
margin: 0;
solved the problem.Thanks.
Forum: Plugins
In reply to: [Calculated Fields Form] Remove styles on a fieldThanks, adding
!important
did the trick.- This reply was modified 7 years, 8 months ago by Damn!.
Forum: Plugins
In reply to: [Calculated Fields Form] Remove styles on a fieldHello 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.
Forum: Plugins
In reply to: [Calculated Fields Form] Mouse cursorHello,
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.
Forum: Plugins
In reply to: [Calculated Fields Form] connecting formsthanks a lot. it works now
Forum: Plugins
In reply to: [Calculated Fields Form] connecting formsI’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.
Forum: Plugins
In reply to: [Calculated Fields Form] connecting formsHello 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/
Forum: Plugins
In reply to: [Calculated Fields Form] connecting formsHello 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.
Forum: Plugins
In reply to: [Calculated Fields Form] “Connecting” Forms in some wayIs 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?
Forum: Plugins
In reply to: [Calculated Fields Form] Instructions for UserHello 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.
Forum: Plugins
In reply to: [Calculated Fields Form] Possible Bug in iOS devicesAlright. 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”.
Forum: Plugins
In reply to: [Calculated Fields Form] How to prevent iPhone from zooming in on fields?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!.