CodePeople2
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Button Style (Value)Hello @eberkland
You cannot use
::beforeif the tag does not have the structure<tag></tag>, so, you cannot apply it to a<input>tag.If you want to create a button with a custom structure and design, you must enter its tags directly in the content of an “HTML Content” field, and in this case, you can insert the button as
<button type="button">The text</button>Best regards.
Forum: Reviews
In reply to: [Calculated Fields Form] badHello @antiwp
I apologize for the repeated inquiries. Have you had an opportunity to test the most recent plugin update? Could you please confirm if it has resolved the plugin issue you were experiencing on your website? Thank you very much for your time and attention to this matter.
Forum: Plugins
In reply to: [Calculated Fields Form] Setting Dynamic Field Width Classes with JQueryHello @eberkland
In the equation context, if you want to access the field jQuery object, the correct code would be:
getField(fieldname66|n).jQueryRef().removeClass("col-xs-2 col-sm-2 col-md-2 col-lg-2").addClass("col-xs-2 col-sm-2 col-md-2 col-lg-2");You can use the same format to refer to the names of the fields in the equations with the SHOWFIELD and HIDEFIELD operations:
SHOWFIELD(fieldname68|n);Bet regards.
Forum: Plugins
In reply to: [Calculated Fields Form] IF operandHello @ohtusabes
In Javascript, the equality operator is the double symbol ==, only one symbol is used for the assignment. So, the equation must be implemented as follows:
IF(fieldname16==1, fieldname13*1.36, fieldname13/1.36)Best regards.
Forum: Plugins
In reply to: [Loading Page with Loading Screen] Logo Animation SizeHello @snowghostdesign
Thank you so much for using our plugin. Yes, that’s possible. Please enter the style definition below through the “Appearance > Customize > Additional CSS” menu option:
.lp-logo-wrapper,
#lp_ls_img{width:200px !important;}Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Checkbox Include Quantity BoxesHello @eberkland
You should include the quantities property in the object you pass as the parameter in the setChoices method.
getField(fieldname455|n).setChoices({texts:['Accent Shelf'], values:[fieldname331], quantities:[45]});Instead of 45, you can use a field’s name.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Checkbox Include Quantity BoxesHello @eberkland
By ticking the quantity boxes checkbox the plugin displays a number input tag per checkbox choice and as the field’s value the plugin multiples the choice’s value by the quantity.
If you tick the “Display when choice ticked” attribute in the checkbox field’s settings, the plugin will display the number input tag only if the corresponding choice is ticked.
Best regards.
Forum: Reviews
In reply to: [Calculated Fields Form] badHello @antiwp
I sincerely apologize for the inconvenience this has caused. Could you please install the latest plugin update that was just released? I would greatly appreciate it if you could let me know whether the issue persists afterward. Thank you for your understanding!
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Line BreaksHi! @emijus2023
We are not allowed to support any customers in these forums.
For pro or commercial product support please contact us directly on our site. This includes any pre-sales topics as well.
Commercial products are not supported in these forums. We will happily answer this and any other questions you can have on our own site.
Thank you.
Forum: Plugins
In reply to: [Calculated Fields Form] Line BreaksHello @emijus2023
Thank you so much for using our plugin. The calculated fields use input tags. The input tags are single-line controls. The alternative is to use the calculated field as an auxiliary to make the calculations but display the result in another field, like an “HTML Content” field.
Please follow the steps below:
Assuming the calculated field is the fieldname123 (you must use the field’s name on your form). Insert an “HTML Content” field in the form and enter a div, span, p, or any other tag in its content, but with the
data-cff-fieldattribute indicating the field’s name whose value you want to display in the tag:<div data-cff-field="fieldname123"></div>Edit the equation as follows:
'Geschätztes Vermögen nach '+fieldname54+' Jahren beträgt: <br>'+fieldname53 + ' €.'Finally, as the calculated field is being used as an auxiliary, you can hide it by ticking a checkbox in its settings
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Html table bordersHello @ohtusabes
The “https://app.ucimhef.org/wp-content/themes/colormag/style.css” file in the theme active contains the style definition:
table td {
padding: 6px 12px;
border-bottom: 1px solid #27272a;
}If you want to overwrite it from your form, enter the style definition below through the “Customize Form Design” attribute in the “Form Settings > Advanced Settings” tab:
#fbuilder table td{border:1px solid #88929b !important;}Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Html table bordersForum: Plugins
In reply to: [Calculated Fields Form] Html table bordersHello @ohtusabes
The issue is not caused by the plugin but a style defined in the theme active on your website.
Unfortunately, each time I visit the URL provided (
https://app.ucimhef.org/ecog/) to check the styles, your website redirects me to the homepage. Please watch the following video:https://resources.developers4web.com/cff/tmp/2025/01/07/video_o.mp4
If you don’t want the styles in the theme to affect the styles in the form, you can try to load the form into an iframe by passing the iframe attribute through the form’s shortcode:
[CP_CALCULATED_FIELDS id="84" iframe="1"]Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Html table bordersHello @ohtusabes
I visited your form and the table includes all its borders. Please look at the screenshot image below:

So, I assume the issue is related to the styles on your public website. Please enter the style definition in the form settings with the !important; modifier.
border: 1px solid #88929b !important;Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Html table bordersHello @ohtusabes
The URL provided redirects me the website home page. Could you please indicate the form id to access its URL directly?
Best regards.