Announcement

Collapse
No announcement yet.

Uncheck the Billing Information Same as Shipping checkbox

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

    Uncheck the Billing Information Same as Shipping checkbox

    I need to uncheck the "Billing Information Same as Shipping" when a customer is logged in. The site sends a lot of gifts and the customers are overlooking the Bill To info. This is causing all kinds of confusion. It seemed to be an easy fix for people checking out as a guest by removing "checked" from the input but it looks like there might be something much more involved if it's a logged in customer.

    Suggestions? Thanks!
    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

    #2
    Hi Leslie,

    If I remember correctly, there is a conditional in the customer section of OCST that controls the output.
    Matt Zimmermann

    Miva Web Developer
    Alchemy Web Development
    https://www.alchemywebdev.com
    Site Development - Maintenance - Consultation

    Miva Certified Developer
    Miva Professional Developer

    https://www.dev4web.net | Twitter

    Comment


      #3
      Originally posted by Matt Zimmermann View Post
      Hi Leslie,

      If I remember correctly, there is a conditional in the customer section of OCST that controls the output.
      I think I found it. I changed the "true" to "false" - it seems to work.

      y4QbpB.png


      If that is not the way to handle it, please let me know.

      Thanks!
      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
        Originally posted by lesliekirk View Post

        I think I found it. I changed the "true" to "false" - it seems to work.

        y4QbpB.png


        If that is not the way to handle it, please let me know.

        Thanks!
        To answer my own question - NO. It was a huge fail. The page continue will will not move forward to the next screen. So how does one uncheck the Bill To for a customer that is logged in?

        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


          #5
          Did my question stump the band? Changing these both to false did not work

          y4QbpB.png

          Miva Support has suggested that one needs to be true and one needs to be false. I wonder about that since both are originally true.

          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


            #6
            Hi Leslie,

            What happens if you set the "billing_to_show" tag in the JavaScript to "false" and change the input to not be checked:
            Code:
            <input id="billing_to_show" class="c-form-checkbox__input" type="checkbox" name="billing_to_show" value="">
            Matt Zimmermann

            Miva Web Developer
            Alchemy Web Development
            https://www.alchemywebdev.com
            Site Development - Maintenance - Consultation

            Miva Certified Developer
            Miva Professional Developer

            https://www.dev4web.net | Twitter

            Comment


              #7
              Originally posted by Matt Zimmermann View Post
              Hi Leslie,

              What happens if you set the "billing_to_show" tag in the JavaScript to "false" and change the input to not be checked:
              Code:
              <input id="billing_to_show" class="c-form-checkbox__input" type="checkbox" name="billing_to_show" value="">
              The input has had the "checked" removed. That works great if a customer is not logged in. I'll alert the store owner that I am going to change the "billing_to_show" tag in the javascript to "false" and have him also test accordingly.

              Thanks!
              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


                #8
                Originally posted by lesliekirk View Post

                The input has had the "checked" removed. That works great if a customer is not logged in. I'll alert the store owner that I am going to change the "billing_to_show" tag in the javascript to "false" and have him also test accordingly.

                Thanks!
                I have tested both logged in and logged out. It looks to "work for me" but I'm waiting on further testing from the store owner before declaring it to be a success.

                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


                  #9
                  lesliekirk Did this work for you? We are having some strange issues on the OCST page and it seems like it might be related to this box being unchecked. If a customer fills in the "Shipping Information" then checks the box, the STATE actually changes selection and does not stay at the selected state in SHIP TO. If I selected Florida in Shipping, it changes to Delaware in Billing.

                  Comment


                    #10
                    Originally posted by afiumano View Post
                    lesliekirk Did this work for you? We are having some strange issues on the OCST page and it seems like it might be related to this box being unchecked. If a customer fills in the "Shipping Information" then checks the box, the STATE actually changes selection and does not stay at the selected state in SHIP TO. If I selected Florida in Shipping, it changes to Delaware in Billing.
                    I'm digging through my notes and conversations with Miva regarding what was actually done, but I haven't heard of this issue. I'm hearing of the validate modal not coming up so the customer cannot continue to the OSEL page. I don't think it's related to this though (but I do not know for sure).



                    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


                      #11
                      Thanks - I think you might be right in that this might not be related. I dug some more too and played around with a dev store. I can narrow down that the ToggleDetails.js might be causing the state to switch but possibly due to some customizations we have. I just can't figure it out. Thanks for checking.

                      Comment


                        #12
                        Originally posted by afiumano View Post
                        Thanks - I think you might be right in that this might not be related. I dug some more too and played around with a dev store. I can narrow down that the ToggleDetails.js might be causing the state to switch but possibly due to some customizations we have. I just can't figure it out. Thanks for checking.
                        I haven't finished digging, please bear with me my dad passed away last night and I'm not running at 100%.

                        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


                          #13
                          Sorry about your Dad, lesliekirk

                          Comment


                            #14
                            lesliekirk So sorry to hear about your dad - please no rush

                            Comment


                              #15
                              Originally posted by lesliekirk View Post

                              I haven't finished digging, please bear with me my dad passed away last night and I'm not running at 100%.
                              Terribly sorry to learn about your loss Leslie.
                              Thank you, Bill Davis

                              Comment

                              Working...
                              X