Announcement

Collapse
No announcement yet.

My iPhones are unable to shop on our new Shadows store.

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

    My iPhones are unable to shop on our new Shadows store.

    My iPhones are unable to shop on our new recently launched latest version of Shadows store.

    Problems:
    • Tiny Cart Shipping Estimate causing most of the screen to blank, requiring page to be refreshed.
    • Checkout "Please verify your address" notification, similar issue, partial blank screen but not even a page refresh works.
    I can't help wondering if other customers are having similar issues.

    Notes:
    • Problem only with my old and new iPhones (6S and 13 Pro) on our new Shadows 2.+ store only.
    • Neither my old or new iPhones have problems with Miva's Shadows demo store.
    • All remaining Apple devices (e.g.: Old and new iPhones and iPads) in household don't have any problems in neither Miva Shadows demo store or our new Shadows store .
    Thank you, Bill Davis

    #2
    Update:

    It looks like the modal overlay was losing it's fixed positioning somehow. Thus, rule set to "position: fixed !important;" to remedy issue.

    Code:
    .c-dialog__overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    }
    Thank you, Bill Davis

    Comment

    Working...
    X