Untitled

 avatar
unknown
plain_text
17 days ago
1.2 kB
2
Indexable
add_action('b2bking_bulkorder_cream_custom_heading', function(){
    ?>
    <div class="b2bking_bulkorder_form_container_content_header_cream_sku">
        <?php esc_html_e('Price', 'b2bking'); ?>
    </div>
    <?php
});
add_action('b2bking_bulkorder_cream_custom_column', function($product){
    ?>
    <div class="b2bking_bulkorder_cream_sku"><?php 

    $sale_price = $product->get_sale_price();
    $sale_price = round(floatval(b2bking()->b2bking_wc_get_price_to_display( $product, array( 'price' => $sale_price))),2);
    $regular_price = $product->get_regular_price();
    $regular_price = round(floatval(b2bking()->b2bking_wc_get_price_to_display( $product, array( 'price' => $regular_price))),2);

    if ($product->is_on_sale()){
        $price_display = wc_format_sale_price($regular_price, $sale_price);
    } else {
        $price_display = wc_price($regular_price);
    }

    $woo_uom_output = get_post_meta( $product->get_id(), '_woo_uom_input', true );
    if ( $woo_uom_output ) {
        $price_display = $price_display . ' ' . '<span class="uom">' . esc_attr_x( $woo_uom_output, 'woocommerce-uom' ) . '</span>';
    }
    

    echo $price_display;
    
    ?></div>
    <?php
}, 10, 1);
Leave a Comment