codepeople
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Page crashingHello @hheyhey568
You are using LiteSpeed Cache. Please purge the website and browser caches.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Collapsed and lock fieldHello @rotertal
If you only want to collapse the container field and deactivate the open container action, please enter the following piece of code:
jQuery(document).on('change', '[id*="fieldname82_"]', function(){ getField('fieldname171') .jQueryRef() .addClass('cff-collapsed') .css('pointer-events', 'none'); });Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Collapsed and lock fieldHello @rotertal
Thank you very much for using our plugin. I guess the simplest solution is to hide the field at all.
jQuery(document).on('change', '[id*="fieldname82_"]', function(){ HIDEFIELD('fieldname171'); });Or if you want to deactivate it and its contained fields you can use the IGNOREFIELD operation:
jQuery(document).on('change', '[id*="fieldname82_"]', function(){ IGNOREFIELD('fieldname171'); });Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Page crashingHello @hheyhey568
Thank you very much for using our plugin.
Please insert the form shortcode with the iframe attribute in 1.
[CP_CALCULATED_FIELDS id="54" iframe="1"]Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Define dependenciesHello @civilvicky
I’ll try to describe the process with a hypothetical example.
Assuming the calculated field is the fieldname123, and has the equation fieldname1+fieldname2, and the field to show/hide is the fieldname456.
You can edit the equation as follows:
(function(){ let result = fieldname1+fieldname2; if(result < 1) { ACTIVATEFIELD(fieldname456|n); HIDEFIELD(fieldname123|n); } else { IGNOREFIELD(fieldname456|n); SHOWFIELD(fieldname123|n); } return result; })()Note I used the ACTIVATEFIELD/IGNOREFIELD operations with the third-party field, and HIDEFIELD/SHOWFIELD with the calculated field to avoid endless loops.
Best regards.
Forum: Plugins
In reply to: [CP Multi View Events Calendar] The calendar cannot been seen on androidHi,
Are you logged in the dashboard (in the same browser) when it works?
If yes, it may be a conflict with some missing/modified scripts due to the use of an optimization plugin. A way to identify the origin of the conflict is to deactivate the plugins one by one to check which one is causing the conflict or temporary change the theme if all the plugins are discarded.
In addition to that, please indicate what version of the calendar plugin you have installed in the website.
Thank you for using the plugin!
Forum: Plugins
In reply to: [Appointment Booking Calendar] Email tag for today’s dateHi,
Keep the tag %request_timestamp% and update to the latest version of the plugin (#1.3.86 or later).
Thank you for the feedback!
Forum: Plugins
In reply to: [Appointment Booking Calendar] SynchronisationHi,
There may be a solution using the iCal add-ons:
iCal Export: https://abc.dwbooster.com/blog/2018/10/25/adding-google-iphone/
iCal Import: https://abc.dwbooster.com/blog/2018/12/20/ical-import/
Thank you for using the plugin!
Forum: Plugins
In reply to: [Appointment Booking Calendar] Question before upgradingHi,
Please see details of that configuration (bookings for multiple persons) explained at the following page:
https://abc.dwbooster.com/blog/2018/10/15/quantityfields/
Thank you for using the plugin!
Forum: Plugins
In reply to: [Calculated Fields Form] 403 ERROR, forbidden access.Hello @msedighiyan86,
Perfect. As I said previously, some code in your website was generating a false-positive due to the form structure.
Best regards.
Forum: Plugins
In reply to: [Search in Place] Search In Place (version 1.1.12) Error After UpdateHello @amanijoseph86
I’m testing the plugin on different websites and servers, and the error you are reporting is not happening.
Could you please reinstall the plugin?
That seems your server is not creating the plugin file structure correctly.
Please look at the screenshot image below for the file structure after installing the plugin (I installed it just now):
Best regards.
Forum: Plugins
In reply to: [Sell Downloads] Remove Order By DropdownHello @mrgtih2
Please watch the video by visiting the following link:
https://resources.developers4web.com/cff/tmp/2024/04/17/video_o.mp4
Best regards.
Forum: Plugins
In reply to: [Sell Downloads] Remove Order By DropdownHello @mrgtih2
Thank you very much for using our plugin. You need only to pass the
show_order_byattribute in the store shortcode with value zero:[sell_downloads columns="3" show_order_by="0"]Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] 403 ERROR, forbidden access.Hello @msedighiyan86
If you can modify your other forms but not this specific form, and you deactivate the other plugins on your WordPress, there is a server rule that generates a false-positive and blocks the save changes action.
Unfortunately, the process of identifying its cause is not easy. It could be a field label, an equation, or a simple combination of characters. The majority of these regulations rely on regular expressions.
One way to troubleshoot an issue where the server is blocking the save changes is to duplicate the current form to preserve its structure. Then, you can systematically delete fields from the duplicated form until you identify the field that is causing the issue. This process helps to isolate the problematic field and find a solution.
However, if you contact your hosting provider, I am pretty sure they will be able to adjust the server rules to allow you to save the form modifications.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] 403 ERROR, forbidden access.Hello @msedighiyan86
To check if the issue is caused by a false positive related to WordFence, or server rules, please remove the script blocks of code from the fieldname59 and fieldname66 fields’ content attributes and try to save the modifications.
Best regards.