• Resolved hyzwar

    (@hyzwar)


    Is it possible to add separate tooltip (i) for each choice?

    I mean Radio like in this example:

    • choice A (i)
    • choice B (i)
    • choice C (i)

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author CodePeople2

    (@codepeople2)

    Hello @hyzwar

    Unfortunately, in the current plugin version, the instructions for users affect the fields, not the choices separately. However, you can emulate this by passing the instruction for users as part of the choice text itself.

    Please follow the instructions below:
    1. includes the instructions for users as part of the choices texts, like

    First Choice <span class="cff-help-icon" data-uh="Instructions first choice"></span>
    Second Choice <span class="cff-help-icon" data-uh="Instructions second choice"></span>
    Third Choice <span class="cff-help-icon" data-uh="Instructions third choice"></span>

    2. Insert an “HTML Content” field in the form, tick the choice to support scripts, and enter the following piece of code as its content:


    <script>
    fbuilderjQuery(document).on('formReady', function(){
    fbuilderjQuery('[data-uh]').each(function(){
    fbuilderjQuery(this).attr('uh', fbuilderjQuery(this).attr('data-uh'));
    });
    });
    </script>

    Please watch the video in action:
    https://cff.dwbooster.com/resources/customer-support/2026/02/24/video.mp4

    Best regards.

    Thread Starter hyzwar

    (@hyzwar)

    Godlike! Thx a lot 😉

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.