Forum Replies Created

Viewing 15 replies - 196 through 210 (of 19,179 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @hoijmand

    You can provide the screenshots directly through the Contact Us page on the plugin website. Contact Us.

    Best regards.

    Plugin Author codepeople

    (@codepeople)

    Hello @yellowblader,

    My apologies for the delay in completing the plugin update. We have released a plugin update that fixes the issue with the multiple URLs.

    Please after installing the plugin update, clear the website and browser caches.

    Best regards.

    Plugin Author codepeople

    (@codepeople)

    Hello @mrmet86

    Yes, that’s possible. Insert the form shortcode by passing a class name through its shortcode.

    E.g.

    [CP_CALCULATED_FIELDS id="1" class="form-a"]

    Second, pass the form selector as the second parameter in the getField operation:

    E.g.

    <script>
    fbuilderjQuery(document).on('formReady',function(){
    getField('fieldname123', '.form-a').jQueryRef().find('option:eq(0)').prop('disabled', true);
    });
    </script>

    Best regards.

    Plugin Author codepeople

    (@codepeople)

    Hello @metesey

    Thank you so much for using our plugin. The calculated fields are input tags, and input tags do not render HTML code or support multiline texts. So, the alternative is to use the calculated field for the calculations but display the result in another field. Please follow the steps below:

    1. Edit the equation as follows:

        CONCATENATE(fieldname6,' m² ', fieldname3|v, ' tuğla duvar imalatı için yıl başı rayiç fiyatları ile <b>', PREC(fieldname5,2), ' ₺</b> işçilik maliyeti hesaplanmış olup, güncel işçilik maliyeti ise <b>', PREC(fieldname5*fieldname7,2),' ₺</b> dir.')

        2. Tick a checkbox in the calculated field’s settings to hide it from the public form.

        3. Insert an “HTML Content” field in the form and assuming the calculated field is the fieldname123, enter a div tag as its content with the data-cff-field attribute indicating the field’s name whose value you want to display in the tag:

        <div data-cff-field="fieldname123"></div>

        Bet regards.

        Plugin Author codepeople

        (@codepeople)

        Hello @yellowblader

        The problem here is that not every website’s settings are the same because depends on the installed plugins and themes. For example when the optimizer plugins generate combined and minified JS or CSS files, the code on third-party plugins can affect our code, or when activating the JS deferring some initial events are not triggered. So, modifying a little attribute in your WP Rocked settings can be enough for your website, but not for others.

        Note our plugin implements a form cache module (available on commercial distributions). However, we decided to deactivate it on websites using cache management plugins, as their HTML optimizers often disrupt the structure of HTML forms.

        Best regards.

        Plugin Author codepeople

        (@codepeople)

        Hello @yellowblader

        Thank you for using our plugin and for your feedback. We will reduce the number of these URLs in the next update (At the end of today). Some URLs are necessary to register the form height based on client-side conditions to reduce CLS impact (Note our plugin renders the forms on the browser). Regarding IFRAME use, we recommend them in specific situations. For example, if you have installed a plugin optimizer or cache management plugin that affects the forms visualization. In these cases, you have two alternatives: you can modify the settings of the third-party plugin or activate the iframe attribute in the form shortcode. Keep in mind that iframe tags load their content in a separate context from the main page, meaning that the styles applied to the page do not affect the form.

        Best regards.

        Plugin Author codepeople

        (@codepeople)

        Hi,

        You may be sending the email in HTML format. You can enclose the %INFO% tag between <pre>…</pre> tags to preserve the line breaks or change the format to plain text.

        You can also fully customize the email by replaced the %INFO% tag for specific tags for the info you want to include in the email:

        https://apphourbooking.dwbooster.com/faq/#q81

        Thank you for using the plugin!

        Plugin Author codepeople

        (@codepeople)

        Hello @skscomp

        Today, we released an update for the plugin that enables users to easily sort records by including order_by attributes in the RecordSet tags.

        The form’s structure I sent you in a previous entry can be modified as follows in the latest plugin update:


        [select my_list]
        [cf7-recordset id="my_recordset" type="taxonomy" taxonomy="category" attributes="term_id,name,slug" order_by="slug"]
        [cf7-link-field recordset="my_recordset" field="my_list" value="term_id" text="slug"]

        Please purge the website and browser caches after installing the plugin update.

        Best regards.

        Plugin Author codepeople

        (@codepeople)

        Hello @saralanda

        Thank you so much for using our plugin.

        Our plugin tries to extract numbers from fields’ values to use them in mathematical operations. However, the use of modifiers allows you to access their raw values. In your case, you should use the |r modifier.

        If your calculated field is the fieldname123, you must refer to it in the second equation as fieldname123|r

        The current plugin version supports other two modifiers |n and |v.

        The |n modifiers tell the plugin you refer specifically to the field’s name instead of its value. The plugin replaces the fields’ names by their values in the equations before evaluating them. However, the |n modifiers tell the plugin you want to use the field’s name.

        The |v modifier can be used in the equations with the names of the Radio Buttons, Checkbox, and Dropdown fields. The Radio Buttons, Checkbox, and Dropdown fields allow you to configure the value to submit between the texts of ticked choices or their values. The |v modifier tells the plugin you want to use the value to submit to the server (this would allow you access to the choices texts from the equations).

        If you want to store the encodedTransport as a global variable, you only need to remove the var reserved word and assign the value directly.

        Edit the line of code var encodedTransport = encodeURIComponent(transport);

        As encodedTransport = encodeURIComponent(transport);

        Best regards.

        Plugin Author codepeople

        (@codepeople)

        Hello @papesh

        Thank you so much for using our plugin.

        You can implement the equation as follows:

        Assuming the checkbox field is the fieldname123, the equation would be:

        IF(fieldname123, fieldname1 * fieldname2, 0)

        It uses comma symbols instead of semicolons, and the plugin manages the checkbox field’s value as zero if no choice is ticked.

        Best regards.

        Plugin Author codepeople

        (@codepeople)

        Hello @skscomp

        Thank you very much for the suggestions.

        Best regards.

        Plugin Author codepeople

        (@codepeople)

        Hello @supervinnie41

        You don’t have installed the latest plugin update.

        Please note we are not allowed to support any customers in these forums, and the plugin versions 5.8.x correspond to the Professional ones.

        For pro or commercial product support please contact us directly on our site.

        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.

        Plugin Author codepeople

        (@codepeople)

        Hello @skscomp ,

        Thank you very much for using our plugin. You have two alternatives, you can read the taxonomy terms by using the Database data-source, and including an ORDER BY clause in the query, or you can include a callback in the recordset field to sort the results in the client side after receive them as you prefer.

        Please try the following example.

        Create a form and enter the following structure:

        <script>function my_sort(data){
        data.sort((a,b)=>a.slug<b.slug?-1:(a.slug == b.slug ? 0 : 1));
        return data;
        }</script>
        [select my_list]
        [cf7-recordset id="my_recordset" type="taxonomy" taxonomy="category" attributes="term_id,name,slug" callback="my_sort"]
        [cf7-link-field recordset="my_recordset" field="my_list" value="term_id" text="slug"]

        The recordset field includes the callback attribute callback="my_sort" it takes the recordset records and sorts them by the slug term. The rest of the fields’ tags have the usual structure.

        Best regards.

        Plugin Author codepeople

        (@codepeople)

        Hello @supervinnie41

        Thank you very much for using our plugin. In today’s plugin update, you can decide the separator symbol to use. It does not require you to enter the <BR> tags as part of the choices’ texts.

        For example, assuming the checkbox field is the fielname123, and you want to use the colon symbol (:) as the separator between the field’s label and choices, and the <br> tag as the separator between choices to display each of them in a different link, you can insert the field’s tag in the notification email as follows:

        <%fieldname123 separator={{: }} choices_separator={{<br>}}%>

        Best regards.

        Plugin Author codepeople

        (@codepeople)

        Hello @mrmet86

        Thank you so much for using our plugin. Please follow the instructions below.

        Go to the DropDown field’s settings, tick the “Includes an additional first choice as placeholder” checkbox, and enter the text of first choice through the “First choice text” attribute.

        Assuming the DropDown field is the fieldname123, insert an “HTML Content” field in the form and enter the following piece of code as its content:

        <script>
        fbuilderjQuery(document).on('formReady',function(){
        getField('fieldname123').jQueryRef().find('option:eq(0)').prop('disabled', true);
        });
        </script>

        Best regards.

      Viewing 15 replies - 196 through 210 (of 19,179 total)