Hi,
This cannot be considered a bug with the plugin, if your addon interface is hiding the button it is an error created by them. Approach them and ask them to create something that doesn’t affect other plugin admin panels.
Thanks,
David
You mean wordpress developpers ?
How have you activated the RTL interface, via a plugin?
No, it is wordpress default translation
Ok, as it’s official WP functionality I’ll look to get it supported in the next release using is_rtl() – https://codex.wordpress.org/Function_Reference/is_rtl
Thanks,
David
You can use this for switching admin interface language:
WP Native Dashboard
Please note that I wasn’t using this when experuencing the bug.
thanks
If you need this in place urgently for any reason, you can add this snippet of code within the ssba_admin_panel function in /inc/ssba_admin_panel.php
// if left to right
if (is_rtl()) {
// move save button
$htmlShareButtonsForm .= '<style>.ssba-btn-save{left: 0!important;
right: auto !important;
border-radius: 0 5px 5px 0;}
</style>';
}
It will be included in the next release.
Thanks,
David
An update has just been released for this.
Thanks,
David
No problems, any issues with it just let me know.
Thanks,
David