• 1

    Free Shipping on All Orders Over $100

Showing 1–20 of 92 results

Contact us

/* 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 );