# Including theme components
require_once get_template_directory().’/inc/includes.php’;
if(defined(‘ELEMENTOR_VERSION’)) {
define(‘DFD_ELEMENTOR’, true);
}
add_filter(‘woocommerce_get_price_html’, ‘show_price_with_and_without_tax’, 20, 2);
function show_price_with_and_without_tax($price, $product) {
    if (!$product->is_taxable()) {
        return $price;
    }
    $price_excluding_tax = wc_get_price_excluding_tax($product);
    $price_including_tax = wc_get_price_including_tax($product);
    return wc_price($price_excluding_tax) . ‘ brez DDV | ‘ . wc_price($price_including_tax) . ‘ z DDV’;
}