Hello Frosticek,
I would like to change 'Check with seller' with 'Contact Advertiser'.
I tried to change it by translating po files but it didn't make any changes..
I found that making some changes to hItems.php or functions.php changed it.
hItems.php
function osc_format_price($price, $symbol = null)
{ if ($price === null) return osc_apply_filter ('item_price_null', __('Check with seller') );
to
function osc_format_price($price, $symbol = null)
{ if ($price === null) return osc_apply_filter ('item_price_null', __('Contact Advertiser') );
functions.php
function zara_premium_format_price($price, $symbol = null)
{ if ($price === null) return osc_apply_filter ('item_price_null', __('Check with seller', 'zara') );
to
function zara_premium_format_price($price, $symbol = null)
{ if ($price === null) return osc_apply_filter ('item_price_null', __('Contact Advertiser', 'zara') );
What I would like to know is which file should I make the necessary change? should I change both? Or will I it cause any problems if I change it?
Your suggestion will be highly appreciated.
Thank you