muzicutza81
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Load section at tophttps://www.mea.coop/member-services/cost-estimator/ and the password is T3$+M3
Forum: Plugins
In reply to: [Calculated Fields Form] Show/hide dependencies on multiple fieldsAaahhhh!! You are the hero of my day!!! That will teach me to monkey around with changing field names in the database (didn’t realize I changed more than just the field names … oops). Thank you so much!!!! You’re da best!
Forum: Plugins
In reply to: [Calculated Fields Form] Show/hide dependencies on multiple fieldsHello @codepeople
Thank you for your prompt reply! I updated the CFF plugin to the latest version this morning and recreated the form from scratch to have the unaltered fieldname# field names (any plans on allowing these to be updated?). Unfortunately I am still experiencing the same issue. Your assistance with this would be very much appreciated!
Thank you
Forum: Plugins
In reply to: [Calculated Fields Form] Radio Buttons field second click behaviorHi @codepeople,
Thanks! I’ll move the css code to the “Customize Form Design” attribute in the “Form Settings” tab.
The new code for the radio buttons works great!!!!
You’re awesome! Thank you so much!
Forum: Plugins
In reply to: [Calculated Fields Form] Radio Buttons field second click behaviorOn an unrelated note, does css placed in the stylepublic.css get overwritten with updates? My changes in the past few days got lost with today’s updates.
Forum: Plugins
In reply to: [Calculated Fields Form] Radio Buttons field second click behaviorI updated both testing and production websites to the 1.0.215 version. Cloned our production calculator, added the code provided, and posted it on a new page here: https://www.mea.coop/member-services/estimate-calculator-test/.
I wish I could have you test on the testing website but it is not accessible externally.
Please let me know if you would rather I contact you via your private website regarding this.
Thanks much for all you do!
Forum: Plugins
In reply to: [Calculated Fields Form] Radio Buttons field second click behaviorAs a precaution, we only update our testing website (not accessible to anyone else except internally) and only if there are no issues we update our production website. I’ve made an exception in this case and just went ahead and updated our production website (probably after you checked it). Right after the update to 1.0.214 we got a notification about 1.0.215 being released so I will give that a try on the testing website first and will get back here to let you know if that made a difference. If not, I will go ahead and create a ticket on your private website. Thanks!
Forum: Plugins
In reply to: [Calculated Fields Form] Radio Buttons field second click behaviorHi @codepeople,
I installed the latest update on our testing website however the radio button field does not work at all now with the code provided. Before the update and using the code provided, it appeared that it was selecting a radio button (based on the other fields I have showing when certain radio buttons are selected) although the radio button itself did not show selected. Now, with the code provided, if I click on any of the radio buttons nothing happens (none of my other fields dependent on the radio button field are showing). I had to remove the code for the time being.
Forum: Plugins
In reply to: [Calculated Fields Form] Single Line Text enter key behaviorThanks a bunch! Ended up using the following to simulate the Next button click also:
<script>
jQuery(‘[id*=”cp_calculatedfieldsf_pform”] input’).on(‘keypress’, function(e) {
if (e.keyCode == 13)
{
jQuery(this).closest(‘.pbreak’).find(‘.pbNext’).click();
return false;
}
else return e.keyCode;
});
</script>Forum: Plugins
In reply to: [Calculated Fields Form] Radio Buttons field second click behaviorI tried this but while I can see that clicking on a radio button selects it based on the fields that I have showing depending on which radio button is clicked, the radio buttons themselves never show as selected when using this code. I still want the radio buttons to show as selected when they are selected.
It appears that it executes the click event on the radio button element twice.
Thanks @codepeople. I knew I was making it too complicated. This is much cleaner and it works. Thanks!
Thank you. Just a quick note for anyone else that might need to accomplish this also; I had to change the suggested code for the calculated field to return a variable as described in another support post:
(function(){
var equipment = fieldname2;
jQuery(‘.equipment-selected’).html(equipment);
return equipment;
})()Then added an HTML content field and included a span (instead of a div) with the class of equipment-selected:
“You identified <span class=”equipment-selected” style=”font-weight:bold;” /> as the nearest piece of equipment…”
Thank you for the assistance! This works! Any plans on simplifying how field values are included in HTML content in the near future?
Forum: Plugins
In reply to: [Calculated Fields Form] Hide Next button depending on selection madeThat worked wonderfully! Thanks!
Okay, thank you. Just sent a note from monsterinsights.com/lite-support/.
Alina