Jump to content

Displaying product status "In stock" "Out of stock" from product page on catalogue pages


shananan

Recommended Posts

Hello! 

I have the Joybox theme by Anvanto. 

I need to display the status that appears on the product page a.k.a "In stock" "Out of stock" or whatever its set to, under the product on the catalogue page.

The first pic is my site with where aprox I want it displayed and the second is an example from another website(not prestashop), third is what i want displayed, if i wasn't clear
 

Capture.PNG

fe.PNG

df.PNG

Link to comment
Share on other sites

Hi,

you'll need to make some adjustments to the theme's template files.The file something like product-list.tpl or product-item.tpl.
/themes/your-theme-name/templates/catalog/_partials/product-list.tpl

Insert the following code where you want the stock status to appear
<div class="product-stock-status">
{if $product.quantity > 0}
<span class="in-stock">{$product.available_now|escape:'html':'UTF-8'}</span>
{else}
<span class="out-of-stock">{$product.available_later|escape:'html':'UTF-8'}</span>
{/if}
</div>

Link to comment
Share on other sites

On 8/13/2024 at 2:37 PM, Knowband Plugins said:

Hi,

you'll need to make some adjustments to the theme's template files.The file something like product-list.tpl or product-item.tpl.
/themes/your-theme-name/templates/catalog/_partials/product-list.tpl

Insert the following code where you want the stock status to appear
<div class="product-stock-status">
{if $product.quantity > 0}
<span class="in-stock">{$product.available_now|escape:'html':'UTF-8'}</span>
{else}
<span class="out-of-stock">{$product.available_later|escape:'html':'UTF-8'}</span>
{/if}
</div>

would that code also work to display the back order status if ordering when out of stock is allowed?

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...