Hey there,
I noticed recently that the plugin broke multi-column layout in the admin dashboard. Instead of being able to align boxes horizontally, it reverts everything to single column layout with only the possibility to vertically sort.
Once I disable the plugin, I can move and place boxes in multi columns…
Is it possible to take a look into that?
I know we can force the dashboard using this code in the functions.php
function so_screen_layout_columns( $columns ) {
$columns['dashboard'] = 1;
return $columns;
}
add_filter( 'screen_layout_columns', 'so_screen_layout_columns' );
function so_screen_layout_dashboard() {
return 1;
}
add_filter( 'get_user_option_screen_layout_dashboard', 'so_screen_layout_dashboard' );
I haven’t taken a look at the plugin’s code, I figured I’d let you know first.
Cheers
Hello and thank you for developing this plugin.
Currently, I am not able to locate the menu or dashboard for this plugin.
I disabled all other plugins and activated Simple History Cards and still was not able to see an interface in the menu or dashboard.
]]>