László Norbert

Results 4 comments of László Norbert

I am using `Timber::get_pages_menu()`. I tried the following, and it worked. No warnings now. ``` Timber::get_pages_menu( [ 'menu' => '', 'theme_location' => '', ] ) ``` Maybe you could set...

The `wp_page_menu()` function itself is working fine with Polylang, no warnings.

I mean, if I have an html code like this: ``` About Projects ▼ Awesome project Not-so-awesome project Contact me ``` The submenu of "Projects" should be open by default....

I guess the `initialize` function in the `BaseMenuToggle` class needs to be modified like this: ``` initialize() { // Add WAI-ARIA properties. this.dom.toggle.setAttribute("aria-haspopup", "true"); if (!this.dom.toggle.hasAttribute("aria-expanded")) { this.dom.toggle.setAttribute("aria-expanded", "false"); }...