• Resolved missveronica

    (@missveronicatv)


    All the user input fields at the Ultimate Member Login and Registration pages are removed by Elementor version 3.33.5 with a strange comment at the page bottom.
    Only a textarea field remains on the Registration page.

    Roll back to Elementor version 3.33.4 and the issue is resolved.

    • This topic was modified 3 months, 3 weeks ago by missveronica.
Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Support Rica

    (@ricav)

    Hi @missveronicatv,

    Thank you for reporting this issue.

    It appears that after updating to Elementor 3.33.5, the input fields on Ultimate Member login and registration pages are missing, with only a textarea remaining. This is likely due to a compatibility issue introduced in the latest Elementor update. Please ensure both Elementor and Ultimate Member plugins are fully updated.

    If the problem persists, we recommend reaching out to the Ultimate Member plugin developers as well, since a plugin update may be needed for compatibility with Elementor 3.33.5. Rolling back to 3.33.4 is a valid temporary solution.

    Kind regards,

    Thread Starter missveronica

    (@missveronicatv)

    I have traced the WP error and found this:

    WP error code: invalid_methods message: route not supported. 
    plugin: elementor/data/v2/base/base-route.php:315 __construct(...)

    I am on PHP version 8.4.15 and the same issue with all older PHP 8 versions.

    • This reply was modified 3 months, 3 weeks ago by missveronica.
    • This reply was modified 3 months, 3 weeks ago by missveronica.
    • This reply was modified 3 months, 3 weeks ago by missveronica.
    Thread Starter missveronica

    (@missveronicatv)

    For your information Elementor Version 3.34.0-beta2 fixes this issue
    available with the Rollback plugin.

    I faced the same problem. Besides being unable to insert the login into the page, I also saw a code error in the bottom right. The only plugin updated in the last 24 hours was Elementor (from version 3.33.4 to 3.33.5)

    Hi, I don’t use  Ultimate Member Login plugin and I am still experiencing this issue. I have rolled back the elementor version. Please fix this

    yes, another borked update. Guys, you should really work on quality control. This is the second time in a month. 🙁

    I reverted to older version for now and hope you fix whatever you did recently.

    You could try to revert their “security fix” for text editor widget, this hook make the widget work same as before:

    <?php
    /**
    * ELEMENTOR 3.33.5 FIX
    * Revert wp_kses_post
    */
    add_action('elementor/widgets/register', function($widgets_manager) {
    if(!defined('ELEMENTOR_PATH')) return;
    // Require the original widget file
    require_once(ELEMENTOR_PATH . 'includes/widgets/text-editor.php');

    // Create custom widget class inside the hook
    $custom_widget = new class extends \Elementor\Widget_Text_Editor {

    // Override ONLY the render method
    protected function render() {
    $should_render_inline_editing = \Elementor\Plugin::$instance->editor->is_edit_mode();

    $editor_content = $this->get_settings_for_display('editor');
    $editor_content = $this->parse_text_editor($editor_content);

    if (empty($editor_content)) {
    return;
    }

    if ($should_render_inline_editing) {
    $this->add_render_attribute('editor', 'class', ['elementor-text-editor', 'elementor-clearfix']);
    }

    $this->add_inline_editing_attributes('editor', 'advanced');
    ?>
    <?php if ($should_render_inline_editing) { ?>
    <div <?php $this->print_render_attribute_string('editor'); ?>>
    <?php } ?>
    <?php echo $editor_content; // NO wp_kses_post() ?>
    <?php if ($should_render_inline_editing) { ?>
    </div>
    <?php } ?>
    <?php
    }
    };

    // Unregister the default text editor widget
    $widgets_manager->unregister('text-editor');

    // Register our custom version
    $widgets_manager->register($custom_widget);
    }, 15);

    // gist.github.com/L7XIII/259d5991c0982c7e7ed2dde0b7ef5c18
    Thread Starter missveronica

    (@missveronicatv)

    The new updated Elementor Version 3.33.6 is working as expected with the Ultimate Member plugin

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

You must be logged in to reply to this topic.