Why here doesn’t work extensions Product Per Product Shipping and USPS? It just uses shipping cost for each product particulary and don’t include USPS to calculate shipping costs. And how to turn off “FREE” on checkout page although I unchecked checkbox “Enable free shipping” on Settings page? I noticed in template “shipping dropdown.php” is line of code where is
<option value="<?php echo esc_attr($method->id.':'.$service.':'.$i); ?>" <?php selected($method->is_rate_selected($i)); ?>>
<?php echo $service; ?> – <?php echo $price > 0 ? jigoshop_price($price, array('ex_tax_label' => (int)$is_taxed)) : __('Free', 'jigoshop'); ?>
</option>
Is it wrong, or may be better to ask what is wrong?