
Originally Posted by
retched
More like where I don't want them to appear. I don't want them to appear on the My Account/History page nor the order confirmation screen of the customer side.
I do still want it to appear on the product details page.
The POSM stock messages appear within an HTML div with a class of stock-wrapper, e.g.
Code:
<div class="stock-wrapper">
...
</div>
You can add page-specific CSS files, e.g. checkout_confirmation.css, and hide those divs:
Code:
.stock-wrapper: display: none;