• 1

    Free Shipping on All Orders Over $100

Showing 1–20 of 95 results

Contact us

×
 
왜 Weekly Subscription을 선택해야 합니까?
  • 일정에 따라 좋아하는 제품을 자동으로 재주문하세요 .
  • 예정된 예약 주문에 대한 제품 또는 배송 날짜를 쉽게 변경할 수 있습니다 .
  • 언제든지 일시 중지하거나 취소할 수 있습니다.
/* 230730 subscription - 우커머스 연동하기 위해 추가한 코드 */ /** * Autoship Cloud currently integrates with the WooCommerce Shop templates as follows: * 1. Simple Products - The "woocommerce_before_add_to_cart_button" action is used. * - found in woocommerce/templates/single-product/add-to-cart/simple.php * 2. Variation Products - The "woocommerce_before_single_variation" action is used. * - found in woocommerce/templates/single-product/add-to-cart/variable.php * * IMPORTANT! If your theme uses custom templates replacing either of these files and * does not include the WooCommerce hooks you will need to add custom actions * in equivalent locations as the WooCommerce actions. */ /** * Example of how to hook in the Autoship Cloud options in custom * shop page template for simple products. * NOTE: This assumes you've added a xx_you_custom_template_before_add_to_cart_button_action * to your simple product template. */ function xx_print_autoship_options_for_simple_products(){ autoship_print_cart_autoship_options(); } add_action( 'xx_your_custom_template_before_add_to_cart_button_action', 'xx_print_autoship_options_for_simple_products', 10 ); /** * Example of how to hook in the Autoship Cloud options in custom * shop page template for variable products. * NOTE: This assumes you've added a xx_your_custom_template_before_single_variation_action * to your variable product template. */ function xx_print_autoship_options_for_variable_products(){ autoship_print_cart_autoship_options_variable(); } add_action( 'xx_your_custom_template_before_single_variation_action', 'xx_print_autoship_options_for_variable_products', 10 );