Woocommerce - 描述产品页面(Woocommerce - description in

2019-08-17 17:36发布

我需要从描述上Woocommerce插件我的“产品”添加小摘录。 我有这样的页面: http://exploreprague.cz/guides-buddies-2/ ,我需要有每个人的名下一些说明文字...有没有办法做到这一点?

Answer 1:

woocommerce >>模板>>内容product.php:与产品里面是分类页面

你可以发现,只有函数来显示这个页面里面的题目:

<h3><?php the_title(); ?></h3>

该行后,您可以添加自己的线路:

<br /><?php echo $product->get_sku(); ?> <br /><?php echo apply_filters( 'woocommerce_short_description', $post->post_excerpt ) ?>

这些将显示SKU和产品的短描述。

顺便说一句,这仅仅是一个快速硬编码的方法,你可以尝试这些功能在主题functions.php添加到钩在该网页。

add_action('woocommerce_after_shop_loop_item_title','woocommerce_template_single_excerpt', 5);

正如在提到挂钩,价格是在那里已经上瘾评论部分。



Answer 2:

也许这可以帮助你

<?php wc_get_template( 'single-product/short-description.php' ); ?>

从这个链接https://docs.woothemes.com/wc-apidocs/function-woocommerce_template_single_excerpt.html



文章来源: Woocommerce - description in products page