> Exclusive of Tax
                                            </li>
                                            <li>
                                                <input name="excluding_tax" value="off" type="radio" <?php 
    echo get_option('excluding_tax') == 'off' ? 'checked' : '';
    ?>
> Inclusive of Tax
                                            </li>
                                        </ul></div><?php 
}
?>
                                <br><label class="ps_price_sub_options" style="display: inline-block;width: 25em;"><b>Tax Mapping<a href="https://www.linksync.com/help/woocommerce"><img style="margin-bottom:-4px;margin-left:4px" title="When syncing products, both Vend and WooCommerce have their own tax configurations - use these Tax Mapping settings to 'map' the Vend taxes with those in your WooCommerce store. Note that the mapping is used to specify the Tax Class for a product in WooCommerce, and the Sales tax for a product in Vend, depending on which Product Syncing Type you select. "  src="../wp-content/plugins/linksync/img/help.png" height="16" width="16"></a></b></label>
                                <p style="margin-left: 23px;" class="description ps_price_sub_options">To set the relevant tax rate for a product in WooCommerce  
                                </p> <?php 
for ($count_taxes = 1; $count_taxes <= 3; $count_taxes++) {
    $taxes = $apicall->linksync_getTaxes();
    if (isset($taxes) && !empty($taxes)) {
        break;
    }
}
$taxes_all = explode(',', get_option('tax_class'));
if (isset($taxes) && !empty($taxes)) {
    if (!isset($taxes['errorCode'])) {
        if (isset($taxes['taxes'])) {
            ?>
<div style="margin-left: 23px;"><ul><legend class="ps_price_sub_options" style="display: inline-block;width: 8em; float: left"> <b>Vend Taxes</b></legend>   <legend class="ps_price_sub_options" style="display: inline-block;width: 3em; float: left">=></legend>  <legend class="ps_price_sub_options" style="display: inline-block;width: 25em; "><b>Woo-Commerce Tax Classes</b></legend><br><?php 
            $tax_classes_list = array_map("rtrim", explode("\n", get_option('woocommerce_tax_classes')));
            $implode_tax['tax_name'][] = 'standard-tax';
            foreach ($tax_classes_list as $value) {
                $taxexplode = explode(" ", strtolower($value));
                $implode_tax['tax_name'][] = implode("-", $taxexplode);