Untitled

 avatar
unknown
plain_text
5 months ago
967 B
3
Indexable
add_action('b2bking_bulkorder_cream_custom_heading', function(){

	if (is_user_logged_in()){

		?>
		<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){

	if (is_user_logged_in()){

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

		echo $price_display;
		
		?></div>
		<?php

	}
}, 10, 1);
Editor is loading...
Leave a Comment