Viewing 10 replies - 1 through 10 (of 10 total)
  • Go into Appearance => Menu and you can change it there.

    Thread Starter danielnichols

    (@danielnichols)

    i use the ‘dkret3 theme’ menu structure and not wordpress’s own one.

    under Appearance => Menu i don’t have an option to rename it.

    previous versions had homepage name label: xxxxxxxx enter as required.

    Have you created a custom menu under Appearance => Menu ? It uses the same one as WordPress.

    If so you can change the label on each menu item by clicking on the down arrow

    Thread Starter danielnichols

    (@danielnichols)

    hiya,

    no it’s not a custom menu. the theme just adds all ‘pages’ to the menu structure. the first one added automatically called ‘start’. i used to be able to just amend the name.

    https://www.waltonchurch.org

    thanks.

    It might just be easier and quicker to make a custom menu and keep the menu structure as you have got it now. At least then you will have more control over what each menu item is called and add titles that show when someone hovers over it.

    Here’s a better solution Change menu label

    Sorry didn’t read it all but Esmi (Moderator) suggested on there to create a custom menu.

    Theme Author kretzschmar

    (@kretzschmar)

    Sorry for your problems. I had to make a lot of changes to dkret in order to get the theme approved by the WordPress theme team.

    One was to remove the ability to change the name for the blog home link. Sorry for that.

    The navigation is added with access-menu.php (line 27).

    And why don’t you just use a custom menu? Dkret supports that.

    Thread Starter danielnichols

    (@danielnichols)

    changed ‘start’ to ‘home’ in access-menu.php

    all sorted! thanks.

    Hi,
    Have the same problem, but don’t understand, my acces-menu is like this and I don’t see any “start”:

    <?php
    /**
     * The template used to display the Access Menu
     *
     * @dkret3
     * @since 3.6
     */
    ?>
        <?php if ( get_dkret_option( 'show_navigation' ) ) : ?>
    
            <div id="access" class="menu-container" role="navigation">
    
                <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'dkret' ); ?>"><?php _e( 'Skip to content', 'dkret' ); ?></a></div>
    
                <?php /* dkret3 Hook */ do_action( 'dkret_before_access_menu' ); ?>
    
                <?php
                    if ( has_nav_menu( 'access-menu' ) ) :
                        wp_nav_menu( array(
                            'theme_location' => 'access-menu',
                            'container_class' => 'header-menu',
                            'menu_class' => 'sf-menu',
                            'fallback_cb' => '' )
                        );
                    else :
                        wp_page_menu( array(
                            'show_home' => get_dkret_option( 'home_link_name' ),
                            'depth' => 4,
                            'menu_class' => 'header-menu',
                            'sort_column' => 'menu_order' )
                        );
                    endif;
                ?>
    
                <?php /* dkret3 Hook */ do_action( 'dkret_after_access_menu' ); ?>
    
            </div><!-- #access .menu-container -->
    
        <?php endif; ?>

    thank you for any help

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Closing thread, create your own.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘dkret3 – 'home' on menu’ is closed to new replies.