MusikMachineMan Posted April 19, 2020 Share Posted April 19, 2020 (edited) Hello eveybody i am presently working on ps1.7.6 and i am facing 2 issues i can't solve : 1st) i have few items unavailable for the moment that i want to keep visible by customers the thing is that in addiction to the non-clickable "add to cart" button it necessary needs a text informing that the product is not in stock for the moment it's like this i'd like to change this 'out-of-stock' text and i can't succeed in finding it in International > Translations > Theme could you please tell me where to find this field ? Moreover, weird thing, on my french language, there is no message at all ! do you know if i could fulfill a message somewhere ? 2nd) concerning price, i have 'tax included' [ and TTC in french] below the price and once again i can't find where to erase it. i tried to put blank field in International > Translations > Theme, but nothing changed... if anyone could give me a clue thanks a lot in advance keep safe Edited April 20, 2020 by MusikMachineMan (see edit history) Link to comment Share on other sites More sharing options...
Guest Posted April 20, 2020 Share Posted April 20, 2020 change ps_ to your table prefix change id_lang = 1 to your id lang 1 (A). out-of-stock database: UPDATE ps_configuration SET value = 'my new stock text' WHERE value = 'Out-of-Stock' AND id_lang = 1; or database: SELECT * FROM ps_configuration WHERE value = 'Out-of-Stock'; 1 (B). database table ps_product: UPDATE ps_product_lang SET delivery_out_stock = 'my new stock text' WHERE id_lang = 1; 2. ./themes/your theme/templates/catalog/_partials/product-prices.tpl <!-- {if !$configuration.taxes_enabled} {l s='No tax' d='Shop.Theme.Catalog'} {elseif $configuration.display_taxes_label} {$product.labels.tax_long} {/if} --> Link to comment Share on other sites More sharing options...
MusikMachineMan Posted April 20, 2020 Author Share Posted April 20, 2020 Thanks a lot Guest 😀 2 inquiries, 2 solutions !! i did not think it could be in the configuration... just to clarify for next people that would be in this case, the 'out-of-stock' issue is solved in ps_configuration_lang. many thanks Link to comment Share on other sites More sharing options...
Guest Posted April 20, 2020 Share Posted April 20, 2020 Can you give me a like by clicking on the gray heart under my post. I gladly helped. Link to comment Share on other sites More sharing options...
MusikMachineMan Posted April 20, 2020 Author Share Posted April 20, 2020 done with pleasure ! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now