codepeople
Forum Replies Created
-
Hi,
Please provide a link to a sample drop-down like the one you want to implement to confirm if that can be done with the plugin.
Thank you for using the plugin!
Forum: Plugins
In reply to: [Calculated Fields Form] Form with Optional FieldsetHello @eberkland
Please remember to provide the link to the page that contains the form to check the form structure.
Best regards.
Forum: Plugins
In reply to: [Search in Place] Stop new urls being createdForum: Plugins
In reply to: [Search in Place] Stop new urls being createdHello @cuffley
Yes, it is a plugin feature, we only removed the parameter from the URL and used a different method to tell the page the search term. If you don’t want this feature in your plugin copy, we can customize your plugin copy. In this case, you should request a custom coding service directly from the plugin website:
https://searchinplace.dwbooster.com/customization
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Displaying picture based on dropdown selectionHello @chris007
I’ll try to describe the process with a hypothetical example. Assuming you have the RecordSet DS field fieldname1 where each record contains two properties, column_a, and column_b. column_a is used with the DropDown DS field (fieldname2) choices’ texts and values, and column_b contains the URL to the image file. Finally, you want to display the image corresponding to the choice selected by the user in the DropDown DS field.
In this case, I’ll use a calculated field as an auxiliary. You can hide it by ticking a checkbox in its settings.
Insert a calculated field in the form, I’ll call it fieldname3, and enter the following equation:
(function(){
let records = fieldname1;
for(let i in records) {
if(records[i]['column_a'] == fieldname2) return '<img src="+records[i]['column_b']+">';
}
return '';
})()The previous equation walks the record-set (fieldname1) records, and returns an IMG tag where the SRC attribute corresponds to the column_b property whose column_a matches the value selected by the user in the Dropdown DS field (column_a).
Finally, insert an “HTML Content” field in the form where displaying the image, and enter the following DIV tag as its content:
<div data-cff-field="fieldname3"></div>The data-cff-field attribute indicates the plugin the field whose value you want to display in the tag.
Please note we are not allowed to support any customers in these forums, and the DS fields are distributed with the Developer and Platinum plugin versions.
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: Reviews
In reply to: [Appointment Booking Calendar] Simple and completeThank you very much for the review!
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Core Vital ProblemHello @pexel
Thank you very much for using our plugin.
Our plugin minifies the resource files itself and does not allow third-party plugins to minify them. In multiple cases, third-party optimizer plugins have broken our plugin files after minification.
Best regards.
Forum: Plugins
In reply to: [Search in Place] Stop new urls being createdHello @cuffley
We have released a plugin update (just now) that removes the highlight parameter from the URL without affecting the functionality, and you don’t need to edit the plugin files.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] The « calculated-fields-form-bk » directoryForum: Plugins
In reply to: [Search in Place] Stop new urls being createdHello @cuffley
Please follow the steps below:
- Open the “/wp-content/plugins/search-in-place/php/searchinplace.clss.php” file with the text editor of your choice.
- Go to the piece of code:
$_link_parts[0] .= ( ( strpos( $_link_parts[0], '?' ) === false ) ? '?' : '&' ) . 'highlight=' . urlencode( $s );And commend it as follows:
// $_link_parts[0] .= ( ( strpos( $_link_parts[0], '?' ) === false ) ? '?' : '&' ) . 'highlight=' . urlencode( $s );Please note the plugin does not generate new URLs, it only pass a parameter the resulting pages.
Best regards.
- This reply was modified 1 year, 9 months ago by codepeople.
Forum: Plugins
In reply to: [Calculated Fields Form] Form with Optional FieldsetHello @eberkland
Thank you very much for using our plugin. Could you please provide the URL to the page that contains the form to check your form structure?
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Google SpreadsheetHello @hheyhey568
Please be sure you entered the “Client ID” and “Client Secret”, and generated the integration token through the “Calculated Fields Form > Spreadsheet Integration” menu option before integrating the complementary plugin with the form. Note the “Calculated Fields Form > Spreadsheet Integration” page includes a section for entering a debugging email. Please enter the email address where you want to receive the emails with the integration issues.
Please note that “Spreadsheet Calculated Fields Form Connector” is a commercial complementary plugin, it is not the “Calculated Fields Form” plugin. For additional questions about the “Spreadsheet Calculated Fields Form Connector”, please contact us directly through the plugin website. Contact Us Page.
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] Progressive Tax Calculation FunctionHello @buptrick
Thank you very much for using our plugin. Your equation is correct. However, by using the MAX operation, you can implement the equation in one line of code without “if” conditional statements. However, as I said, your equation is correct.
The support service does not cover the implementation of the users’ projects. However, if you need someone to implement your project or equations, you can contact us via the plugin website. Contact Us
Best regards.
Forum: Plugins
In reply to: [Search in Place] Stop new urls being createdHello @cuffley
Could you please provide the link to the page that contains the search box to check its settings?
Best regards.
Forum: Plugins
In reply to: [Calculated Fields Form] The « calculated-fields-form-bk » directoryHello @glouton
Thank you very much for using our plugin and suggestions. We will consider moving the BK folder location.
Best regards.