hi,
i use your demo site “construction” as a website template. For that template kreisi use a sidbar called “page sidebar”. But i cant find the page Links (first element of the sidebar in the screenshot) in the sidebar. In the sidebar there is only the contact and the Google map element but not the page links… Where can i find that element?
how can i collate the page links (in the red box –> Screenshot) ??
best regards
Chris
Hi,
It is called “Page Sidebar Navigation” and you can turn it off in Enfold theme options > Sidebar Settings > Page Sidebar navigation.
When you set a page as a child of another page, sidebar navigation is displayed automatically.
Best regards,
Yigit
thanky for your answer… is it possible to collate the page links?
best regards
Hi,
How would you like to order them? If by date, please add following code to Functions.php file of your child theme in Appearance > Editor
add_filter('avia_sidebar_menu_args', 'avf_sidebar_menu_args_mod');
function avf_sidebar_menu_args_mod($args) {
$args['sort_column'] = 'date';
return $args;
}
Best regards,
Yigit
thanks works fine!