Tagged: breadcrumbs
-
AuthorPosts
-
March 19, 2015 at 9:31 am #414217
Hi,
In which file can I change the location to display div with breadcrumbs?March 19, 2015 at 9:41 am #414223I want to swap the widget which added to div with breadcrumbs
March 19, 2015 at 12:51 pm #414335Hey!
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ünterMarch 24, 2015 at 1:45 pm #417052Hei 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
March 25, 2015 at 4:27 pm #417871Hi!
Is this what your looking for? http://kriesi.at/documentation/enfold/inserting-breadcrumbs-as-shortcode/
Best regards,
ElliottMarch 25, 2015 at 4:31 pm #417874haha Yes exactly,
but I think I gave this suggestion for this entry to Yigit yesterday :-D // funny
March 25, 2015 at 4:40 pm #417884March 25, 2015 at 4:43 pm #417893yes 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.
March 26, 2015 at 3:13 am #418280 -
AuthorPosts
- You must be logged in to reply to this topic.