slandoulsi
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] CFF compatibility with Loading page pluginHello
It does work, thanks.
However, I improved it a little bit because the data-evalequations functions make the select and radio buttons with dependencies extremly slow. So I turn off the function for any change outside the fields without the assigned
withequation
class, the fields with equation. That significantly improve the form performence.jQuery('.withequation').change( function(){ jQuery('[id*="cp_calculatedfieldsf_pform_"]').attr('data-evalequations',1); }); jQuery('select:not(.withequation)').change( function(){ jQuery('[id*="cp_calculatedfieldsf_pform_"]').attr('data-evalequations',0); }); jQuery('input:not(.withequation)').change( function(){ jQuery('[id*="cp_calculatedfieldsf_pform_"]').attr('data-evalequations',0); });
Best regards,
sklForum: Plugins
In reply to: [Calculated Fields Form] CFF compatibility with Loading page pluginI’m sorry but that does not work. The equations are not being evaluated after page load.
Thanks
sklForum: Plugins
In reply to: [Calculated Fields Form] One Webmerge resistant fieldHello,
sorry I’m back to this old topic. This field is now correctly send to Zappier/Webmerge but it is value is not saved after submission. I mean that when the form user click on “Update” then this field is back to its default value.
Can you please help me again on this ?
Best Regards,
sklForum: Plugins
In reply to: [Calculated Fields Form] Avoiding \\\\ caracters in text areasExcellent, thanks a lot for fixing this.
I tested it, it works.skl
Forum: Plugins
In reply to: [Calculated Fields Form] CFF compatibility with Loading page pluginHello,
I was convinced that both the form builder and the loading time were extremly slow because of my numerous fields. In fact, the dynamical evaluation of the equations was creating that. I did what you suggested and this solved the issue, that’s great thanks !
The problem now is that I have to find a way to dynamicaly calculate the fields. I’d rather not to use a calculate button. Is there any way to call the calculate function on a change value of just specific fields, the ones involved in equations ?
Best Regards,
SkLForum: Plugins
In reply to: [Calculated Fields Form] CFF compatibility with Loading page pluginHello
I’m sorry… I have forgotten that I just deleted it.
It is installed now, you can checkRegards,
SkLForum: Plugins
In reply to: [Calculated Fields Form] CFF compatibility with Loading page pluginHello
It is configured as “Classic (Recommended)”
My url
https://dafteam.tn/wp/business-plan-initial/
and psw : dafteam123456Regards,
SkLForum: Plugins
In reply to: [Calculated Fields Form] Deleting deleted form datait is good that you fixed that in your latest realease.
Thanks
Forum: Plugins
In reply to: [Calculated Fields Form] Deleting deleted form dataHi
that’s precisely my problem : this form does not appear in the message section anymore thus can not be deleted… So what can I do to remove it ?
Regards,
sklForum: Plugins
In reply to: [Calculated Fields Form] Changing date languagewell, it just started working… probably just a cache problem. Forget my question then please
Thanks
Forum: Plugins
In reply to: [Calculated Fields Form] Bypassing Webhook when submitting formHi,
Thanks for your reply but let me clarify what I’m trying to do.
My form has a submit button on its last page, with a webhook to Webmerge.
I would like to add a “Save your form” button on each page of the form that store form data without sending anything to Webmerge.I see that in the CFF-Webhook section of the form settings you can add several Webhook URL. Can’t I link this second “Save your form” button (maybe with a submit() onclikevent) to a blank Webhook URL in order not to submit the form to Webmerge ?
Best Regards,
SkLForum: Plugins
In reply to: [Calculated Fields Form] Customizing dex_printable_contents tableHi,
In fact, I was referring to the table that can be displayed in the user account with the Users Permissions add-on. I modified the headers with some JQ and CSS, however I still need to modify two things :
– translate the “Update” link to “Modifier”,
– replace the existing form name in the second column by a field valueThanks for your help
SkLperfect! thanks
Forum: Plugins
In reply to: [Calculated Fields Form] Form submition does not save ‘hide’ classyesssss !!!!
Thanks a lot !
Forum: Plugins
In reply to: [Calculated Fields Form] Form submition does not save ‘hide’ classHello,
I thought you meant something like that but it didn’t work… did I miss something ?
<script>
fbuilderjQuery(document).one(‘showHideDepEvent’, function(){
var $ = fbuilderjQuery;
if($(‘[id*=”fieldname745_”]’).val() !== ” )
{
jQuery(‘.personnel2’).removeClass( ‘hide’ );
}
if($(‘[id*=”fieldname766_”]’).val() !== ” )
{
jQuery(‘.personnel3’).removeClass( ‘hide’ );
}});
</script>Regards,
Skander