codepeople
Forum Replies Created
-
Forum: Plugins
In reply to: [Loading Page with Loading Screen] Loader for Product CategoriesHello @jpaulwebdev
The function to exclude URLs exists, only the function to include by URLs needs to be implemented.
Best regards.
Forum: Plugins
In reply to: [Loading Page with Loading Screen] Loader for Product CategoriesHello @jpaulwebdev
My apologies for the confusion. In the current plugin version, you can exclude URLs from the loading screen by using URLs with wildcards but not configure the URLs that display the loading screen by their URLs. It could be a useful addition for a future plugin update.
However, if this feature is necessary to your website, you can contact us directly through the plugin website. Contact Us.
Best regards.
Forum: Plugins
In reply to: [Loading Page with Loading Screen] Loader for Product CategoriesHello @jpaulwebdev
Thank you very much for using our plugin.
To apply the loading page screen only to the products, you can tick the “specific post types” checkbox in the plugin settings page, and enter the product post type.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Calculated Fields to Word FileHello @sg13040
You must enter the page URL through the “Thank you page URL” attribute in the form settings, and use the shortcode for results in the thank you page content (https://cff.dwbooster.com/documentation#thanks-page). The shortcode for results is included in the commercial plugin versions.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Calculated Fields to Word FileHello @sg13040
The Platinum plugin version includes the “CFF – PDF Generator” add-on that allows you to generate a PDF file with the information collected by the form and send it to the user by email or to download it from the thank you page:
https://cff.dwbooster.com/blog/2020/07/19/pdf-generator
However, suppose you prefer to populate a DOC template and have a “FormStack Document” (formerly WebMerge) account. In that case, you can activate the “CFF – WebMerge” add-on, distributed with the Platinum plugin distribution, to send the information collected by the form to FormStack Document to populate the DOC template:
https://cff.dwbooster.com/blog/2018/10/15/webmerge
Best regards.
Forum: Plugins
In reply to: [Music Store - WordPress eCommerce] Where is the store?Hello @omigosh
Please note there is another issue in your store settings. You entered “CDN” as the currency code to charge the users. However, “CDN” is not a valid currency code supported by PayPal. You can find the currency code list by visiting the following link:
https://developer.paypal.com/api/rest/reference/currency-codes/
Best regards.
Forum: Plugins
In reply to: [Music Store - WordPress eCommerce] Where is the store?Hello @omigosh
Please be sure you selected a file for selling in the product settings and entered a price (the numbers only). Also, be sure you unticked the checkbox:
Include the "Buy Now" or "Shopping Cart" buttons only for registered usersIn the store’s settings.
Best regards.
Hello @jayceezay
Please use the PREC operation.
PREC(X, Y) rounds the number X with Y decimals. The PREC operation supports a third parameter with the value true or false (false is the default value). If the third para parameter is true and X is an integer number, the PREC operation returns the integer number without decimals. For example, if you have the operation fieldname1+fieldname2, and you want the result with four decimal places, you can edit it as follows:
PREC(fieldname1+fieldname2, 4, true)Best regards.
Forum: Plugins
In reply to: [Music Store - WordPress eCommerce] Where is the store?Hello @omigosh
Thank you very much for using our plugin.
You only should enter the email address associated with the PayPal account where you want to receive the payments through the store’s settings:

In the product’s settings, select the file for selling and enter its price:

Finally, on any page of your website, where you want to display your store, insert the music store shortcode:
[music_store columns="3"]Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Dark Mode Form StilHello @pexel
The custom behavior is the button code, not the CSS class definitions. You are requesting us to implement the custom behavior of your buttons and counters as part of the plugin support. But that is specific to your project, not the plugin.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] How to horizontally align fields?Hello @jayceezay
Thank you very much for using our plugin. Please enter the style definition below in the “Customize Form Design” attribute in the “Form Settings” tab:
#fbuilder .cff-button-field input{margin-top:5px;}Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Dark Mode Form StilHello @pexel
As part of the onclick event you should check a global variable, to know if the button was pressed previously. Something like:
if(typeof button_pressed != 'undefined') return; button_pressed = true;And you must remove the variable when counter reaches zero:
delete button_pressed;It ensures the button is pressed only once until the counter finalize.
Regarding your second question about displaying some form fields when printing the form but not on the web, you can assign a custom class name to these fields, ex.
fields-for-printingThe class names are assigned to the fields through their “Add CSS Layout Keywords” attributes.
Then you can enter the following style definition through the “Customize Form Design” attribute in the “Form Settings” tab:
.fields-for-printing{display:none !important;} @media print{.fields-for-printing{display:block !important;} }Please note the support does not include developing the users’ projects. Your questions are not about the plugin but the custom behavior of your form. We can offer you a custom coding service directly from the plugin website for additional questions about these subjects. Contact Us.
Best regards.
Forum: Plugins
In reply to: [Search in Place] Default CSS over ridingHello @mazanyday
I’m sorry, but I cannot confirm if your custom styles are being loaded by your web page without inspecting it. But please, use a specific selector for the search box:
input[name="s"]{ background:#ede9e2 !important; border: 1px solid #ede9e2 !important; border-radius: 3px !important; padding: 2px !important; color: #272524 !important; width: 80%; }Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Dark Mode Form StilHello @pexel
Please enter the style definition:
.cp_cff_custom #fbuilder select option{color: #f90f2a !important;}Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Dark Mode Form StilHello @pexel
I tested your form and all texts are visible in dark mode. Please look at the screenshot:

What text is not visible exactly?
Best regards.