Announcement

Collapse
No announcement yet.

Marketing > Specific Sale Price

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

    Marketing > Specific Sale Price

    I am trying to figure out how this works.

    I go into Marketing
    Add a price group name it "SALE"
    Eligibility = ALL SHOPPERS
    TYPE = SPECIFIC SALE PRICE
    check display discount in basket.
    no dates are checked, which I am guessing is it is on until specifically off

    priority=0

    Saved it

    Open up Discounted Products for Sale (you have to add the columns PRICE and SALES PRICE:SALE)

    Assign a product, add a sale price to that product.

    The product on it's category page still shows the "regular" price, as well as on the specific products page, but if I add it to the basket, it shows the reduced price, but not a "you saved $1!" or anything

    I have tried changing to specific activity dates, but same regular price results.

    And I didn't see a video or instructions for this one, but it may have been covered in another.

    #2
    Re: Marketing > Specific Sale Price

    Did you make the template changes from this page?
    http://www.miva.com/version9-template-changes
    Mark Hood
    Vermont Gear

    Comment


      #3
      Re: Marketing > Specific Sale Price

      Wouldn't I only make those changes if I had changed the original page?

      Comment


        #4
        Re: Marketing > Specific Sale Price

        Originally posted by sworcester View Post
        Wouldn't I only make those changes if I had changed the original page?
        I think you need to incorporate them into your existing design. For instance this is from the prod display layout and is what it uses to display the discounting stuff. As a test you can just add that to your existing page and see what it does...
        <div class="product-price">
        Price:
        <span id="price-value-additional" style="text-decoration: line-through"></span>

        <span id="price-value" class="bold">&mvt:product:formatted_base_price;</span>

        <div id="product-discounts">
        </div>
        </div>

        Re-reading your post did you update from version 5.5 or is this a brand new store?
        Last edited by Mark Hood; 11-21-14, 02:44 PM.
        Mark Hood
        Vermont Gear

        Comment


          #5
          Re: Marketing &gt; Specific Sale Price

          (It will become plainly evident that this stuff confuses me)

          When I go CSSUI: Edit Page: PROD > Page > Attribute Machine
          The text they are showing me is under Attribute Machine > Head Template

          Does that make sense?

          Then there are radio buttons in several of the categories that allow you to have displayed price in different areas, such as Attribute Machine,Product Display Layout, Product Display Layout Image Machine, etc., is there anywhere this is explained?

          Comment


            #6
            Re: Marketing &gt; Specific Sale Price

            Originally posted by sworcester View Post
            (It will become plainly evident that this stuff confuses me)

            When I go CSSUI: Edit Page: PROD > Page > Attribute Machine
            The text they are showing me is under Attribute Machine > Head Template

            Does that make sense?

            Then there are radio buttons in several of the categories that allow you to have displayed price in different areas, such as Attribute Machine,Product Display Layout, Product Display Layout Image Machine, etc., is there anywhere this is explained?
            I decided to take some time to see if I could figure this out on an original ready theme that I have in my dev store. Low and behold I could not get this to function either. I'm pretty sure there are missing pieces to making it work and that the one page template change document is not quite enough. There appears to be several new settings to set and pricing elements that are not configured by default on the PROD page. I assume with those elements there may also be missing css information for them?

            Perhaps someone at Miva can make some clear cut directions on how to get this to work so that "predicted discounts" will show on the PROD and CTGY pages.

            Have the latest ready themes been updated to function automatically?
            Mark Hood
            Vermont Gear

            Comment


              #7
              Re: Marketing &gt; Specific Sale Price

              At least I feel validated, so to speak

              Comment


                #8
                Re: Marketing &gt; Specific Sale Price

                I know the first Ready Themes posted were accidentally missing some stuff, I believe updated ones should be posted Monday.
                Last edited by Rick Wilson; 11-22-14, 10:33 AM.
                Thanks,

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

                Comment


                  #9
                  Re: Marketing &gt; Specific Sale Price

                  Originally posted by Rick Wilson View Post
                  I know the first Ready Themes posted were accidentally missing some stuff, I believe updated ones should be posted Monday.
                  I'd settle for clear cut do this and do that directions for making it work on PROD and CTGY
                  Mark Hood
                  Vermont Gear

                  Comment


                    #10
                    Re: Marketing &gt; Specific Sale Price

                    I'll make sure we post those too
                    Thanks,

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

                    Comment


                      #11
                      Re: Marketing &gt; Specific Sale Price

                      Are the new themes updated so we can steal whatever was missing? I just don't want to waste the time updating. I have the pricing working on a dev store where it will show the sale price properly, but the strikeout price and other div tag remain empty. I suspect there was maybe some javascript that needs to be placed on the page to fill out these fields on the fly?
                      Ted Hust
                      AarcMediaGroup.com

                      Celebrating 13 Years of Outstanding Service & Support
                      Miva Merchant Design

                      Comment


                        #12
                        Re: Marketing &gt; Specific Sale Price

                        Originally posted by Rick Wilson View Post
                        I'll make sure we post those too
                        Any luck on this? We actually have the opportunity to try and use this as well and just can't seem to get it to show on the Prod or Ctgy pages
                        Mark Hood
                        Vermont Gear

                        Comment


                          #13
                          Re: Marketing &gt; Specific Sale Price

                          Here is the base code for the strike though for the product page:

                          Code:
                          Price: 
                              <span id="price-value-additional" style="text-decoration: line-through">
                                  <mvt:if expr="l.settings:product:base_price GT l.settings:product:price">    
                                      &mvt:product:formatted_base_price;
                                  </mvt:if>
                              </span>
                              <span id="price-value" class="bold">&mvt:product:formatted_price;</span>
                              <div id="product-discounts"></div>
                          and here is the code for Category:

                          Code:
                          <div class="product-price">
                          Price: 
                          	<mvt:if expr="l.settings:product:base_price GT l.settings:product:price">
                          		<span style="text-decoration: line-through">&mvt:product:formatted_base_price;</span>
                          	</mvt:if>
                          	<span class="bold">&mvt:product:formatted_price;</span>
                          </div>
                          Last edited by Brennan; 11-25-14, 01:38 PM.
                          Brennan Heyde
                          VP Product
                          Miva, Inc.
                          [email protected]
                          https://www.miva.com

                          Comment


                            #14
                            Re: Marketing &gt; Specific Sale Price

                            Originally posted by Brennan View Post
                            Here is the base code for the strike though for the product page:

                            Code:
                            Price: 
                                <span id="price-value-additional" style="text-decoration: line-through">
                                    <mvt:if expr="l.settings:product:base_price GT l.settings:product:price">    
                                        &mvt:product:formatted_base_price;
                                    </mvt:if>
                                </span>
                                <span id="price-value" class="bold">&mvt:product:formatted_price;</span>
                                <div id="product-discounts"></div>
                            and here is the code for Category:

                            Code:
                            <div class="product-price">
                            Price: 
                                <mvt:if expr="l.settings:product:base_price GT l.settings:product:price">
                                    <span style="text-decoration: line-through">&mvt:product:formatted_base_price;</span>
                                </mvt:if>
                                <span class="bold">&mvt:product:formatted_price;</span>
                            </div>

                            Elements not automatically filled in... Any css/javascript we need to add?
                            Mark Hood
                            Vermont Gear

                            Comment


                              #15
                              Re: Marketing &gt; Specific Sale Price

                              What do you mean by Elements not automatically filled in?

                              The price with the line though will only show if you have a discount setup. Is that what you mean.

                              There shouldn't be any other CSS or JS needed for this (all the JS for attribute machine is part of the core software)
                              Brennan Heyde
                              VP Product
                              Miva, Inc.
                              [email protected]
                              https://www.miva.com

                              Comment

                              Working...
                              X