• Resolved marten2

    (@marten2)


    Advanced Sidebar Menu ver 7.7.3
    In the menu to the right a lot of items are missing, they should be visible below the now last showed item Klippduva.

    I normally did the following changes to get the menu scroll-able and also setting the height:
    https://realtimepartner.com/wp-content/plugins/advanced-sidebar-menu/views/sidebar-menu.css
    .advanced-sidebar-menu ul li{
    list-style:none;
    list-style-type: none;
    margin: 0;
    max-height: 500px;
    overflow-y: auto;
    }
    but this time it did not work. What to do?

    Another question, in Swedish we have three extra characters A with a ring on the top, A with two dots on the top, and O also with two dots on the top and they are placed after Z in our alphabet, but now they get mixed with A and O. Is there any easy way to get the right order for these characters so they end up behind Z?

    Looking forward to your answer, Thanks Marten

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor OnPoint Plugins

    (@onpointplugins)

    Hello marten2,

    By default the page widget will limit pages to 100. You may increase this limit by adding the following filter to your active theme’s functions.php

    add_filter( 'advanced_sidebar_menu_list_pages_args', function( $args ) {
    			$args['posts_per_page'] = 500;
    			return $args;
    		} );

    For the sorting, this is handled by your MySQL collation which most likely needs to be set to utf8mb4_swedish_ci. MySQL changes are beyond what we can guide you through as basic version user, but doing a search online will provide some results.

    Hope this helps!

    Thread Starter marten2

    (@marten2)

    Thanks, worked fine!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Too few items’ is closed to new replies.