每当产品可下载时,我都需要在WooCommerce商店的单个产品页面上显示注释。我创建了一个除了检查产品是否可下载的部分之外的功能。现在,当页面到达此笔记的位置时,页面似乎只是退出呈现内容。我已经用九种方式搜索了星期日,并且似乎无法使其正常工作。任何帮助将不胜感激 - 谢谢。我的功能如下:
//add text note to product description page for all downloadable products
add_action( 'woocommerce_before_add_to_cart_button' , 'append_download_note'
);
function append_download_note() {
global $product;
if ( $product->is_downloadable() ) {
echo '<p>Please note: a link to your downloadable product will be
available on the purchase confirmation page.</p>';
}
}