codepeople
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Great idea: Whatsapp buttonHello @supervinnie41
If you want to include a button in the form to navigate to an URL similar to:
<a target="_blank" href="https://api.whatsapp.com/send?phone=<%fieldname1%>?text=<%INFO%>">
Sent this form to yourself via Whatsapp
</a>You can generate it yourself as part of your form.
Insert a calculated field in the form as an auxiliary to generate the URL (I’ll assume this is the fieldname123), you can hide this field by ticking a checkbox as its settings, and enter an equation similar to (the following ):
(function(){
let phone = fieldname1;
let text = CONCATENATE('Hello ', fieldname2, ' you have entered the information ', fieldname3);
return generateURL('https://api.whatsapp.com/send', {'phone': phone, 'text': text});
})()Finally, insert a button field in the form and enter the following piece of code as its onclick event:
window.open(getField('fieldname123').val(true, true), '_blank');Learn more about the operations used in the equation and button code by reading the operations module in the plugin documentation:
https://cff.dwbooster.com/documentation#modules
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Checkboxes helpHello @metesey
Thank you very much for using our plugin. Javascript is a case-sensitive language, you should not confuse the “IF” plugin operation with the “if” conditional statement. Please edit the equation as follows:
IF(IN(8,fieldname17|r),1,0)Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Great idea: Whatsapp buttonHello @supervinnie41
No, I’m sorry, the feature you are requesting requires implementing the integration to WhatsApp via API, and the WhatsApp API is available only on WhatsApp Business Accounts. The WhatsApp button displays the WhatsApp button in the public form to allow the users to contact you via WhatsApp, and the Professional version of the CFF includes a button in the entries list to enable you to contact the users via WhatsApp.
Best regards.
Forum: Reviews
In reply to: [Calculated Fields Form] Most powerful and extendable form builderForum: Plugins
In reply to: [Appointment Booking Calendar] WoocommerceHi! Integration with WooCommerce is a commercial feature in the plugin. 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] Dynamically evaluate not working since updateHello @teleanu
Thank you very much for letting me know that everything is working fine.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Dynamically evaluate not working since updateHello @teleanu
My apologies for the delay in responding to your question. We have detected the issue cause and released a plugin update to fix it. Please install the latest plugin update and reenter the conditional rules.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Dynamically evaluate not working since updateHello @teleanu
I checked your Form 6 again and the first conditional rule in the calculated field has a parser error. You entered
value1but the correct one isvalue>1Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Dynamically evaluate not working since updateHello @teleanu
The issue is not caused by the submit button, but the equality operator.
In JavaScript the equality operator is the double symbol “==”, the “=” is used for assignment.
In the dependency rule (https://imgur.com/EDOKPBa), you entered
value=3501but the correct one isvalue==3501The first conditional rule has a syntax error as well. You removed the comparison operator. The correct is
value>1Best regards.
Forum: Plugins
In reply to: [Search in Place] Stop new urls being createdHello @cuffley
Thank you very much for using our plugin. The plugin does not modify the URL to search results configure on your website. It adds the highlight parameter if you ticked the “Highlight the terms in resulting page” attribute in the plugin settings page. If you want to remove the parameter from the results page URL, please untick the checkbox in the plugin settings.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] data-cff-field modifiers? for drop downHello @eberkland
Thank you very much for using our plugin. If the fieldname500 is a dropdown field and you want to display the value of the choice selected, you must tick the “Choice value” option in the “Display to submit” attribute in the form settings, and insert the tag as follows:
<span data-cff-field="fieldname500"></span>If you want to display the choice text, then tick the “Choice text” option in the field’s settings.
Best regards.
Hello @pidengmor
Thank you very much for the suggestions. I’ll include it in the next plugin update.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Great idea: Whatsapp buttonHello @supervinnie41
Thank you very much for the suggestion. The links you are referring to does not send the information via WhatsApp, it opens WhatsApp and the user must send the message manually. The send the messages automatically, you must use the WhatsApp APIs by you would require a WhatsApp business account.
The “WhatsApp Button for Calculated Fields Form” complementary plugin (https://cff-bundles.dwbooster.com/product/whatsapp-button) allows you to open a communication channel with your customers via WhatsApp.
Best regards.
Forum: Plugins
In reply to: [Music Player for WooCommerce] Edit title on product pageHello @ryansarn
Please indicate the version number of your “Music Player for WooCommerce” copy.
The free version of our plugin does not include a section to add or edit the files. It takes the information from the WooCommerce product settings. Please look at the screenshot image below:

This section is handle by WooCommerce not by our plugin.
Best regards.
Forum: Plugins
In reply to: [Music Player for WooCommerce] Edit title on product pageHello @ryansarn
I’m sorry, but we are not the developers of the “WooCommerce Import CSV” plugin. You should contact the “WooCommerce Import CSV” plugin developers where the files are uploaded. Our plugin takes the files information from the database by calling the WooCommerce functions.
To access the downloadable files from the WooCommerce product settings, you must configure it as downloadable, and WooCommerce will activate the files list.
Best regards.