shananan Posted August 12, 2024 Share Posted August 12, 2024 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 Link to comment Share on other sites More sharing options...
Knowband Plugins Posted August 13, 2024 Share Posted August 13, 2024 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 More sharing options...
shananan Posted August 14, 2024 Author Share Posted August 14, 2024 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 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