> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://regiostech.crisp.help/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# How to Stop Discounted Prices From Displaying In Certain Places

## Use cases
* Stopping the app from showing strikethrough prices within certain containers
* Working around store-specific issues where discounted prices on product add-ons, etc.

Simply add the `regios-dopp-generic-skip` CSS class to the price container or any of its parents to make the app avoid modifying pricing.

## Examples
```html
<div id="price-container" class="regios-dopp-generic-skip"></div>
```

```html
<div class="regios-dopp-generic-skip">
  <div>
    <div>
      <div id="price-container">
      </div>
    </div>
  </div>
</div>
```