• Resolved ann20

    (@ann20)


    hello,

    Please help me with the subject.

    Forminator stopped displaying the content of the placeholder in select field and started displaying the content of option 1. None of the options are selected for display and the content is in the placeholder field.

    It stopped to show it I think after last updates?

    Other fields with placeholder content are showing it like before.

    How can I turn off automatic updates (i don’t have idea how it happened without my knowledge)?

    wordpress: 6.5.5, theme: neve, plugins: otter (themelsle)

    I published link to the website here (paste available for few days)

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Dmytro – WPMU DEV Support

    (@wpmudevsupport16)

    Hello @ann20,

    I hope you’re doing good!

    The issue is caused by the bug in version 1.32, which should be fixed in the upcoming 1.33 release.

    Until it’s been released, you can either use version 1.31 as a workaround, or add the following PHP snippet as a must use plugin:

    <?php
    add_filter( 'forminator_field_markup', 'wpmudev_add_select_placeholder', 10, 3 );
    function wpmudev_add_select_placeholder( $html, $field, $cls ) {
        if ( false !== strpos( $field['element_id'], 'select-' ) && ! empty( $field['placeholder'] ) ) {
            $html = str_replace('</select>', '<option selected value="">' . $field['placeholder'] . '</option></select>', $html );
        }
        return $html;
    }

    – save the code in your text editor as a PHP file, for instance: forminator-placeholder-fix.php, and upload it to /wp-content/mu-plugins/ directory in your WordPress installation on the server.

    Hope this helps. Please let us know if you have any questions.

    Best Regards,
    Dmytro

    Thread Starter ann20

    (@ann20)

    can you tell me how to come back to the version 1.31?

    Plugin Support Laura – WPMU DEV Support

    (@wpmudevsupport3)

    Hi @ann20,

    Hope this message finds you well, and sorry to hear you are experiencing this issue.

    Plugins Previous versions are under the Advance View link on the plugin page, you can also navigate to this link https://www.ads-software.com/plugins/forminator/advanced/, versions are at the bottom.

    Let us know if you require additional information.

    Best regards,
    Laura

    Plugin Support Williams – WPMU DEV Support

    (@wpmudev-support8)

    Hi @ann20

    We didn’t hear back from you for quite some time already so I’m marking this as resolved.

    If you still need assistance or have additional questions, just let us know and we’ll get back to it.

    Kind regards,
    Adam

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.