Forum Replies Created

Viewing 15 replies - 181 through 195 (of 812 total)
  • Plugin Author CodePeople2

    (@codepeople2)

    Hello @charlesnorton

    Thank you so much for the review.

    Best regards.

    Plugin Author CodePeople2

    (@codepeople2)

    Hello @magustsf

    Thank you so much for using our plugin. The do_shortcode is the correct and preferred alternative. Please watch the following video:

    https://resources.developers4web.com/cff/tmp/2025/10/01/video_o.mp4

    However, the behavior you describe might be related to a preprocessing of your theme or a third-party plugin installed on your website. Could you please provide the WordPress information? It is available through the menu option “Tools > Site Health > info”, and then press the “Copy to clipboard” button.

    Alternatively, you can insert an iframe tag to load the form URL directly:

    https://resources.developers4web.com/cff/tmp/2025/10/01/video2_o.mp4

    Best regards.

    Plugin Author CodePeople2

    (@codepeople2)

    Hello @ollyw

    Thank you so much for letting me know you found the issue cause. We will check the “Simple Social Buttons” behavior.

    Best regards.

    Plugin Author CodePeople2

    (@codepeople2)

    Hello @ollyw

    What version number of our plugin do you have installed?

    What hook name have you entered in the “Have you installed a custom WordPress theme that doesn’t use the standard WooCommerce hooks, and players are not visible on shop pages? If so, please enter the hook names separated by commas that the plugin should check to load the audio players on the shop pages.” attribute in the plugin settings? This attribute is available through the “Settings > Music Player for WooCommerce” menu option. Please try entering the word none in this attribute, and clear your website cache before testing again.

    Please let me know if the modification in the settings attribute fixes the issue.

    Best regards.

    Plugin Author CodePeople2

    (@codepeople2)

    Hello @fooey

    Thank you so much for the review.

    Best regards.

    Plugin Author CodePeople2

    (@codepeople2)

    Hello @fooey

    Ok, please follow the steps below:

    1. Insert an HTML Content field in the form and enter the text you prefer in its content.

    2. In the “Advanced Settings” tab of the “HTML Content” field, tick the checkbox to hide the field to hide it by default.

      For the next step, I will assume the HTML Content field’s name is fieldname123 (please use the correct field’s name in your form).

      3. Finally, edit your current equation as follows:


      (function(){
      let divider = {1:15650, 2:21150, 3:26650, 4:32150, 5:37650, 6:43150, 7:48650, 8:54150};
      let result = fieldname2/divider[fieldname3]*100;

      HIDEFIELD(fieldname123|n);
      if(result < 500) SHOWFIELD(fieldname123|n);

      return PREC(result,2);
      })();

      Please note that I edited your equation for optimization purposes. I reduced the number of “if” conditional statements and the volume of code.

      Plugin Author CodePeople2

      (@codepeople2)

      Hello @fooey

      That’s possible with the free plugin distribution, and the solution is very simple.

      I’ll try to describe the process with a hypothetical example.

      Assuming you have a calculated field (I’ll call it fieldname1) whose equation is fieldname2+fieldname3, however, if the sum is lower than 500, you can display the text “the value is lower than expected”

      The simplest solution would be to include a conditional operation in the equation:

      IF(fieldname2+fieldname3<500, 'the value is lower than expected', fieldname2+fieldname3)

      Or if you prefer to implement the equation by using the function structure and the “if” conditional statement:

      (function(){
      let value = fieldname2+fieldname3;
      if(value<500) return 'the value is lower than expected';
      return value;
      })()

      If the text is longer than the input box of the calculated field, you can use it as an auxiliary field, only for calculation, but display the result in another field that doesn’t use an input box.

      In this case, you can configure the calculated field as hidden (remember it is use as an auxiliary for calculations) by ticking a checkbox in its settings, and insert an “HTML Content” field in the form and enter a DIV tag in its content (or any other HTML tag) with the data-cff-field attribute indicating the name of the field whose value you want to display in the tag. In this example, the data-cff-field contains the calculated field’s name:

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

      Another alternative is to use the SHOWFIELD and HIDEFIELD operations included in the “Managing Fields Operations” module (https://cff.dwbooster.com/documentation#managing-fields-module)

      In this case, you can insert an “HTML Content” field in the form (I will call it fieldname4) with the text directly in its content:

      the value is lower than expected

      And then, you can edit the equation in the calculated field as follows:

      (function(){
      let value = fieldname2+fieldname3;

      HIDEFIELD(fieldname4|n);
      if(value<500) SHOWFIELD(fieldname4|n);

      return value;
      })()

      Note that the fieldname4 in the equation includes the |n suffix or modifier. The plugin replaces the field names in the equations by their corresponding values before evaluating them. The |n modifier tells the plugin you are referring directly to the field’s name instead of its value.

      Learn more about the different modifiers by reading the text in the yellow frame, visiting the following link to the plugin documentation:

      https://cff.dwbooster.com/documentation#modifiers

      Best regards.

      Plugin Author CodePeople2

      (@codepeople2)

      Hello @ohtusabes

      Yes, that’s possible. Simply use a different color for each choice.

      For example:

      #fbuilder .cff-radiobutton-field input{display:none !important;}
      #fbuilder .cff-radiobutton-field .dfield{display:flex !important;flex-wrap:wrap;gap:10px;}
      #fbuilder .cff-radiobutton-field .one_column{width:20%;border:2px solid #dadada;padding:10px;border-radius:5px;display:flex;align-items:center;justify-content:center;}
      #fbuilder .cff-radiobutton-field .one_column span{text-align:center;display:block;}
      #fbuilder .cff-radiobutton-field .one_column:has(input[value="1"]:checked){background:green;border-color:green;}
      #fbuilder .cff-radiobutton-field .one_column:has(input[value="2"]:checked){background:yellow;border-color:yellow;}
      #fbuilder .cff-radiobutton-field .one_column:has(input[value="3"]:checked){background:orange;border-color:orange;}
      #fbuilder .cff-radiobutton-field .one_column:has(input[value="4"]:checked){background:red;border-color:red;}

      Please note the support service does not cover the implementation of the users’ projects. If you require us to implement a personalized design for your form, please contact us through the plugin website:

      https://cff.dwbooster.com/customization

      Best regards.

      Plugin Author CodePeople2

      (@codepeople2)

      Hello @campus42

      Thank you so much for the review.

      Best regards.

      Plugin Author CodePeople2

      (@codepeople2)

      Hello @ohtusabes

      You missed some spaces and symbols in your CSS block of code. The correct is:

      #fbuilder .cff-radiobutton-field input{display:none !important;} 
      #fbuilder .cff-radiobutton-field .dfield{display:flex !important;flex-wrap:wrap;gap:10px;}
      #fbuilder .cff-radiobutton-field .one_column{width:20%;border:2px solid #dadada;padding:10px;border-radius:5px;display:flex;align-items:center;justify-content:center;}
      #fbuilder .cff-radiobutton-field .one_column span{text-align:center;display:block;}
      #fbuilder .cff-radiobutton-field .one_column:has(input:checked){background:#1e7caf;border-color:#1e7caf;color:white;}

      Best regards.

      Plugin Author CodePeople2

      (@codepeople2)

      Hello @ohtusabes

      No, that’s not possible. The dropdown fields use SELECT tags; the HTML standard does not allow displaying the option tags in the select as buttons. In that case, you must use a radio button field or a checkbox.

      Best regards.

      Plugin Author CodePeople2

      (@codepeople2)

      Hello @ohtusabes

      Please watch the following video:

      https://resources.developers4web.com/cff/tmp/2025/09/16/video-2_o.mp4

      I used the style definition:

      #fbuilder .cff-dropdown-field select option:first-child{background:#cae6ef;}
      #fbuilder .cff-dropdown-field select option:nth-child(2){background:#fbeee5;}
      #fbuilder .cff-dropdown-field select option:nth-child(3){background:#fad2d8;}
      #fbuilder .cff-dropdown-field select option:nth-child(4){background:#f2c4d6;}
      #fbuilder .cff-dropdown-field select option:nth-child(5){background:#dbc1e7;}

      Best regards.

      Plugin Author CodePeople2

      (@codepeople2)

      Hello @ohtusabes

      I suppose you’re referring to customizing the design of the checkbox or radio buttons. Yes, that’s possible.

      Please watch the following video:

      https://resources.developers4web.com/cff/tmp/2025/09/16/video_o.mp4

      I used the following styles definition:

      #fbuilder .cff-checkbox-field input{display:none !important;}
      #fbuilder .cff-checkbox-field .dfield{display:flex !important;flex-wrap:wrap;gap:10px;}
      #fbuilder .cff-checkbox-field .one_column{width:20%;border:2px solid #dadada;padding:10px;border-radius:5px;display:flex;align-items:center;justify-content:center;}
      #fbuilder .cff-checkbox-field .one_column span{text-align:center;display:block;}
      #fbuilder .cff-checkbox-field .one_column:has(input:checked){background:#1e7caf;border-color:#1e7caf;color:white;}

      The plugin allows you to enter custom styles through the “Customize Form Design” attribute in the “Form Settings > Advanced Settings” tab.

      Best regards.

      Plugin Author CodePeople2

      (@codepeople2)

      Hello @irvingbos

      We have released a new plugin update that includes some of your requests. It displays a confirmation dialog during the field deletion process to prevent deleting fields by mistake. This is useful when the field is used by other fields, such as in calculated field equations or data source fields for filtering. It is also useful when deleting a container field (fieldset, div, or popup) that contains other fields.

      Best regards.

      Plugin Author CodePeople2

      (@codepeople2)

      Hello @pamheater

      Thank you so much for using our plugin. I suppose you have a problem with the website and browser caches because I can access your form, and it is working correctly. Please watch the video by visiting the following link:

      https://resources.developers4web.com/cff/tmp/2025/09/13/video-form_o.mp4

      Best regards.

    Viewing 15 replies - 181 through 195 (of 812 total)