• Resolved Syed Nabeel

    (@syednabeel)


    Hi, Indeed this plugin is great.
    The recent update brings issues. Drop Down is not opening on Desktop and Mobile.
    I have tried already with below code but still no luck

    <?php
    
    add_action( 'wp_enqueue_scripts', function() {
    	if ( defined( 'FORMINATOR_VERSION' ) ) {
    		wp_enqueue_script(
    			'forminator-select2',
    			WP_PLUGIN_URL . '/forminator/assets/forminator-ui/js/select2.full.min.js',
    			array( 'jquery' ),
    			FORMINATOR_VERSION,
    			false
    		);
    		wp_enqueue_style(
    			'forminator-select2',
    			WP_PLUGIN_URL . '/forminator/assets/forminator-ui/css/src/form/select2.min.css',
    			array(),
    			FORMINATOR_VERSION
    		);
    		$form_designs = array( 'material', 'default', 'flat', 'bold' );
    		foreach ( $form_designs as $form_design ) {
    			wp_enqueue_style(
    				'forminator-forms-' . $form_design . '-full',
    			WP_PLUGIN_URL . '/forminator/assets/forminator-ui/css/src/form/forminator-form-' . $form_design . '.full.min.css',
    				array(),
    				FORMINATOR_VERSION
    			);
    		}
    	}
    }, 1 );

    Please help me to get it fixed, ASAP

    Many thanks, in advance.

    Regards

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Support Amin – WPMU DEV Support

    (@wpmudev-support2)

    Hello @syednabeel ,

    Can you try this CSS:

    .forminator-select.forminator-select-dropdown-container--open {
        display: block;
        z-index: 99999 !important;
    }

    You can add it to the Apparance -> Customize -> Additional CSS.

    kind regards,
    Kasia

    Was having the same problem and that fix just worked for me. Thanks!

    Thread Starter Syed Nabeel

    (@syednabeel)

    @wpmudev-support2 Thank you so much for the help.
    It works absolutely fine. Please also add this fix in next update.

    Many thanks

    Regards

    Hello

    Just upgraded the Plugin today and found this bug.

    It’s a BIG bug as it makes all forms that use a pulldown pretty much unusable.

    I did a search and luckily found this thread and was able to patch it, but please upload an update that fixes this.

    Thanks!

    Plugin Support Nithin – WPMU DEV Support

    (@wpmudevsupport11)

    Hi @velarde,

    Our team is already working on this. At the moment, I’m afraid there isn’t any exact ETA that we could share but can confirm it’s being looked into. Hoping it would be implemented soon.

    The CSS should be a workaround for now. Sorry for any inconvenience due to this.

    Kind Regards,
    Nithin

    This also fixed the issue for me! Thank you so much!

    Above css worked for me as well..

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘DropDown is Not working’ is closed to new replies.