Untitled

mail@pastecode.io avatar
unknown
plain_text
5 months ago
1.2 kB
0
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 

	if ($product->is_type('variable')){

		$variation_min_price = $product->get_variation_price();
		$variation_min_price = b2bking()->b2bking_wc_get_price_to_display( $product, array( 'price' => $variation_min_price ) );
		$price_display = wc_price($variation_min_price);

	} else {

		$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);
		}
		
	}

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