Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter gulap

    (@gulap)

    thanks. the autocomplete works, but the stylesheets don’t ??

    i think, i can fix this.

    but can’t you modify the plugin so that that it works with themes / plugins that use walker? i think, my theme is not the only one using this function, right ??

    Thread Starter gulap

    (@gulap)

    I found the following:

    <?php
    						if ( has_nav_menu( 'primary' ) ) {
    							wp_nav_menu( array(
    								'container' => 'div',
    								'container_class' => 'nav-collapse collapse',
    								'theme_location' => 'primary',
    								'menu_class' => 'nav visible-desktop',
    								'walker' => new Bootstrap_Walker(),
    								) );
    						}
    						if ( has_nav_menu( 'primary' ) ) {
    							wp_nav_menu( array(
    								'walker' => new Walker_Nav_Menu_Dropdown(),
    								'theme_location' => 'primary',
    								'items_wrap' => '<div id="mobile-menu" class="pull-right visible-tablet visible-phone mobile-menu"><form style="margin-top: 15px; margin-bottom: 5px;"><select style="max-width:150px;" onchange="if (this.value) window.location.href=this.value"><option>-- Menu --</option>%3$s</select></form></div>',
    							) );
    						}
    					?>

    similar problem over here. I need the excerpt (with custom length according to where i’ve put the ‘more’-tag)

    without the patch i get the excerpt with standard length without the ‘continue reading’-link

    with the patch i get the excerpt with standard length with the ‘continue reading’-link

Viewing 3 replies - 1 through 3 (of 3 total)