Advertisement
Guest User

Preise – ab statt von/bis

a guest
Jun 15th, 2023
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. function fwkart_variation_price_format( $price, $product ) {
  2. // Normaler Preis
  3. $prices = array( $product->get_variation_price( 'min', true ), $product->get_variation_price( 'max', true ) );
  4. $price = $prices[0] !== $prices[1] ? sprintf( __( '<strong>ab</strong> %1$s inkl. MwSt.', 'woocommerce' ), wc_price( $prices[0] * 1.19 ) ) : wc_price( $prices[0] * 1.19 );
  5.  
  6. // Sale Preis
  7. $prices = array( $product->get_variation_regular_price( 'min', true ), $product->get_variation_regular_price( 'max', true ) );
  8. sort( $prices );
  9. $saleprice = $prices[0] !== $prices[1] ? sprintf( __( '<strong>ab</strong> %1$s inkl. MwSt.', 'woocommerce' ), wc_price( $prices[0] * 1.19 ) ) : wc_price( $prices[0] * 1.19 );
  10.  
  11. if ( $price !== $saleprice ) {
  12. $price = '<del>' . $saleprice . '</del> <ins>' . $price . '</ins>';
  13. }
  14.  
  15. return $price;
  16. }
  17. add_filter( 'woocommerce_variable_sale_price_html', 'fwkart_variation_price_format', 10, 2 );
  18. add_filter( 'woocommerce_variable_price_html', 'fwkart_variation_price_format', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement