Tagged: left, left menu, left sidebar, sidebar
-
AuthorPosts
-
May 23, 2013 at 9:09 am #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?
May 24, 2013 at 3:25 am #120849Hi,
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
May 24, 2013 at 7:03 am #120850Hi 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
May 25, 2013 at 3:28 am #120851Hi,
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
May 26, 2013 at 1:57 pm #120852I 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
May 27, 2013 at 3:39 am #120853Hi,
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
May 27, 2013 at 10:46 am #120854Hello,
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?
May 28, 2013 at 6:30 am #120855Hey,
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
May 28, 2013 at 7:22 am #120856Hi,
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?
May 29, 2013 at 10:21 am #120857Try 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);May 29, 2013 at 12:44 pm #120858Hi,
Unfortunately that did not work either. Please check from the link above
May 30, 2013 at 7:55 am #120859Hi,
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
May 30, 2013 at 11:21 am #120860Well 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.
-
AuthorPosts
- The topic ‘Left Sidebar Menu & Footer’ is closed to new replies.