Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // Display Price For Variable Product With Same Variations Prices
  2. add_filter('woocommerce_available_variation', function ($value, $object = null, $variation = null) {
  3. if ($value['price_html'] == '') {
  4. $value['price_html'] = '<span class="price">' . $variation->get_price_html() . '</span>';
  5. }
  6. return $value;
  7. }, 10, 3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement