Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #23706

    Hello,

    I want to make a left sidebar menu just like this one “http://kriesi.at/themes/enfold/pages/”

    But when I create left sidebar menu from the widgets area it makes something like this “http://bilgin-group.com/blgn-grp-test/?page_id=1411”

    How can I do that?

    My second question is about footer area. Is it possible to remove (it should be removable) Enfold Theme by Kriesi link on the footer?

    #120849

    Hi,

    1.) Go to Enfold > Sidebar > Page Sidebar navigation, select Display sidebar navigation.

    2.) Edit footer.php then find this code

    $kriesi_at_backlink = apply_filters("kriesi_backlink", " - <a href='http://kriesi.at'>Enfold Theme by Kriesi</a>");

    You can edit that line or remove it.

    Cheers,

    Ismael

    #120850

    Hi again,

    “Display Sidebar Navigation” is already selected. If you visit the links you will understand what I mean

    This is original theme example – http://kriesi.at/themes/enfold/pages/

    This is my example – http://bilgin-group.com/blgn-grp-test/?page_id=1456

    They are not the same. As you can see the sytles are different. The sidebar menu link does not have underline on rollover and the color is different. But in my example it is not like that. And there are lots of widgets that I dont want. I have created a new sidebar but I could not be able to add something inside of it. Hope you understand what I mean.

    Besides these questions can you please tell me how to change font size and character of the main navigation. I want to add a different font but the font selections are very limited in enfol/styling/general. Is it possible to add another fonts besides the dropdown menu fonts

    #120851

    Hi,

    Go to Appearance > Widget, remove all the widgets on Displayed Everywhere widget area.

    The navigation will only work if there are page hierarchy. You can define page hierarchy on Page Attributes, select the Parent page. Please import the dummy data then check the Pages.

    You can use this plugin http://wordpress.org/plugins/wp-google-fonts/.

    Regards,

    Ismael

    #120852

    I am sorry but I did not understand what do you mean by Displayed Everywhere widget area? Is there widget called Displayed Everywhere? I also imported dummy content when I first activated the theme. I will be using left sidebar only as a sub-menu. Can you please login and make the necessary changes for me. Other wise you have to more clear to explain it. May be you can send some screenshots I don’t know but I have to finish this by wednesday so please help.

    http://bilgin-group.com/blgn-grp-test/wp-admin

    WP ADMIN

    user: admin

    passa: bilginadmin

    #120853

    Hi,

    Please check the page. http://bilgin-group.com/blgn-grp-test/?page_id=1456

    I took the liberty to specify the parent page.

    http://www.mediafire.com/convkey/e12c/8eqqqyi8s0pmncjfg.jpg

    And this is the Displayed Everywhere widget area. I place a text widget with blank content.

    http://www.mediafire.com/view/wh95y4c730a70iq/widgetdisplay.jpg

    Regards,

    Ismael

    #120854

    Hello,

    That was excatly what I meant thanks a lot. But there is one more little thing. The listing on the dropdown menu and the left menu is different. I want to make the exact listing with drop down menu. It is listed alpabetically on the left sidebar but I want to change that is it possible?

    #120855

    Hey,

    It is possible. Edit sidebar.php then find this code

    $args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'  => 'menu_order, post_title');
    $children = wp_list_pages($args);

    Change it to this

    $args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'  => 'menu_order', 'sort_order' => 'ASC');
    $children = wp_list_pages($args);

    You can refer to this link for more sorting options.

    http://codex.wordpress.org/Function_Reference/wp_list_pages

    Regards,

    Ismael

    #120856

    Hi,

    I have changed the lines but nothing happened it is still alphabetically. Do I have to change it only for once, or can that code line will be somewhere else too?

    #120857

    Try following code instead – it will use the “post title” instead of the “menu order”.

    $args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'  => 'post_title', 'sort_order' => 'ASC');
    $children = wp_list_pages($args);

    #120858

    Hi,

    Unfortunately that did not work either. Please check from the link above

    http://bilgin-group.com/blgn-grp-test/?page_id=1456

    #120859

    Hi,

    It is working. Please do it again. Remove browser cache the reload the page. In fact, refresh it a few times to see the changes.

    Regards,

    Ismael

    #120860

    Well I am sorry Ismael but it is not working. Ofcourse I know about browser cache and I have tried more then one browser to test it.

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Left Sidebar Menu & Footer’ is closed to new replies.