This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Woocommerce – sale price and regular price

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Woocommerce – sale price and regular price

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #42880
    PresentisePresentise
    Participant

    Hi WPDreams,

    I would like to format the prices in the quick search box for woocommerce.
    But I cant seem to figure out how to do the following:

    Normal price should always show

    4,95

    But when the product has a sale price it show show like this:

    4,95 (with a line through it) 3,49

    Any idea how I can make that happen?

    Cheers,

    Colin

    #42903
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi Colin,

    Sure! Try using the {_price_html} pesudo variable. If still no line-through, then use this:

    <div class="product"><p class="price">{_price_html}</p></div>

    #42906
    PresentisePresentise
    Participant

    Legend! Thanks, that worked like a charm.

    Last question, would it be possible to show “out of stock” only when a product is out of stock?

    #42909
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Neat!

    The stock status is very likely doable too. For that use this pseudo code in the advanced title field:

    [<div class="{_stock_status}">Out of stock</div>]

    ..and you will also need this custom CSS:

    .asp_r .instock {
       display: none;
    }
    .asp_r .outofstock {
       color: #ff2a13;
    }
    #42928
    PresentisePresentise
    Participant

    Thank you so much.
    That worked perfectly.

    Top notch support

    #42930
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    #42933
    PresentisePresentise
    Participant

    Check, thanks again.

    I’ll drop a rating and review on the plugin and stellar support, right now.

    Cheers,

    Colin

    #42934
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Woocommerce – sale price and regular price’ is closed to new replies.