codepeople
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Informations about the PluginHello @derko0
Thank you very much for contacting us. You can use the CHARSCOUNTER operation in the text operations module:
https://cff.dwbooster.com/documentation#text-module
For example, assuming you have the single line text, or text area fieldname1.
You can insert a calculated field in the form and enter the following equation in its “Set Equation” attribute:
CHARSCOUNTER(fieldname1)Or if you want to ignore space characters:
CHARSCOUNTER(fieldname1, true)Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Calculate field change background dynamicallyHello @mpmarinov
The error is in the CSS styles block. The correct is:
#fbuilder .red.cff-calculated-field input{background-color:#fccbc8 !important;}
#fbuilder .green.cff-calculated-field input{background-color:#90ee90 !important;}
#fbuilder .orange.cff-calculated-field input{background-color:#f6d77a !important;}Without space between the red, green, or orange class names and cff-calculated-field because you are applying both class names to the same tag. You assign the red, green, or orange class name to a tag that has the cff-calculated-field class name assigned.
Best regards.
Forum: Reviews
In reply to: [CP Contact Form with PayPal] Sad endingHi,
You should be using an outdated version of the plugin not compatible with PHP 8.x. Confirm the version number you have installed and be sure to update to the latest version to keep the plugin compatible with the latest PHP and WordPress versions.
The CP Contact Form with PayPal is already compatible with the latest PHP and WordPress versions.
If you need help about the update process you can post a support ticket at https://ww.wp.xz.cn/support/plugin/cp-contact-form-with-paypal/#new-topic-0
Thank you for the feedback!
Forum: Plugins
In reply to: [Loading Page with Loading Screen] Add textHello @julian74
Yes, that’s possible. You can do it with CSS. For example, enter the following piece of code into the “Include an ad, or your own block of code” attribute in the plugin settings page:
<style>
.lp-logo-wrapper::after{
content:"My Text Here";
display:inline-block;
width:100%;
min-width:300px;
margin-left:50%;
transform:translate(-50%);
text-align:center;
font-size:24px;
font-family:sans-serif;
}
</style>Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Fitness and Health OperationsHello @mpmarinov
Thank you very much for the clarification. You are referring to the operations in the “CFF Fitness and Health Operations” complementary plugin, not the Calculated Fields Form. In this case, I recommend to include a function for the translation on your form.
You can insert an “HTML Content” field in the form with a function similar to the following one as its content (I’m sorry, I used a translator for Bulgarian texts):
<script>
function my_translator(v) {
switch(v){
case 'Severe Thinness': return 'Тежка тънкост';
case 'Moderate Thinness': return 'Умерена тънкост';
case 'Mild Thinness': return 'Лека тънкост';
case 'Normal': return 'Нормален';
case 'Overweight': return 'Наднормено тегло';
case 'Obese Class I': return 'Затлъстяване клас I';
case 'Obese Class II': return 'Затлъстяване клас II';
case 'Obese Class III': return 'Затлъстяване клас III';
}
return v;
}
</script>And call it from your equation:
my_translator(BMI(fieldname1, fieldname2, true));But note the BMI operation returns the textual result if you pass true as its third paratmeter.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Fitness and Health OperationsHello @mpmarinov
Thank you very much for using our plugin. Every text in the forms is entered through its settings. The fields’ labels, instructions for the users, form title, and description, are entered through the controls settings and the “Form Settings” tab. The common texts, like error messages, buttons labels, captcha label, and others are entered through the “Define Text” (https://cff.dwbooster.com/documentation#texts-section) and “Validation Settings” (https://cff.dwbooster.com/documentation#validation-settings) sections in the form settings.
However, if you want to create a multilanguage form, you can install the “Multilanguage For Calculated Fields Form” complementary plugin:
https://cff-bundles.dwbooster.com/product/multilanguage
Best regards.
Hi,
Are you getting some error message while trying to update the available times? If possible, please provide a screenshot of the settings applied to those defined time-slots.
Thank you for using the plugin!
Forum: Reviews
In reply to: [Appointment Hour Booking - Booking Calendar] Free version almos perfect.Thank you very much for the review!
Best regards.
Forum: Plugins
In reply to: [Appointment Hour Booking - Booking Calendar] Automatic email senderHi,
That requires the following add-on: https://apphourbooking.dwbooster.com/blog/2018/12/27/status-update-emails/
Thank you for using the plugin!
Forum: Reviews
In reply to: [Calculated Fields Form] Super!Forum: Reviews
In reply to: [Calculated Fields Form] ExcellentForum: Reviews
In reply to: [Search in Place] Excellent choice for search in-pageForum: Plugins
In reply to: [Search in Place] Exclude header and footer from search resultsHello @diana2ke
Thank you very much for using our plugin. On the plugin configuration page, the “Search in page selectors” attribute allows you to enter the selectors of the tags in which you want the plugin to search for results:

For example, assuming the pages’ contents on your website are included between a pair of
<article></article>tags, you can enterarticlein the “Search in page selectors” attribute.Best regards.
Hello @peopleinside
Thank you very much for letting me know that the new version solve the conflict with your link.
Best regards.
Hello @peopleinside
Could you please install the latest plugin update, released some minutes ago, and purge your website and browser caches before checking the website?
Best regards.