• Resolved creativehq

    (@creativehq)


    “Advanced Settings: Use regular price as strikeout price for sale items on product detail page (Product Based Rules)”

    Hello, please how can we remove the strikeout price on all other pages other than the product detail pages? We don’t want the strikeout prices showing up on category pages and sidebars for instance – just on the actual product description pages.

    Many thanks for your help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support ijas

    (@ijasacodez)

    You can CSS to hide the strike-out price.

    span.price del {
        display: none !important;
    }

    This code will hide all strike-out prices, please add the corresponding outer classes for limiting the same to a particular section. For ex: if the sidebar has a class right-sidebar, the code will look like

    .right-sidebar span.price del {
        display: none !important;
    }
    Thread Starter creativehq

    (@creativehq)

    Many thanks!

    Will this code be affected when the plugin is updated?

    Plugin Support ijas

    (@ijasacodez)

    No, just make sure you are adding the same to your websites custom CSS section.

    We are closing this thread. Please don’t hesitate to get back to us if you require any further assistance or clarifications from our end in the future. Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Re: Strikeout Price Removal’ is closed to new replies.