我想将销售价格移动到实际价格下进行更改,我设法在产品摘要部分执行此操作,但是找不到任何用于更改的过滤器.
请参见下图.
我已经尝试过此代码,但没有用,我的代码适用于Summery部分
add_filter( 'woocommerce_variable_sale_price_html', 'product_variation_price_format', 10, 2 );
add_filter( 'woocommerce_variable_price_html', 'product_variation_price_format', 10, 2 );
function product_variation_price_format( $price, $product ) {
if(is_singular('product')){
// Main Price
$prices = array( $product->get_variation_price( 'min', true ), $product->get_variation_price( 'max', true ) );
$price = $prices[0] !== $prices[1] ? sprintf( __( 'From: %1$s', 'woocommerce' ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );
// Sale Price
$prices = array( $product->get_variation_regular_price( 'min', true ),$product->get_variation_regular_price( 'max', true ) );
sort( $prices );
$saleprice = $prices[0] !== $prices[1] ? sprintf( __( 'From: %1$s', 'woocommerce' ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );
if ( $price !== $saleprice ) {
$price = '<ins>' . $price . '</ins> <del>' . $saleprice . '</del>';
}
}
return $price;
}
请指导我如何解决此问题.
解决方法:
这更多是CSS问题,您可以使用简单的样式标签对此样式进行样式设置
根据您的结构更改div类
.priceMainWrapperDiv {
display: table;
}
.salePriceDiv {
display: table-footer-group;
}
.actualPriceDiv {
display: table-header-group;
}