• Resolved artemiusgreat

    (@artemiusgreat)


    Originally, I posted the issue on the page for Sina Extension for Elementor but looks like it is more suitable here because that plugin doesn’t have conflicts with other plugins.

    https://ww.wp.xz.cn/support/topic/title-is-not-editable-sometimes/#post-18929130

    The problem is that there seems to be some conflict in naming or scripts that breaks editor for some Elementor components provided by Sina Extension. Specifically, “Title” section disappears when both plugins are enabled.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Dara

    (@dara4)

    Hi artemiusgreat (@artemiusgreat),

    Thanks for reporting this and for helping narrow down the conditions required to reproduce it.

    After investigating, this appears to be caused by an overlap between Elementor control IDs. I’ve already prepared a compatibility fix on my side to prevent this type of overlap and it will be included in the next update.

    As a temporary workaround, the following CSS can be loaded in the Elementor editor. Please add this snippet to your child’s theme functions.php file:

    add_action(
    	'elementor/editor/before_enqueue_styles',
    	function() {
    		if ( wp_style_is( 'post-editor-style', 'registered' ) ) {
    			wp_add_inline_style(
    				'post-editor-style',
    				'.elementor-control-title_style{display:initial !important;}'
    			);
    		}
    	},
    	20
    );

    This should restores the hidden “title” styling section until the compatibility update is released.

    Thanks again for the report,
    Dara

    Thread Starter artemiusgreat

    (@artemiusgreat)

    Awesome, thank you!

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

You must be logged in to reply to this topic.