販売価格で製品ループが見つかったときに、販売価格タグにクラスを追加するカスタム条件付き出力に取り組もうとしています。通常価格しかない場合は、このクラスを通常価格タグに追加します。
さまざまなドキュメントをオン/オフした後、これを機能させることができないようです:
add_filter( 'woocommerce_get_price_html', 'custom_price_html', 100, 2 );
function custom_price_html( $price, $product ){
ob_start();
global $product;
if (isset($product->sale_price)) {
return str_replace( '</del>', '<span class="amount">text</span></del>', $price );
return str_replace( '</ins>', '<span class="highlight amount">highlight here</span></del>', $price );
}
else {
return str_replace( '</ins>', '<span class="highlight amount">highlight here</span>text</del>', $price );
}
}
通常の価格フィルターを使用して、span class="amount" タグを ins span class="amount" に変更しようとしていますが、それでも同じ出力が得られます。
何か案が?
add_filter( 'woocommerce_price_html', 'price_custom_class', 10, 2 );
function price_custom_class( $price, $product ){
return str_replace( '<span class="amount"></span>', '<ins><span class="amount">'.woocommerce_price( $product->regular_price ).'</span></ins>', $price );
}