Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

woocommerce - Variation Description

Hi I would like to ask how to Echo the variation product description. I would need to echo it depending on variant chosen. I have a working code to echo short descriptin of the curent product like this

add_action( 'woocommerce_before_variations_form', 'woo_show_excerpt_shop_page_rz', 80 );
function woo_show_excerpt_shop_page_rz() {
        global $product;
        echo $product->post->post_excerpt;
}

I would need something similar with current variant description.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...