我想在woocommerce中加入'woocommerce_cart_item_name'过滤器,并希望在名称后面显示产品ID。到目前为止我正在处理这个......
add_filter( 'woocommerce_cart_item_name', 'justatest' );
function justatest( $productname ) {
echo $productname;
// ideally echo name and product id here instead
}
这将返回名称及其周围的链接,但我想在项目名称后面添加产品的实际ID。
如何在Woocommerce购物车页面中的购物车商品名称后添加商品ID?
我知道我不需要先退回,因为那会让我退出这个职能部门,但我很好奇我是怎么做的。
答案 0 :(得分:2)
您的钩子函数中有一些缺少的参数,您应该进行一些更改以获得产品ID:
add_filter( 'woocommerce_cart_item_name', 'just_a_test', 10, 3 );
function just_a_test( $item_name, $cart_item, $cart_item_key ) {
// Display name and product id here instead
echo '$item_name.' ('.$cart_item['product_id'].')';
}
此代码位于活动子主题(或主题)的function.php文件中或任何插件文件中。
经过测试和工作。
答案 1 :(得分:0)
试试这个,
覆盖了woocommerce的以下页面模板,
woocommerce/cart/cart.php in your theme
你会在其中找到一个表格HTML /代码。
<td class="product-name" data-title="<?php esc_attr_e('Product', 'woocommerce'); ?>"
<?php
if (!$product_permalink) {
echo apply_filters('woocommerce_cart_item_name', $_product->get_name(). $product_id, $cart_item, $cart_item_key) . ' ';
} else {
echo apply_filters('woocommerce_cart_item_name', sprintf('<a href="%s">%s</a>', esc_url($product_permalink), $_product->get_name() . $product_id), $cart_item, $cart_item_key);
}
// Meta data
echo WC()->cart->get_item_data($cart_item);
// Backorder notification
if ($_product->backorders_require_notification() && $_product->is_on_backorder($cart_item['quantity'])) {
echo '<p class="backorder_notification">' . esc_html__('Available on backorder', 'woocommerce') . '</p>';
}
?>
</td>
在 cart.php
中添加此部分<td class="product-name">...</td>
希望这会对你有所帮助。