I discovered the plugin by chance and I'm thrilled. It has so many functions that you could otherwise only achieve with a number of other plugins. Or you could use code snippets. Everything is clearly and neatly summarized here.
Only one simple but important feature is missing. and that is adding separators to the "Admin Menu Organizer" and of course making them visible.
I added this in a separate plugin. It would be great if you could also include this in your plugin.
My function for additional separators with CSS code:
function add_admin_menu_separator($position) {
global $menu;
$menu[$position] = array(
0 => '',
1 => 'read',
2 => 'separator' . $position,
3 => '',
4 => 'wp-menu-separator',
);
}
function setup_multiple_admin_menu_separators() {
add_admin_menu_separator(15);
add_admin_menu_separator(25);
add_admin_menu_separator(35);
}
add_action('admin_menu', 'setup_multiple_admin_menu_separators');
CSS:
.wp-menu-separator {margin-top:
]]>I’m wondering why the thousand and decimal separators are not being displayed in the column on the right, even though the separators are set in the currency settings (and are being displayed properly on the right, in Totals). The currency symbol is enabled on the left, I’m adding the screenshots.
I’m using Friefox, but it looks like that on other browsers as well.
I would be very grateful for your support. Thanks!
]]>Paragraph1 | Image1
Separator1
Paragraph2 | Image2
Separator2
Etc
I use the wide separator and in the past this has worked perfectly. Paragraph2 and Image2 line up under Separator1.
Since switching to spacious. This does not happen. The image overlaps the separator and all the text is pushed up with no spacing. It looks kind of okay on the page (see Link to the page I need help with) but I really want the paragraphs next to the relevant image). In edit view it is whacky. I would really like it to work as it used to. I am non-technical/not a developer so the solution needs to be easy. Thank you.
The thousands separator in my country is a period (.) and Google Merchant Center is translating that as decimal separator.
How can I solve that?
Thanks in advance.
]]>