Viewing 1 replies (of 1 total)
  • Ren Ventura

    (@engagewp)

    Hello,

    First, there aren’t any error messages because there are no errors.

    Second, you can only apply the disabled attribute to a dropdown, not the readonly.

    Third, the jQuery that the plugin uses searches for <input> tags that are child elements of those classes (disabled and readonly). Since I’ve never known dropdowns to be disabled, I didn’t think to add that kind of support. However, I can see when doing so might be useful. I’ll likely add support for it in an eventual update. In the meantime, you can add support for the disabled attribute on dropdowns by adding the following to your theme:

    jQuery(document).ready(function($) {
    	$(".disabled select").attr('disabled','disabled');
    });
Viewing 1 replies (of 1 total)
  • The topic ‘Not working?’ is closed to new replies.