ContributionsMost RecentMost LikesSolutionsPollsAccepted solution Hi, For topics which received accepted solution, i would like to publish the solution(s) in the footer of the initial question of the topic. does anyone already achieved that, i think i can use a custom content but i'm not sure on how to implement it Thanks Guillaume Re: Breadcrumb customization for SEO i works fine thanks, i created a component overriding breadcrumb standard component here is the code for some of you that should be interested common.widget.breadcrumb@override: <div class="BreadCrumb crumb-line lia-breadcrumb lia-component-common-widget-breadcrumb" class="BreadCrumb crumb-line lia-breadcrumb"> <ul id="list" class="lia-list-standard-inline"> <#list page.content.nav.breadcrumb.crumbs as crumb> <#if crumb_has_next> <li class="${crumb.wrapperCss}" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <a class="lia-link-navigation ${crumb.css}" href="${crumb.url}" itemprop="url"><span itemprop="title">${crumb.text}</span></a> </li> <li class="${crumb.separatorCss}"> <span class="separator">${page.content.nav.breadcrumb.seperator}</span> </li> <#else> <li class="${crumb.wrapperCss}" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <span itemprop="title">${crumb.text}</span> </li> </#if> </#list> </ul> </div> Breadcrumb customization for SEO Hi, I would like to customize the breadcrumb to make it visible in the search engine result page by adding the google item scope tag itemscope itemtype="http://data-vocabulary.org/Breadcrumb" The objective would be to move from <li class="lia-breadcrumb-node crumb"> to <li class="lia-breadcrumb-node crumb" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> at all breadcrumb level Does anyone have some clue to address this topic or have the same need ? Current search result Wished search result