luciche
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Go button on mobileDoes this script work in all forms? I’ve added an HTML field in 2 forms, and in one form works but not in the other. For example, in this one https://notariate.ro/calculator-taxe-notariale/?ipoteca
Thank you- This reply was modified 4 years, 6 months ago by Jan Dembowski.
Forum: Plugins
In reply to: [Calculated Fields Form] Go button on mobileThat worked, but I was wondering if it’s possible to close/collapse the numeric keyboard after taping on GO, so the users can see the rest of the form. Most of them don’t know how to close/collapse the numeric keyboard, and it covers half the screen.
Thank youForum: Plugins
In reply to: [Calculated Fields Form] Go button on mobileI’ve added an HTML field in the form with the code above, but there is no difference. Can I just disable the submit option for this form?
I only use it to calculate and not to submit.
Thank youForum: Plugins
In reply to: [Internal Links Manager] Revert to older versionHi @webraketen,
that was the first thing I’ve tried before I opened this topic, since I have the WP Rollback plugin, but it says that you only have new releases:“It appears there are no version to select. This is likely due to the plugin author not using tags for their versions and only committing new releases to the repository trunk.”
Forum: Plugins
In reply to: [Calculated Fields Form] Field Value from one form to anotherThat worked, thank you.
Forum: Plugins
In reply to: [Calculated Fields Form] Field Value from one form to anotherhttps://notariate.ro/calculator-taxe-notariale/#cff
the main form is the 1st at the top of the page
and the secondary form is at the bottom of the page- This reply was modified 4 years, 6 months ago by Jan Dembowski.
Forum: Plugins
In reply to: [Calculated Fields Form] Field Value from one form to anotherhi,
I’ve added class-a in the main form, from which I want the value to be copied.
I’ve added class-b in a second form in a hidden field and I’ve added the code in an HTML field, but it doesn’t retrieve the value.I tried adding the CSS class with and without the . (dot)
Forum: Plugins
In reply to: [Calculated Fields Form] Field Value from one form to anotherYes.
Forum: Plugins
In reply to: [Calculated Fields Form] Post title as field valueI’ll have a look, thank you.
Forum: Plugins
In reply to: [Calculated Fields Form] Post title as field valueAs mentioned in the post above:
“the title is in a different post than the one with the form.
The title is in post-8331 and the form is in post-1086”I want the title of this post-8331 https://notariate.ro/4-7545/
added in the form that is in this page https://notariate.ro/calculator-taxe-notariale/
They are different pages
Forum: Plugins
In reply to: [Calculated Fields Form] Post title as field valueAdded https://ibb.co/2jJYrGq but nothing.
As mentioned, the title is in a different post than the one with the form.
The title is in post-8331 and the form is in post-1086Forum: Plugins
In reply to: [Calculated Fields Form] Post title as field valuehttps://tinyurl.com/ybl7acob
it’s the entry title H1Forum: Plugins
In reply to: [Calculated Fields Form] Post title as field valueThe reason why I want to insert the page name, and not just a number, is that the page name changes daily automatically (exchange rate scraper)
Forum: Plugins
In reply to: [Calculated Fields Form] Post title as field valueThe title of the post-8331 is a number (4.8408), not text
https://tinyurl.com/ybl7acobForum: Plugins
In reply to: [Calculated Fields Form] Post title as field valueUnderstood.
I’ve removed the HTML field, I’ve left only the calculated field (fieldname25 https://ibb.co/DfdQnQF), replaced the fieldname23 with fieldname25 in the equation(function(){ var v = fieldname2*((fieldname16 == 'Euro') ? fieldname25 : 1); if(v <= 100) return 0; if(v <= 7000) return PREC(150*1.19, 0); if(v <= 15000) return PREC((v*.022)*1.19, 0); if(v <= 30000) return PREC(((v-15001)*.016+330)*1.19, 0); if(v <= 60000) return PREC(((v-30001)*.013+580)*1.19, 0); if(v <= 300000) return PREC(((v-60001)*.009+970)*1.19, 0); if(v <= 600000) return PREC(((v-300001)*.0065+3130)*1.19, 0); return PREC(((v-600001)*.0044+5080)*1.19, 0); })()and added the shortcode
[CP_CALCULATED_FIELDS id="12" post_var="post-8331"]into a page but it doesn’t calculate.
I’m adding the shortcode in another page, not 8331.
What am I missing?
Thank you