Hướng dẫn tạo button add sản phẩm đến danh sách wishlist (ok)
Bước 1: Bạn cài plugin Cài đặt plugin YITH WooCommerce Wishlist
Bước 2: Bạn sử dụng shortcode này tại nơi bạn muốn hiển thị
<?php if ( shortcode_exists( 'yith_wcwl_add_to_wishlist' ) ) {
echo do_shortcode( '[yith_wcwl_add_to_wishlist]' ); } ?>
Hướng dẫn tạo một loat variation.txt
Bước 1: Cài đặt plugin YITH WooCommerce Wishlist
Bước 2: Bạn add function này vào file functions.php
function woocommerce_single_variation_add_to_cart_button() {
if ( function_exists( 'WC' ) ) {
global $product;
?>
<div class="variations_button">
<?php woocommerce_quantity_input( array( 'input_value' => isset( $_POST['quantity'] ) ? wc_stock_amount( $_POST['quantity'] ) : 1 ) ); ?>
<?php if ( !get_theme_mod( 'brnhmbx_enableCatalogMode', 0 ) ) { ?><button type="submit" class="single_add_to_cart_button button alt clearfix brnhmbx-button b170"><span><?php echo $product->single_add_to_cart_text(); ?></span></button><?php } ?>
<?php if ( shortcode_exists( 'yith_wcwl_add_to_wishlist' ) || get_theme_mod( 'brnhmbx_enableBFM', 1 ) ) { ?><div class="wish-bfm-outer clearfix"><?php if ( shortcode_exists( 'yith_wcwl_add_to_wishlist' ) ) { echo '<div class="wish-outer">' . do_shortcode( '[yith_wcwl_add_to_wishlist]' ) . '</div>'; } ?>
<?php if ( get_theme_mod( 'brnhmbx_enableBFM', 1 ) ) { ?><div class="brnhmbx-button b170 clearfix ico-gift brnhmbx-bfm"><div><?php echo esc_attr( get_theme_mod( 'brnhmbx_tra_BFM_Header', 'BUY FOR ME' ) ); ?></div><i class="fa fa-gift"></i></div><?php } ?></div><?php } ?>
<input type="hidden" name="add-to-cart" value="<?php echo absint( $product->id ); ?>" />
<input type="hidden" name="product_id" value="<?php echo absint( $product->id ); ?>" />
<input type="hidden" name="variation_id" class="variation_id" value="" />
</div>
<?php
}
}
Bước 3: dùng function này hiển thị ở chỗ nào bạn muốn hiển thị woocommerce_single_variation_add_to_cart_button();
Last updated