Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 5 of 5

Thread: AutoShip Frequency (how to show "none" for non-recurring variant?)

  1. #1
    steven is offline Junior Member
    Join Date
    Jan 2011
    Posts
    14

    Default AutoShip Frequency (how to show "none" for non-recurring variant?)

    I am trying to accomplish a "Pricing Info" area on each product page that contains a dropdown for "AutoShip Frequency".
    See this example:
    http://www.americandiabeteswholesale...n_1614_127.htm

    I have tried to do the same thing with product variants by setting the first product as NOT recurring and others as recurring. However, I am not able to show AutoShip Frequency of (---none---) like the above example. I want the default AutoShip value to show (---none---).

    I'm currently working with the file "product.VariantsInDropDown.xml.config" in XmlPackages

    Any suggestions? Thanks.

  2. #2
    AspDotNetStorefront Staff - Scott's Avatar
    AspDotNetStorefront Staff - Scott is offline Administrator
    Join Date
    Mar 2007
    Location
    Ashland, OR
    Posts
    2,390

    Default

    You're not going to get exactly that setup without some customization, as we don't have a 'no variant selected' option. If you just make the variant name for the standard variant of the product something like "1 time only" or "Not auto-ship" or something along those lines I think you should get the point across well enough.

  3. #3
    steven is offline Junior Member
    Join Date
    Jan 2011
    Posts
    14

    Default

    Thanks for your reply. I think I will just change my variant names as you suggested. But the dropdown menu also shows the price. So, I get: "1 time only - Price: $10.01". Can you tell me how to remove the price from the dropdown?

    I will need to show the price outside of the variant dropdown. I added the following code which shows the price as: "Price: 10.0100"

    <div>
    Price:
    <xsl:value-of select="/root/ProductVariants/Variant/Price"/>
    </div>

    I need the price to show as: "Price: $10.01"

    Can you tell me how to display the price correctly?
    Thanks!

  4. #4
    steven is offline Junior Member
    Join Date
    Jan 2011
    Posts
    14

    Default

    I found this solution in the forums to remove price from variant dropdown:

    http://forums.aspdotnetstorefront.co...riant-Dropdown

  5. #5
    steven is offline Junior Member
    Join Date
    Jan 2011
    Posts
    14

    Default

    Now I need to remove the variant name from the Shopping Cart.

    Since I am showing my non-recurring variant as "--None--", the product in my shopping cart shows as "Product Name---None--"

    I want the Product name to display without the variant name.