متاسفانه در این انجمن جوابی بابت این پست نگرفتم مجبور شدم خود بشینم و یه کاری بکنم حالا دوستانی که دوست دارن این اتفاق رو فراهم کنند که به جای قیمت صفر ریال در صفحه محصولشون کلمه به زودی نمایش داده بشه ، در پست قبلی توضیح کامل دادم اما حالا چه کنیم که در لیست محصولات در شاخه ها و صفحه اصلی هم کلمه به زودی نمایش داده بشه در فایل product-item.tpl در خط 116
{if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)}
<span itemprop="price" class="price product-price">
{if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if}
</span>
این قطعه کد رو پاک کنید و کد زیر رو جایگزین کنید
<span class="price product-price">
{if $product.price == 0}به زودی{elseif ($product.show_price) && $product.show_price && !isset($restricted_country_mode)}
<span itemprop="price" class="price product-price">
{if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if}
</span>
<span id="price product-price">{convertPrice price=$productPrice}</span>
{if $tax_enabled && ((isset($display_tax_label) && $display_tax_label == 1) OR !isset($display_tax_label))}
{if $priceDisplay == 1}{l s='tax excl.'}{else}{l s='tax incl.'}{/if}
{/if}
{/if}
</span>
موفق باشید