从 WooCommerce 购物车和结账中的购物车项目名称中删除 html 标签

问题描述 投票:0回答:1

See the image for how it is getting My installed plugins in WP

我想从添加到购物车的产品标题中删除“span”元素。我提供了两张图片,一张有问题,另一张是我安装的插件。 我认为它在 Boostify 页眉页脚生成器中(客户这么说)。

wordpress woocommerce
1个回答
0
投票

要从购物车和结帐中的产品名称中删除 HTML 标签,您可以使用以下命令:

add_filter('woocommerce_cart_item_name', 'strip_html_tags_from_cart_item_name', 9000, 1 );
function strip_html_tags_from_cart_item_name( $product_name ) {
    $product_name = wp_strip_all_tags( $product_name, true );

    return $product_name;
}

代码位于活动子主题(或活动主题)的functions.php 文件中。已测试并有效。

© www.soinside.com 2019 - 2024. All rights reserved.