发送其他产品信息点击添加到购物车

时间:2016-05-10 14:32:48

标签: wordpress woocommerce

将商品添加到购物车时,在购物车页面上仅显示商品标题和价格。当产品添加到购物车时,我需要帮助发送描述或其他自定义字段等其他产品信息。

2 个答案:

答案 0 :(得分:1)

这可以通过使用:

来解决
echo apply_filters('the_content', get_post_field('post_content', $product_id));

在woocommerce购物车页面添加简短描述(woocommerce / cart / cart.php)

这将显示完整的产品说明。如果您只想显示没有短代码的摘录,可以使用:

$excerpt = apply_filters('the_content', get_post_field('post_content', $product_id));
// remove shortcodes    
$excerpt = strip_shortcodes($excerpt);
// remove tags
$excerpt = strip_tags($excerpt);
// extract only 126 characters (this can be change to the amount you need).
$excerpt = substr($excerpt, 0, 126);
$excerpt = substr($excerpt, 0, strripos($excerpt, " "));
$excerpt = trim(preg_replace( '/\s+/', ' ', $excerpt));
echo $excerpt;
// add dots at the end
echo '...';

答案 1 :(得分:0)

创建子主题并从主题中复制woocomemrce文件夹。

编辑{child-theme} /woocomemrce/cart/cart.php

为了更好的答案,请告诉我您在网站上使用的主题。