Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #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

    #802031

    Hey 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,
    Nikko

    #802111

    But, What about displaying the page title?
    I Think this option should be on in every demo….

    #803250

    Hi,

    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,
    Ismael

    #812300

    Sorry because I answer too late.
    It works OK, thank you very much.

    Best regards,
    Alberto

    #812404

    Hi 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,
    Rikard

    #847646

    Dear 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 page

    if(!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.

    #848915

    Hi,

    You should probably move the conditional function inside the filters instead of wrapping the filters with it.

    Best regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.