can I edit /inc/estore.php file?
Remove
echo ‘<div id=”crumbs” xmlns:v=”https://rdf.data-vocabulary.org/#”>’ . sprintf( $link, $homeLink, $text[‘home’] ) . $delimiter;
after add
echo ‘<div id=”crumbs” xmlns:v=”https://schema.org/#”>’ . sprintf( $link, $homeLink, $text[‘home’] ) . $delimiter;
is it work ?
`$link = $linkBefore . ‘<a’ . $linkAttr . ‘ href=”%1$s”>%2$s</a>’ . $linkAfter;
$thisCat = get_category( get_query_var( ‘cat’ ), false );
$linkBeforeschema = ‘<span typeof=”v:BreadcrumbList”>’;
$linkschema = $linkBeforeschema . ‘<a’ . $linkAttr . ‘ href=”%1$s”>%2$s</a>’ . $linkAfter;
if ( is_home() || is_front_page() ) {
if ( $showOnHome == 1 ) {
echo ‘<div id=”crumbs”><a href=”‘ . $homeLink . ‘”>’ . $text[‘home’] . ‘</a></div>’;
}
} else {
//echo ‘<div id=”crumbs” xmlns:v=”https://rdf.data-vocabulary.org/#”>’ . sprintf( $link, $homeLink, $text[‘home’] ) . $delimiter;
//https://schema.org/BreadcrumbList
echo ‘<div id=”crumbs” xmlns:v=”https://schema.org/#”>’ . sprintf( $link, $homeLink, $text[‘home’] ) . $delimiter; //fix schema`
-
This reply was modified 4 years ago by annhandt09.
-
This reply was modified 4 years ago by annhandt09.