Announcement

Collapse
No announcement yet.

Not Logged In Availability Group

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

    Not Logged In Availability Group

    I'd like to be able to create an availability group for visitors that are not logged-in or don't have business accounts.

    #2
    You might want to explain 'why', cause basically, that's not how availability groups work.
    Bruce Golub
    Phosphor Media - "Your Success is our Business"

    Improve Your Customer Service | Get MORE Customers | Edit CSS/Javascript/HTML Easily | Make Your Site Faster | Get Indexed by Google | Free Modules | Follow Us on Facebook
    phosphormedia.com

    Comment


      #3
      Originally posted by rfoulger View Post
      I'd like to be able to create an availability group for visitors that are not logged-in or don't have business accounts.
      This would basically be everyone else. Availability Groups are only for customers that have created an account. Price Groups have the ability to restrict and exclude visitors. Like Bruce said, what are you trying to do?
      Leslie Kirk
      Miva Certified Developer
      Miva Merchant Specialist since 1997
      Previously of Webs Your Way
      (aka Leslie Nord leslienord)

      Email me: [email protected]
      www.lesliekirk.com

      Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

      Comment


        #4
        Thanks for responding. Basically, I'd like to have a free shipping option for users that are not logged in.

        Comment


          #5
          Create a flat rate shipping method with the code 'NotLoggedIn'.

          Then, on your OSEL page, find:
          <mvt:foreach array="shippingmethods" iterator="method">

          and replace it with

          <mvt:foreach array="shippingmethods" iterator="method">
          <mvt:if expr="(l.settings:method:code EQ 'NotLoggedIn' AND NOT(g.Basket:cust_id)">

          Then search for the closing (next) </mvt:foreeach> and replace it with:

          </mvt:if>
          </mvt:foreach>


          (This is why its always best to explain what you what to ACCOMPLISH, instead of how you want to DO something :)

          Bruce Golub
          Phosphor Media - "Your Success is our Business"

          Improve Your Customer Service | Get MORE Customers | Edit CSS/Javascript/HTML Easily | Make Your Site Faster | Get Indexed by Google | Free Modules | Follow Us on Facebook
          phosphormedia.com

          Comment


            #6
            Thanks Bruce...I'll give that a try.

            Comment

            Working...
            X