codepeople
Forum Replies Created
-
Forum: Plugins
In reply to: [CP Multi View Events Calendar] Calendar not showing – Chrome/MacHi,
Please check with the new update version #1.4.26
Thank you for the feedback!
Hello @vaestve
Thank you very much for using our plugin. Yes, the Developer plugin version includes the CFFCHART operation. It is a proxy for the ChartJS library, and the ChartJS library allows you to draw a chart with the structure you want. Please read the following tutorial:
https://blog.vanila.io/chart-js-tutorial-how-to-make-gradient-line-chart-af145e5c92f9
The tutorial is for using ChartJS, but the same logic is applied to the CFFCHART operation. The installation steps in the tutorial are unnecessary when you use our plugin because the plugin controls this process.
Best regards.
Forum: Reviews
In reply to: [CP Referrer and Conversion Tracking] Fantastic PluginThank you very much for the review!
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Wrap the Text Inside Result fieldHello @hheyhey568
Thank you very much for using our plugin. The calculated fields use input tags with type=”text”, but you can use it as an auxiliary and display the result elsewhere.
For example, assuming the calculated field is the fieldname123.
- Insert an “HTML Content” field in the form and enter a tag in its content attribute with the data-cff-field indicating the name of the field to whose value you want to display:
<div data-cff-field="fieldname123"></div>- Since you use the calculated field as an auxiliary, you can hide it by ticking a checkbox in its settings.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] forumula to trim text fieldHello @edit4ever
Thank you very much for using our plugin. In the equations, you can use any JS function. For example, if you want the three first characters in the fieldname1 value, you can insert a calculated field in the form and enter the equation:
String(fieldname1).substr(0,3);Best regards.
Forum: Plugins
In reply to: [Music Store - WordPress eCommerce] Change HTML of song siteHello @kastenbrot
Thank you very much for using our plugin. You can modify the templates used by the songs pages and the shop page by visiting the “Music Store > Products Templates” menu option:
https://musicstore.dwbooster.com/documentation#products-templates
Tick the “Using custom templates” checkbox and edit the HTML structure of the templates plates.
Best regards.
Hi,
Thee “only rule” overwrites the “recurrent rule” for the specified date. In that case add two “only rules” for that date for adding both time intervals.
Thank you for using the plugin!
Forum: Plugins
In reply to: [Booking Calendar Contact Form] Order of fields – impossible to changeHi,
There may be an incomplete database update. If you moved from the version 5.x to a smaller 1.2.50 then you may have replaced a commercial version with a free version of the plugin. If this is the case, for commercial-related 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: [CP Multi View Events Calendar] The calendar cannot been seen on androidHi,
Please try updating to the latest version #1.4.25
Thank you for the feedback!
Forum: Plugins
In reply to: [Calculated Fields Form] Voting weightHi! 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: [Appointment Booking Calendar] Submit form without paymentHi,
If the payment is optional or not required, we have another appointment booking plugin that matches better those requirements, the Appointment Hour Booking plugin.
You can get it at https://ww.wp.xz.cn/plugins/appointment-hour-booking/
Thank you for your interest in the plugin!
Forum: Plugins
In reply to: [Calculated Fields Form] Voting weightHello @ikus1i
To allow the registered users voting only once you will need the “CFF – Users Permissions” add-on distributed with the Developer and Platinum plugin distributions. Learn more about the “CFF – Users Permissions” add-on by reading the following blog post:
https://cff.dwbooster.com/blog/2019/07/04/users-permissions
Your equation is incomplete. Furthermore, in my opinion a better alternative would be to store the users votes weights as users metadata and access them by using the DS fields.
https://cff.dwbooster.com/blog/2019/02/14/ds
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Selective CFF forms stop displayingHello @dthimsen
Thank you very much for sharing your experience. When you insert the form shortcode with the iframe attribute, the form will be affected only by the styles distributed with the plugin and the styles you enter via the “Customize Form Design” attribute in the “Form Settings” tab. However, when you insert the shortcode without the additional attribute, every CSS file loaded by your website (the CSS rules in the website theme and third-party plugins) can modify the form appearance.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Formula QuestionHello @helloplanetat
Please look at the DECIMALTOTIME operation in the plugin documentation:
https://cff.dwbooster.com/documentation#datetime-module
But please note you must enter valid decimal values (3.75 not 3,75):
DECIMALTOTIME( 3.75, 'h', 'hh:ii' )Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Formula QuestionHello @helloplanetat
You can use the PREC operation as the outermost operation in the equation:
PREC(X, Y) round the number X with Y decimals:
Ex.
PREC(MIN(fieldname1/300,fieldname2/3)*1.5, 2)or
(function(){ let v1 = fieldname1/300, v2 = fieldname2/3; return PREC(MIN(v1,v2)/2+MAX(v1,v2), 2); })()Best regards.