admin管理员组文章数量:1325236
when product out of stock single page show notify woocommerce, i am doing this code but showing button only archive page, i want to show single page any one help for code .jpg
add_filter( 'woocommerce_loop_add_to_cart_link', 'filter_loop_add_to_cart_link', 20, 3 );
function filter_loop_add_to_cart_link( $button, $product, $args = array() ) {
if( $product->is_in_stock() ) return $button;
// HERE set your button text (when product is not on stock)
$button_text = __('Not available', 'woocommerce');
return sprintf( '<a class="button disabled" style="%s">%s</a>', $style, $button_text );
}
when product out of stock single page show notify woocommerce, i am doing this code but showing button only archive page, i want to show single page any one help for code https://i.sstatic/4EFd7.jpg
add_filter( 'woocommerce_loop_add_to_cart_link', 'filter_loop_add_to_cart_link', 20, 3 );
function filter_loop_add_to_cart_link( $button, $product, $args = array() ) {
if( $product->is_in_stock() ) return $button;
// HERE set your button text (when product is not on stock)
$button_text = __('Not available', 'woocommerce');
return sprintf( '<a class="button disabled" style="%s">%s</a>', $style, $button_text );
}
Share
Improve this question
edited Aug 22, 2020 at 14:19
fuxia♦
107k38 gold badges255 silver badges459 bronze badges
asked Aug 22, 2020 at 10:42
SonglyricstSonglyricst
12 bronze badges
1 Answer
Reset to default 0To achieve this into your single page product follow the below guide line. I'm assuming you have copied the woocommerce template into your theme folder. Navigate to the the path yourtheme/woocommerce/templates/single-product/add-to-cart/simple.php You can put your code here.
本文标签: woocommerce offtopicwhen product out of stock single page show button notify woocommerce
版权声明:本文标题:woocommerce offtopic - when product out of stock single page show button notify woo-commerce 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742167906a2426171.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论