Tagged: 

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #414217

    Hi,
    In which file can I change the location to display div with breadcrumbs?

    #414223

    I want to swap the widget which added to div with breadcrumbs

    #414335

    Hey!

    Thank you for coming back.

    The breadcrumbs HTML structure is in enfold\functions-enfold.php line 312ff and 348ff:

    
    	$defaults 	 = array(
    
    			'title' 		=> get_the_title($id),
    			'subtitle' 		=> "", //avia_post_meta($id, 'subtitle'),
    			'link'			=> get_permalink($id),
    			'html'			=> "<div class='{class} title_container'><div class='container'><{heading} class='main-title entry-title'>{title}</{heading}>{additions}</div></div>",
    			'class'			=> 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
    			'breadcrumb'	=> true,
    			'additions'		=> "",
    			'heading'		=> 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/
    		);
    
    ..........
    
    		if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    
    		$html = str_replace('{class}', $class, $html);
    		$html = str_replace('{title}', $title, $html);
    		$html = str_replace('{additions}', $additions, $html);
    		$html = str_replace('{heading}', $heading, $html);
    

    Cheers!
    Günter

    #417052

    Hei Guys, is there a shortcode for using the breadcrumb in the avia builder.

    I thought in an older version there was this function for breadcrumb in the avia Layout Builder

    #417871

    Hi!

    Is this what your looking for? http://kriesi.at/documentation/enfold/inserting-breadcrumbs-as-shortcode/

    Best regards,
    Elliott

    #417874

    haha Yes exactly,

    but I think I gave this suggestion for this entry to Yigit yesterday :-D // funny

    #417884

    Hey!

    Yes you did! Issue is solved for you i believe? :)

    Regards,
    Yigit

    #417893

    yes it´s running perfect with this. Ok at least you have to choose the (with breadcrumb) in the dropdown and make a duplicate of the Template.

    template-builder.php

    And do the following to not display the Breadcrumb twice:

    
    //check if we want to display breadcumb and title
    //   if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title();
    

    You can copy all this suggestions together and delete the unnecessary posts here.

    #418280

    Hi!

    Done, thanks! We will keep the thread open for the OP. If you have any other questions or issues, please feel free to start a new thread :)

    Cheers!
    Yigit

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