Announcement

Collapse
No announcement yet.

Is there a way to setup a sale price?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Is there a way to setup a sale price?

    I would like to discount certain items or categories to display a sale price. Maybe even show the sale price in red and the regular price shown too?

    Admittedly, I am not the most astute at this stuff.

    #2
    Re: Is there a way to setup a sale price?

    This is built in by default in Version 9, but in 5.5 you have to manually edit the display code and use Custom Fields to do this (but it's doable and not nearly as hard as it sounds).
    Thanks,

    Rick Wilson
    CEO
    Miva, Inc.
    [email protected]
    https://www.miva.com

    Comment


      #3
      Re: Is there a way to setup a sale price?

      Here is how we do it in 5.5

      I added a custom field called MSRP.

      If an item is "On Sale" the "MSRP" field will get the "regular" price and the regular "Price" field gets the sale price that the item is to be sold at.

      I took this line on the Product and Category Pages
      Code:
      Price: <span id="price-value"><b><h7>&mvt:product:formatted_price;</h7></b></span>
      And changed it to
      Code:
      <mvt:if expr="NOT ISNULL l.settings:product:customfield_values:customfields:MSRP">
      Regular Price : <span id="price-value"><b><h7>$&mvt:product:customfield_values:customfields:MSRP;</h7></b></span><br>
      Sale Price: <span id="price-value" style="color:red"><b><h7>&mvt:product:formatted_price;</h7></b></span>
      <mvt:else>
        Price: <span id="price-value"><b><h7>&mvt:product:formatted_price;</h7></b></span>
      </mvt:if>
      Here is an example (as of 2014-11-19)
      http://www.wholesaleforeveryone.com/...NI000548S.html

      You can change the inline CSS and add the text-decoration: line-through tag.

      -Mike
      http://www.bandana.com
      http://www.wholesaleforeveryone.com

      Comment


        #4
        Re: Is there a way to setup a sale price?

        If you have not yet upgraded to MV9, or have decided to postpone same until after the holidays due to holiday code freeze, you might want to consider "Volume Pricing" module from www.EmporiumPlus.com. Its inexpensive, fast to implement, and easy to use -its one of my favorite modules, it paid for itself the very first time I used it, its really neat (so much so MIVA incorporated a more robust version in MV9).
        Thank you, Bill Davis

        Comment

        Working...
        X