• Resolved hhristoff

    (@hhristoff)


    Hi there!

    We are using the plugin for 6 months now and it is doing more than a great job for us!

    However, we would like to improve the form a bit now.

    Could you advise if it is possible to enter conditions in it? Ideally, we would like to create a decision tree with different options for our customers.

    Looking forward to your reply.

    Thanks.

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

    (@pipdig)

    Hi @hhristoff, glad to hear you’ve found the plugin useful!

    This type of feature is possible, however you would need to create the dynamic changes using javascript such as jQuery to show/hide the different fields depending on the user choices. Unfortunately I can’t provide an example of this since it really depends on your requirements and would be out of scope for free support.

    You can view a very basic example of a customized form at https://support.pipdig.co/blogger-install. If you scroll down and click the “Password” field, it reveals another custom field underneath as a message to the user. This was created using jQuery on that page. Here is an example:

    jQuery(document).ready(function($) {
    $('#28242292').focus(function() {
      $('.login_warning_msg').slideDown(900);
    });
    });

    #28242292 is the ID of the “password” field. When it is selected, jQuery will then reveal the “login_warning_msg” element, which is the warning text.

    You could do the same with other custom fields too, not just text.

    We might be able to add this as an option in a future release. However it would be quite complex so could be a long time away.

    Hope that helps!

    Phil

    Thread Starter hhristoff

    (@hhristoff)

    Hi @pipdig,

    It is more than helpful!

    Thanks a lot!

    Hristo

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

The topic ‘Conditions’ is closed to new replies.