Viewing 5 replies - 1 through 5 (of 5 total)
  • Make sure your theme support Footer menu and if it does then go in Appearance > Menu and Select appropriate menu and check it as Footer Menu….

    Hi@hoiszelam

    Fistly check your theme while it support footer menu or not.
    If it support footer menu then go to backend Apperance >Menus
    There is menu settings in which main menu and footer menu both should be checked to show menu on top and bottom of your site.

    If there is no footer menu option in menu setting ,then we should have code in functions.php to show footer menu.
    If this does not work please feel easy to ask again.
    Thanks

    And if i m not wrong the socials links is displayed in two different places in your site.

    Thread Starter Hoi Sze Lam

    (@hoiszelam)

    Hi @atlas_gondal and @tsuzan1

    Thanks for getting back to me so quickly.

    I have fixed the problem by putting this code in functions.php

    function register_my_menus() {
      register_nav_menus(
        array(
          'footer-menu' => __( 'Footer Menu' ),
          'social-menu' => __( 'Social Menu' )
        )
      );
    }
    add_action( 'init', 'register_my_menus' );

    Followed by this code in footer.php

    <div class="copyright">
    		<div class="container"> 
    
    <ul>
        <div class="pull-left" style="height:30px; width:300px; background-color:#202020;"> 
    
    			<?php echo esc_attr( get_theme_mod( 'dt_copyright_text', DT_COPYRIGHT_TEXT ) ); ?>
    </div>
     <div class="pull-right" style="height:30px; width:300px; background-color:#202020;">
    <?wp_nav_menu( array( 'theme_location' => 'footer-menu', 'container_class' => 'footer_menu_class' ) ); ?>
    </div>
    		</div>
    	</div>
    </ul>
    </footer>

    Do you have any idea how to get my footer-menu to align with the Copyright text in the same row and within the container?

    The Directory Starter themes original footer links do not work even after adjusting it in Appearance > Menus and Customiser.

    Hi Hoi Sze Lam, I’m one of the developer of this theme. I think “footer links” menu part is missing. I’ll fix that. Thanks for reporting. You will get the fix in the next version.

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Footer menu not showing in Directory Starter theme’ is closed to new replies.