• Resolved stevenukasweb

    (@stevenukasweb)


    Hello,I’m not really good at coding and stuff,but I can make thing work just not this one. I cant remove menubar from plainscape theme,I dont want any buttons over there. I cant find solution on removing home button either. I already tried codes on WP blog but nothing seems to work. Thank you for your help heres the link if you need it.

Viewing 15 replies - 1 through 15 (of 16 total)
  • Thread Starter stevenukasweb

    (@stevenukasweb)

    I have removing button by removing ?php echo get_settings(‘home’); ?>”><?php _e(‘HOME’) ?> “HOME” from this line.

    can you paste your header.php file in https://wordpress.pastebin.com and paste url here so that we can help you.

    Remove php code <?php _e(‘HOME’) ?> it will remove “Home” from menubar

    Regards,
    wordpress designer

    I have code in header.php.

    [Code moderated as per the Forum Rules. Please use the pastebin]

    How to include home link and where to inserted?

    @pumpkinz Looks like you using a custom menu so click on Appearance >>>Menus and manage you menu from there.

    Thread Starter stevenukasweb

    (@stevenukasweb)

    govpatel here the URL https://wordpress.pastebin.com/718TyZra as you can see I have already change line 22 and removed unwanted button, I did not know what exact line must go,so I just removed text that had to appear. santoshkori thanks for help,I managed to find it already. There should be some more sticky threads regarding most common issues.

    Thread Starter stevenukasweb

    (@stevenukasweb)

    One more question to fellow WP lovers; as far as I understand we should be able to modify most of the themes and remove or change headers and so on(if they are not hard coded). This should mean that header.php and others should look a like and we should be looking for same source code to complete our tast. Correct me please if i’m wrong.

    You are ok with changes as long as you do not update your theme as you are not using twenty ten theme you will be fine with wordpress updates.

    I have checked your header.php and you need to delete this line
    <li><a href="<?php echo get_settings('home'); ?>"><?php _e('') ?></a></li> that will take that Home link out

    Im sorry stevenukasweb my question not related to this topic.

    I already have home link. Now, i want to ask how to make a drop down menu?

    Here’s the code of my header.php

    <div id=”top”>
    <div id=”navr”>
    <ul class=”menu”>
    <li <?php if(is_home()){echo ‘class=”current_page_item”‘;}?>>/” title=”Home”>Home
    <?php wp_list_pages(‘sort_column=menu_order&depth=1&title_li=’); ?>
    <?php wp_register(‘<li class=”admintab”>’,”); ?>

    </div>
    </div>

    @pumpkinz If your theme does not support drop down menu you can do it when creating pages choosing the parent page in Page Attribute on right.

    If you want to use custom menu feature then there is some coding involved in functions.php.header.php,style.css

    Thread Starter stevenukasweb

    (@stevenukasweb)

    Pumpkinz no problem at all ?? Thanks for the help ppl. govpatel I have managed to remove home button but How to remove menubar ? Thanks for help

    You have that rss button in same menu bar what you going do with that if you take menu bar out.

    Thread Starter stevenukasweb

    (@stevenukasweb)

    I can post it somewhere else,that’s no a problem. Thanks for help govpatel

    In your style.css line 134

    #hmenu {
    margin:0 20px;
    padding:5px 0;

    }
    add

    display:none;

    so you should have

    #hmenu {
    margin:0 20px;
    padding:5px 0;
    display:none;

    }

    You will need to put that RSS button some where else.

    hi there, I hope tp be in the right forum, I want to make few changes in my menu bar too, but different ones.
    I would like to use my own type font, the same one I used for the logo title in the header. the css doesn’t recognize it so I guess I have to create the images with the typefont and then upload them.
    is this possible? what should I do?
    thanks a lot
    c

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘How to remove menubar or home button’ is closed to new replies.