Role Based Pricing for WooCommerce
-
Hola tengo un problema con el plugin https://woocommerce.com/es/products/role-based-pricing-for-woocommerce/
Yo cuando tengo un producto variable los precios me aparecen así:
https://drive.google.com/file/d/12q_M6A9cwb3om0pElVGgHDpvBrwmge1h/view?usp=sharing
Agregue este código:
---------
add_filter( 'woocommerce_variable_sale_price_html', 'diegol_variation_price_format', 10, 2 );
add_filter( 'woocommerce_variable_price_html', 'diegol_variation_price_format', 10, 2 );
function diegol_variation_price_format( $price, $product ) {
// Precio base
$prices = array( $product->get_variation_price( 'max', true ), $product->get_variation_price( 'min', true ) );
$price = $prices[0] !== $prices[1] ? sprintf( __( 'Hasta: %1$s', 'woocommerce' ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );
// Precio rebajado
/*$prices = array( $product->get_variation_regular_price( 'max', true ), $product->get_variation_regular_price( 'min', true ) );
sort( $prices );
$saleprice = $prices[0] !== $prices[1] ? sprintf( __( 'Hastxa: %1$s', 'woocommerce' ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );
*/
if ( $price !== $saleprice ) {
$price = '<del>' . $saleprice . $product->get_price_suffix() . '</del> <ins>' . $price . $product->get_price_suffix() . '</ins>';
}
return $price;
}
------------
Y los precios de productos variables me aparecen asi:
https://drive.google.com/file/d/1zwJvS-GZRug2DpkOYqEE_f8TfKKN_1ZR/view?usp=sharing
Desde que active el plugin
https://drive.google.com/file/d/1pSAZqwblnPjbJqvs6g-2fUq9Lbx2a7GJ/view?usp=sharing
El fragmento de código me dejo de funcionar y me aparece los dos precios variables
https://drive.google.com/file/d/13o-mZ-UuaTr3qS-AliNoupM5nMwDQpze/view?usp=sharing
necesito que cuando el plug-in este activo y sea un producto variable solo me aparezca el precio más bajo del producto variableLa página con la que necesito ayuda: [accede para ver el enlace]
Viendo 1 respuesta (de un total de 1)
Viendo 1 respuesta (de un total de 1)
- El debate ‘Role Based Pricing for WooCommerce’ está cerrado a nuevas respuestas.