Hallo @patrickFromCroatia
At item.php which line will I change the code and in function.php
Can you help me?
item.php
<?php
if(osc_item_price() == '') {
$og_price = __('Check with seller', 'veronika');
} else if(osc_item_price() == 0) {
$og_price = __('Free', 'veronika');
} else {
$og_price = osc_item_price();
}
?>
Function.php
$html = '<div class="simple-price-type simple-select">';
$html .= '<span class="text round3 tr1"><span>' . $default_name . '</span> <i class="fa fa-angle-down"></i></span>';
$html .= '<div class="list">';
$html .= '<div class="option info">' . __('Choose price type', 'veronika') . '</div>';
$html .= '<div class="option' . ($default_key == 0 ? ' selected' : '') . '" data-id="0"><i class="fa fa-pencil help"></i> ' . __('Enter price', 'veronika') . '</span></div>';
$html .= '<div class="option' . ($default_key == 1 ? ' selected' : '') . '" data-id="1"><i class="fa fa-cut help"></i> ' . __('Free', 'veronika') . '</span></div>';
$html .= '<div class="option' . ($default_key == 2 ? ' selected' : '') . '" data-id="2"><i class="fa fa-phone help"></i> ' . __('Check with seller', 'veronika') . '</span></div>';