Tagged: left sidebar menu
-
AuthorPosts
-
May 31, 2017 at 12:28 pm #801972
Hi all:
I’m building a site with the menu on the left sidebar, but I can’t find the way to activate title and breadcrumbs on every page. Can you help me?Thanks
May 31, 2017 at 2:40 pm #802031Hey alpaezes,
Breadcrumbs is not available on that layout, You can use the shortcode instead: http://kriesi.at/documentation/enfold/inserting-breadcrumbs-as-shortcode/
Hope this helps.Best regards,
NikkoMay 31, 2017 at 5:31 pm #802111But, What about displaying the page title?
I Think this option should be on in every demo….June 3, 2017 at 5:41 am #803250Hi,
Please add this filter in the functions.php file to enable the title and breadcrumb on “Left or Right Sidebar” layout.
add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1); function avf_header_setting_filter_mod($header) { $header['header_title_bar'] = ''; return $header; }
Best regards,
IsmaelJune 23, 2017 at 8:13 pm #812300Sorry because I answer too late.
It works OK, thank you very much.Best regards,
AlbertoJune 24, 2017 at 7:06 am #812404Hi Alberto,
Great, glad we could help. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
RikardSeptember 4, 2017 at 10:47 am #847646Dear Sir:
I’m trying to create a conditional, for a left aside menu site, where I only see the title and breadcrumbs when I’m not visiting the front page.
This is the code:
//Breadcrumbs not in home pageif(!is_front_page()){
// Activating breadcrumbs
add_action(‘init’, ‘ava_add_custom_shortcode’, 10);
function ava_add_custom_shortcode() {
add_shortcode( ‘bread_crumb’, ‘avia_title’ );
}add_filter(‘avf_header_setting_filter’, ‘avf_header_setting_filter_mod’, 9999, 1);
function avf_header_setting_filter_mod($header) {
$header[‘header_title_bar’] = ”;
return $header;
}
}The problem is tha it works ok in a local environment (with flywheel) and not in a site in a subdomain.
What can be the problem?
Here is a link to the subdomain.September 7, 2017 at 3:15 am #848915 -
AuthorPosts
- You must be logged in to reply to this topic.