Support

Account

Home Forums Front-end Issues Product hover image not displaying Reply To: Product hover image not displaying

  • Hi John, thanks for your reply. As stated in the original post, we have searched the theme for where that field is used and how. Here is what we found:

    acc-json folder:

    "key": "field_5e2875af54486",
                "label": "Hover Image",
                "name": "hover_image",
                "type": "image",
                "instructions": "",
                "required": 0,
                "conditional_logic": 0,
                "wrapper": {
                    "width": "",
                    "class": "",
                    "id": ""

    css:

    .product-img-wrapper img:last-of-type {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        z-index: 1;
        transition: all 0.25s ease-in-out;
    }
    
    .product-img-wrapper:hover img:last-of-type {
        opacity: 1;
        visibility: visible;

    Any ideas what could be wrong here?