• I want to have like a nice “Home” link to the homepage, just as the logo and slogan are linking. is there a way to do it ? or ill have to edit the template ?

    thanks.

Viewing 15 replies - 1 through 15 (of 15 total)
  • It depends on your theme. Can you post a link to your site, or at least the name of your theme?

    Thread Starter danielvdt

    (@danielvdt)

    https://binnun.co.il/hsl/
    New Age Earth 1.0 by qualitywordpress

    thank you.

    Thread Starter danielvdt

    (@danielvdt)

    i found out i can do it with Page Links addon. but i don’t want the link at the side, only on the top bar.

    If you are using the default ‘Pages’ widget that comes with WP, go to Admin->Appearance->Widgets and open the widget by clicking on the little down arrow at the right of the title bar. Add the ID of the Home page in the Exclude box.

    If that takes care of your question, please use the dropdown at top right to mark this topic ‘Resolved’.

    Thread Starter danielvdt

    (@danielvdt)

    vtxyzzy: i mean the opposite, i want to include a home page link in the nav bar. and and remove from the pages list at the left

    The ‘Pages’ widget is in the sidebar on the left.

    Thread Starter danielvdt

    (@danielvdt)

    just can’t make it work.
    ill try to explain again:

    I have a Home link in nav bar and in pages list on left. i have created it using Page Link addon.(to creat a page who is a link to main page)

    I want to remove the “Home” link from page list (on the left) and keep it on nav bar.

    this is what i have now:
    https://img15.imageshack.us/img15/6519/nowxt.jpg
    and i want this:
    https://img514.imageshack.us/img514/15/want.jpg

    thanks again.

    One more time – I think the ‘Home’ on the left is from the built-in WP ‘Pages’ widget, so:

    • Go to Admin->Appearance->Widgets
    • Look for Sidebar Left in the right side panel.
    • Open the Sidebar Left if not already open by clicking on the little down arrow at the right of the Sidebar Left title
    • Open the ‘Pages’ widget by clicking on the little down arrow at the right of the ‘Pages’ title bar.
    • Add the ID of the Home page in the Exclude box.
    • Click ‘Save’.
    Thread Starter danielvdt

    (@danielvdt)

    Sidebar left is empty.

    weird

    Alright, I see the problem. Your theme designer has decided that you are incapable of deciding which widgets to use, so they are hard-coded in sidebar.php. Save a copy of sidebar.php as sidebar-original.php, then edit sidebar.php to this:

    <!-- Sidebar -->
    <div class="sidebar sidebar-left">
    
       <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?>
       <?php endif; ?>
    </div>
    <!-- Sidebar -->

    Now you can put in the widgets you want, and configure them the way you want them. Drag the ‘Posts’ widget into the sidebar and enter the Home id in Exclude as above.

    Sorry for the confusion, but it is not often a theme with no configuration options is set up this way.

    Thread Starter danielvdt

    (@danielvdt)

    sorry for the late response-

    vtxyzzy, i have tried this but it is still the same. i have edited wp-admin/sidebar.php and nothing is change…

    my theme is New Age Earth 1.0 by qualitywordpress.

    Thread Starter danielvdt

    (@danielvdt)

    OK i have managed to do this. ( i was editing the wrong file.) but it only changed the left sidebar. how do i make it right for right-sidebar ?

    Change sidebar-right.php to this:

    <!-- Sidebar -->
    <div class="sidebar sidebar-right">
    
       <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?>
       <?php endif; ?>
    </div>
    <!-- Sidebar -->
    Thread Starter danielvdt

    (@danielvdt)

    It worked, thank you very much you have been very helpful !

    You are welcome! Now, please use the dropdown at top right to mark this topic ‘Resolved’.

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘Main page link on pages bar’ is closed to new replies.