Advertisement
Guest User

Untitled

a guest
Nov 24th, 2015
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. wp_deregister_script('wc-add-to-cart-variation');
  2. wp_register_script( 'wc-add-to-cart-variation', get_template_directory_uri() . '/assets/js/min/add-to-cart-variation-min.js' , array( 'jquery' ), false, '255', true );
  3. wp_localize_script( 'wc-add-to-cart-variation', 'wc_add_to_cart_variation_params', apply_filters( 'wc_add_to_cart_variation_params', array(
  4. 'i18n_no_matching_variations_text' => esc_attr__( 'Sorry, no products matched your selection. Please choose a different combination.', 'woocommerce' ),
  5. 'i18n_unavailable_text' => esc_attr__( 'Sorry, this product is unavailable. Please choose a different combination.', 'woocommerce' ),
  6. ) ) );
  7. wp_enqueue_script( 'wc-add-to-cart-variation');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement