CodePeople2
Forum Replies Created
-
Forum: Reviews
In reply to: [Calculated Fields Form] niceForum: Plugins
In reply to: [Calculated Fields Form] Calculated field sizeHello @ohtusabes
The calculated fields use input tags, the input tags are one-line controls, they cannot display the results in multiple lines. However, if you prefer to display the result into a multiline control, you can use a textarea field.
For example, you can insert a textarea field in the form, I’ll call it fieldname123 and tick the “Read-only” checkbox in its settings. Finally, edit the equation in the calculated field as follows:
(function(){
getField(fieldname123|n).setVal(fieldname73);
return fieldname73;
})()Like in my previous post, you can hide the calculated field by ticking a checkbox in its settings.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Calculated field sizeHello @ohtusabes
In this case, the recommended solution is to use the calculated field as an auxiliary to calculate the result but display it in another component.
Please insert an “HTML Content” field in the form and enter a div tag as its content with the
data-cff-fieldattribute indicating the field’s name whose value you want to display in the tag.<div data-cff-field="fieldname54"></div>Since the calculated field is used as an auxiliary, you can tick a checkbox in its settings to hide the field from the form.
Best regards.
Hello @ohtusabes
Thank you very much for using our plugin. If you want to populate fields in form B with the information submitted by form A, you need to insert the shortcode for results on the same page where the form B shortcode is inserted as described in the following section of the plugin documentation:
https://cff.dwbooster.com/documentation#populate-form-b-with-a
However, the shortcode for results is supported by the commercial plugin versions only.
Another alternative would be to include the fields’ tags as parameters in the Thank you page URL. E.g.
https://www.yourwebsite.com/thank-you-page?param1=<%fieldname1%>¶m2=<%fieldname2%>Then, in form B, you can insert a calculated field as an auxiliary that uses the getURLParameter operation to access the URL parameters and assign their values to the fields.
E.g.
(function(){
getField(fieldname1|n).setVal(getURLParameter('param1', ''));
getField(fieldname2|n).setVal(getURLParameter('param2', ''));
})()You can hide the calculated field by ticking a checkbox in its settings.
Learn more about the getURLParameter by reading the following section in the plugin documentation:
https://cff.dwbooster.com/documentation#url-module
Best regards.
Forum: Plugins
In reply to: [Loading Page with Loading Screen] Help with close loading buttonHello @peopleinside
I’m trying to find a solution while the WP Meteor team responds to your other forum post.
Best regards.
Forum: Plugins
In reply to: [Loading Page with Loading Screen] Help with close loading buttonHello @peopleinside
That’s quite strange. When you uncheck the checkbox, the plugin should not enqueue the “links.min.js” file. However, I visited your webpage and noticed that the file is still being loaded. Are you certain that your website is not serving the page from a cache? A CDN server might be involved in this.
Best regards.
Forum: Plugins
In reply to: [Loading Page with Loading Screen] Help with close loading buttonHello @peopleinside
Could you please perform a quick test? Navigate to our plugin settings and uncheck the “Show loading screen when clicking on link” option. After that, kindly purge both the website and browser caches. Once you’ve done that, please let me know if the issue persists. Thank you!
Best regards.
Forum: Plugins
In reply to: [Loading Page with Loading Screen] Help with close loading buttonHello @peopleinside
Thank you so much. I suspect that the issue may stem from a combination of plugins rather than solely from WP Meteor. It appears that you are using other optimization and cache management plugins, and this combination could potentially be causing the problem. I will install these plugins on my end to investigate the results further.
Best regards.
Forum: Plugins
In reply to: [Loading Page with Loading Screen] Help with close loading buttonHello @peopleinside
I installed WP Meteor on my end trying to emulate the issue you are reporting and it is not happening on my website. Could you please provide the list of plugins installed on your WordPress? You can get it through the “Tools > Site Health” menu option and then by pressing the “Copy site info to clipboard” button in the “Info” tab. Additionally, please describe your “WP Meteor” settings so I can configure it the same.
Best regards.
Hello @eberkland
Could you please provide the link to the page containing the form to check the code in action?
Best regards.
Forum: Plugins
In reply to: [Loading Page with Loading Screen] Help with close loading buttonHello @peopleinside
Could you please try the following modification?
Open the “/wp-content/plugins/loading-page/js/loading-page.min.js” file with the text editor of your choice.
Go to the piece of code below:
"click"And edit it as follows:
"mousedown"Finally, purge the website and browser caches before checking again.
Best regards.
Forum: Plugins
In reply to: [Loading Page with Loading Screen] Help with close loading buttonHello @peopleinside
Please note the loading screen on page A where you click the link is independent of the loading screen on page B, the new one. So, you should click the close button on page B. Also, I noted that in mobile there is an element that is positioned covering part of the close button. Please try entering the style definition below through the “Appearance > Customize > Additional CSS” menu option:
.lp-close-screen {
z-index: 99999999 !important;
}Please purge the website and browse caches before trying again.
I appreciate you let me know if the issue is solved.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Autocomplete Places in different fieldsHi!
I’m sorry, We’d like to help but we can’t reply about that in this forum. 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] Autocomplete Places in different fieldsHello @svd89
Are you referring to the Autocomplete add-on in the Platinum plugin distribution?
Best regards.