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