Hello!
On delta theme, there is currency field before price field (look at the attached picture).I want to have price field before curreny field and currency field doesn't need dropdown, because I use only one currency. How can I do that? Below is the current code:
<!-- PRICE -->
<?php if(osc_price_enabled_at_items()) { ?>
<label for="price"><?php _e('Price', 'delta'); ?></label>
<div class="price-wrap">
<div class="inside">
<div class="enter<?php if($price_type == 'FREE' || $price_type == 'CHECK') { ?> disable<?php } ?>">
<div class="input-box">
<?php ItemForm::price_input_text(); ?>
<?php echo del_simple_currency(); ?>
</div>
<div class="or"><?php _e('or', 'delta'); ?></div>
</div>
<div class="selection">
<a href="#" data-price="0" <?php if($price_type == 'FREE') { ?>class="active"<?php } ?> title="<?php echo osc_esc_html(__('Item is offered for free', 'delta')); ?>"><span class="isTablet isDesktop"><?php _e('Free', 'delta'); ?></span><span class="isMobile"><?php _e('Item for free', 'delta'); ?></span></a>
<a href="#" data-price="" <?php if($price_type == 'CHECK') { ?>class="active"<?php } ?> title="<?php echo osc_esc_html(__('Based on agreement with seller', 'delta')); ?>"><span class="isTablet isDesktop"><?php _e('Deal', 'delta'); ?></span><span class="isMobile"><?php _e('Check with seller', 'delta'); ?></span></a>
</div>
</div>
</div>
<?php } ?>