pexel
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Height problemCould you please show the answer to question C with a visual?
What will be the return to us in this way? I didn’t fully understand, thank you very much
Forum: Plugins
In reply to: [Calculated Fields Form] Height problemHello;
I have 1-2 questions in my mind. I would be glad if you can help me.
1) Let’s say another site added our code via iframe. Is it possible to see which site this site is?
2) Can we analyze the traffic coming to the main site through the form attached to the opposite site?
3) Are there different methods other than iframe?Thanks.
Forum: Plugins
In reply to: [Calculated Fields Form] Height problemi got it done
- This reply was modified 1 year ago by pexel.
Forum: Plugins
In reply to: [Calculated Fields Form] Height problemthanks ??
Forum: Plugins
In reply to: [Calculated Fields Form] Height problemI understand now.
It’s like this:
For example, the Eyüpsultan site uses the code I gave. So when I give the height auto 100% it doesn’t work. on a 3rd party site.Opposite site: Eyüpsultan
What I want to ask is, do we have to manually enter the height on the other party’s site? Or is there a different method?
Thanks
Forum: Plugins
In reply to: [Calculated Fields Form] Height problemLet’s add this code instead of the blue button. Will it work on the opposite site with this code?
Forum: Plugins
In reply to: [Calculated Fields Form] Height problemI page : Hesaplama
If you click the blue button *Sitene Ekle* at the bottom of the form, our code opens.
Forum: Plugins
In reply to: [Calculated Fields Form] Height problemSo, do you have any solution suggestions?
Forum: Plugins
In reply to: [Calculated Fields Form] Result HidingThank you for everything.
Forum: Plugins
In reply to: [Calculated Fields Form] Result HidingFirst of all, thank you very much for your support. You are a very patient person. How should I do it for the “Calculate” button?
If you share this, I will change all the buttons.
thanksif (fbuilderjQuery(this.form).valid()) { my_counter = 0, my_interval = setInterval(function(){ jQuery(".counter").html("Hesapl?yoruz : " + my_counter + " saniye"); if(my_counter == 0){ clearInterval(my_interval); jQuery(".counter").html(""); EVALEQUATIONS(); if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)){ jQuery('html, body').animate({ scrollTop: jQuery('[data-id="pex32pe87"]').offset().top }, 2000); } } my_counter--; }, 1000); }
Forum: Plugins
In reply to: [Calculated Fields Form] Result HidingI have now made the changes as you said. I would like to ask you which functions should I use in the current “Calculate” and “Clear” buttons? I will revise all forms according to the coding you specified.
Forum: Plugins
In reply to: [Calculated Fields Form] Result Hidinghttps://i.hizliresim.com/1eh92jg.JPG
Should I change all buttons like this? Playing with this setting scares me now.
- This reply was modified 1 year, 1 month ago by pexel.
Forum: Plugins
In reply to: [Calculated Fields Form] Result HidingForum: Plugins
In reply to: [Calculated Fields Form] Result HidingFirst of all, I apologize for giving the wrong link address.
You will understand the problem by doing it this way.
Step 1 – calculate inches-cm (criterion A) (result sounds correct)
Step 2 – Calculate cm-inches (criterion B) (result sounds correct)After doing step 2, press the clear button. (calculation clearing)
Step 3- Let’s say calculate again after the cleaning process.Results are coming back to zero (This is the problem)
Corrected Link : Hesaplama
This problem occurs in all calculations with radio buttons.
- This reply was modified 1 year, 1 month ago by pexel.
Forum: Plugins
In reply to: [Calculated Fields Form] Result HidingThis way the code worked.
I choose criterion A and it shows the result 1,2,3. I choose criterion B and it shows the 4th result. There’s only one small problem left.
A calculated, I chose B, calculated. I pressed the clear button. When I pressed it, it went to the default position, I said calculate again, the results show zero.
(function(){ var kriter1 = 0; kriter1 = prec(fieldname2/0.39370,0); jQuery('.choice-a,.choice-b,.choice-c,.choice-d').hide(); if(fieldname4 == 'A'){ jQuery('.choice-a').show(); jQuery('.choice-b').show(); jQuery('.choice-c').show(); } if(fieldname4 == 'B'){ jQuery('.choice-a').hide(); jQuery('.choice-b').hide(); jQuery('.choice-c').hide(); jQuery('.choice-d').show(); } jQuery('#calculation-kriter1').html(kriter1); jQuery('.kriter1-aciklama').html('Ekran K??egeni : '); jQuery('.kriter1-sonuc').html(kriter1+' cm'); return kriter1; })();