Untitled

mail@pastecode.io avatar
unknown
plain_text
13 days ago
1.4 kB
3
Indexable
Never
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);
    }

    // get retail price
    $retail_price = get_post_meta($product->get_id(), '_sale_price', true);
    if (empty($retail_price)){
        $retail_price = get_post_meta($product->get_id(), '_regular_price', true);
    }

    if (!empty($retail_price)){
        ?>
        Retail price: <?php echo wc_price($retail_price); ?><br>
        Wholesale price: <?php echo $price_display; ?>
        <?php
    } else {
        echo $price_display;

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