首页 > 解决方案 > 在 Woocommerce 中的简短描述之后移动产品描述

问题描述

我已经使用了这个钩子的第一个选项(其他的没有用)-> Woocommerce Product Default Description for All Products

这就是它的外观(红色标记的文本是标准描述)

但是,我希望文本出现在产品描述之后。红色箭头在哪里,我想要标准文本。所以上面'in winkelmand'(意思是'添加到袋子')

我怎样才能做到这一点?

标签: phpwordpresswoocommerceproducthook-woocommerce

解决方案


那个对我也不起作用,所以我一直在寻找并找到了这个,它工作得很好

// Move Description to Under Price WooCommerce

    function woocommerce_template_product_description() {wc_get_template( 'single-product/tabs/description.php' );}

    add_action( 'woocommerce_single_product_summary', 'woocommerce_template_product_description', 20 );

推荐阅读