比起上一个问题,我想实现以下目标:
我正在使用Woocoomerce,并删除了商店的主要页面,因为我只有产品类别,并且只需要这些页面。除产品搜索结果页面(为Woocommerce产品搜索小部件显示的结果页面)外,所有面包屑都正确显示,其中没有“商店”痕迹(因为我已经删除了该页面)。此页面显示以下面包屑:
“首页/产品/搜索结果...”
这是唯一的Woo页面,仍在其中显示跟踪“产品”(这是默认行为,我已经在第二十七期的新文章中进行了测试),我需要将其删除。有趣的是,当不删除主商店页面时,产品搜索结果页面的面包屑看起来像这样:
“首页/商店/ ...的搜索结果”
所以我的目标实际上是在这样的搜索结果页面上放置面包屑
“ ...的首页/搜索结果”
谢谢!
答案 0 :(得分:0)
这是一种解决方法,但是为什么不使用css:
.search-results.woocommerce .woocommerce-breadcrumb a {
display: none;
}
.search-results.woocommerce .woocommerce-breadcrumb a:first-child {
display: inline;
}
答案 1 :(得分:0)
我遇到了同样的问题,我通过将WooCommerce的breadcrumb.php
复制到mytheme/woocommerce/global/breadcrumb.php
,运行is_search()
来确定我是否在搜索结果中,然后{{ 3}}元素。
<?php
/**
* Shop breadcrumb
*
* This template can be overridden by copying it to yourtheme/woocommerce/global/breadcrumb.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://docs.woocommerce.com/document/template-structure/
* @package WooCommerce/Templates
* @version 2.3.0
* @see woocommerce_breadcrumb()
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! empty( $breadcrumb ) ) {
echo $wrap_before;
if ( is_search() ) {
array_splice( $breadcrumb, 1, 1 ); // considering that the element is at the second position.
// Otherwise :
// array_splice( $breadcrumb, 0, 1 ); if it's at the first position, etc.
}
foreach ( $breadcrumb as $key => $crumb ) {
echo $before;
if ( ! empty( $crumb[1] ) && sizeof( $breadcrumb ) !== $key + 1 ) {
echo '<a href="' . esc_url( $crumb[1] ) . '">' . esc_html( $crumb[0] ) . '</a>';
} else {
echo esc_html( $crumb[0] );
}
echo $after;
if ( sizeof( $breadcrumb ) !== $key + 1 ) {
echo $delimiter;
}
}
echo $wrap_after;
}
您也可以
...
foreach ( $breadcrumb as $key => $crumb ) {
// Ignore the "Product" item
if ( $crumb[0] == 'Product' ) {
continue;
}
echo $before;
if ( ! empty( $crumb[1] ) && sizeof( $breadcrumb ) !== $key + 1 ) {
echo '<a href="' . esc_url( $crumb[1] ) . '">' . esc_html( $crumb[0] ) . '</a>';
} else {
echo esc_html( $crumb[0] );
}
echo $after;
if ( sizeof( $breadcrumb ) !== $key + 1 ) {
echo $delimiter;
}
}
...