我正在尝试在WooCommerce文章的描述中创建一个自动文本,并且只在商店中提供"文章。"
我想把它放在这样的函数中:
add_filter ('woocommerce_short_description', 'in_single_product', 10, 2);
function in_single_product () {
echo '<p> article only available in the store. </ p>';
}
但这取代了已在产品简短描述中写入的文字。如果我没有输入文字,则不会出现任何内容。
可以将代码文本和#34;文章仅在商店中提供&#34;没有产品的简短描述?
谢谢。
答案 0 :(得分:2)
所以你可以这样使用它:
add_filter( 'woocommerce_short_description', 'single_product_short_description', 10, 1 );
function single_product_short_description( $post_excerpt ){
global $product;
$product_id = method_exists( $product, 'get_id' ) ? $product->get_id() : $product->id;
if ( is_single( $product_id ) )
$post_excerpt = '<p class="some-class">' . __( "article only available in the store.", "woocommerce" ) . '</p>';
return $post_excerpt;
}
通常,此代码将覆盖单个产品页面中的现有简短描述文本,如果存在此简短描述...
(更新) - 与您的评论相关
如果要在不覆盖摘录(简短说明)的情况下显示此内容,可以在此之前添加:
add_filter( 'woocommerce_short_description', 'single_product_short_description', 10, 1 );
function single_product_short_description( $post_excerpt ){
global $product;
$product_id = method_exists( $product, 'get_id' ) ? $product->get_id() : $product->id;
if ( is_single( $product_id ) )
$post_excerpt = '<div class="product-message"><p>' . __( "Article only available in the store.", "woocommerce" ) . '</p></div>' . $post_excerpt;
return $post_excerpt;
}
因此,您将在之前和之后(如果存在简短描述)获得您的短信说明......
您可以在活动主题style.css
文件中为其定位样式选择器.product-message
,例如:
.product-message {
background-color:#eee;
border: solid 1px #666;
padding: 10px;
}
您需要编写自己的样式规则以获得它。
答案 1 :(得分:1)
我更新说我找到了解决问题的方法:
我在“产品”中创建了一个“货运类”,其名称为“仅在商店中提供的商品”和slug“productshop”。
然后在(mytheme)/woocommerce/single-product/meta.php中我包括:
<?php
$clase=$product->get_shipping_class();
if ($clase=="productshop") {
if (get_locale()=='en_US') {echo 'Product only available in store';}
else {echo 'Producte només disponible a la botiga';}
}?>
然后我只需选择将产品运送到方法中。
就是这样!
感谢您的回答