Hi,
Should RES allow control of the left sidebar (Document Overview)?
https://www.loom.com/share/c8e0bb78f5744dfca462830cce3b33a5?sid=dd044f8a-c29c-4e96-a6c6-26528d7c166a
Hi,
I have an issue with your plugin code.
The script fires a jQuery UI resizable() on the sidebar element every 500 milliseconds.
This could be prevented if the interval is cleared once the sidebar is present and the width()
, resizable()
and determine_if_sidebar_open()
have been applied.
My proposal for a change:
let interval = setInterval(function(){
jQuery('.interface-interface-skeleton__sidebar').width(localStorage.getItem('toast_rs_personal_sidebar_width'))
jQuery('.interface-interface-skeleton__sidebar').resizable({
handles: 'w',
resize: function(event, ui) {
jQuery(this).css({'left': 0});
localStorage.setItem('toast_rs_personal_sidebar_width', jQuery(this).width());
}
});
determine_if_sidebar_open();
if ( 0 < jQuery('.interface-interface-skeleton__sidebar').length ) {
clearInterval( interval );
}
}, 500);
Thanks a lot,
Johann
Hello!
I noticed an issue with the version number when updating the plugin via composer / wpackagist.org: The previous version “1.02” is seen as a higher version than the latest update “1.0.5”, so automatically updating via composer will always install 1.02 as latest. For now, we can explicitly “composer require wpackagist-plugin/resizable-editor-sidebar:1.0.5” to install the update, but we would need to adjust this on every update until the version is higher than 1.2.0.
As a solution, you could bump the version number in the next update to something higher than “1.2.0” so auto-updates via composer work again.
Thanks and best regards!
]]>I use this plugin on multiple websites that I have developed and in the latest WordPress Updates the sidebar disappears when I have the plugin active. Can you update the plugin or tell me how to get my resizable sidebar back again?
]]>As per title, not working in 6.1.1
]]>Please add support for resizing the sidebar in the (FSE) site editor. Thanks!
]]>Great plugin, but at the moment as well as being able to make the sidebar wider I can also make it narrower, right down to 0. I’m wondering if giving the sidebar a minimum width would be better. I can imagine some of my clients might drag it down to 0 width and then think it had just disappeared altogether.
]]>