Hi, on my store "Out of stock" was not showing when an item was out of stock (and back ordering is disabled for that product). It would just grey out the add to cart button. I did the following:
Check the translations to make sure there were words in the out of stock box, there were
Search the prestashop form, found this https://www.prestashop.com/forums/topic/250705-cannot-display-out-of-stock-or-custom-message/
I replaced the following lines in my theme product.tpl
<!-- availability --><pid="availability_statut"{if ($product->quantity <= 0 && !$product->available_later && $allow_oosp) OR ($product->quantity > 0 && !$product->available_now) OR !$product->available_for_order OR $PS_CATALOG_MODE} style="display: none;"{/if}>
<spanid="availability_label">{l s='Availability:'}</span><spanid="availability_value"{if $product->quantity <= 0} class="warning_inline"{/if}>
{if $product->quantity <= 0}{if $allow_oosp}{$product->available_later}{else}{l s='This product is no longer in stock'}{/if}{else}{$product->available_now}{/if}
</span></p>
And now:
!Availability: This product is no longer in stock with those attributes but is available with others."
will show on a page with one of out stock item (where others are in stock) currently https://www.ethicalpets.co.uk/becotray#/45-colour-baby_blue blue colour litter trays
What I need now is:
Is the change I made okay? I know almost nothing about css and html
Can I move the text to the beige box above add to cart? This is more obvious for my elderly customers - I tried pasting it above the php for add to cart etc but it didn't display
Where can I change this text? I can't find it in translations or in the tpl file, no idea where it comes from!
Question
annafjmorris
Hi, on my store "Out of stock" was not showing when an item was out of stock (and back ordering is disabled for that product). It would just grey out the add to cart button. I did the following:
with the following from the default theme:
And now:
!Availability: This product is no longer in stock with those attributes but is available with others."
will show on a page with one of out stock item (where others are in stock) currently https://www.ethicalpets.co.uk/becotray#/45-colour-baby_blue blue colour litter trays
What I need now is:
12 answers to this question
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