I am having trouble with the Add to Cart button on my Sunrise theme. It isn’t regularly appearing in chrome, even incognito. It appears to work fine in Firefox and Internet Explorer. The Theme developer says its and app, but I removed all apps and reverted back to the earliest revision and I’m still having the problem.
Here is a sample product. https://videogametrader.com/products/6691
When the page first loads the Add to Cart button Flashes for a second and then goes away. On other browsers it does appear. I’ve attached images.
FireFox Browser
Internet Explorer
Chrome Browser
This is driving me nutty.
Here is my theme code. Any help is appreciated.
====================================
{%- assign current_variant = product.selected_or_first_available_variant -%}
{%- assign featured_image = current_variant.featured_image | default: product.featured_image -%}
{%- assign product_image_zoom_size = ‘1024x1024’ -%}
{%- assign zoom_enabled = section.settings.zoom_product -%}
{{ product.title | escape}}
{{ product.vendor | link_to: vendor_url }}
{% if product.tags contains “MAP” %}
Add to cart for price
{% else %}{% if section.settings.show_product_sku %}
{{'products.product.quantity' | t}}
{% endif %} {% unless current_variant.available %} {{ 'products.product.sold_out' | t }} {% else %} {{ 'products.product.add_to_cart' | t }} {% endunless %}{% if collection %}
{% if collection.previous_product or collection.next_product %}
{% if section.settings.product_social %}
{% if section.settings.product_related %}
{% include ‘related’ %}
{% endif %}
{% unless product.empty? %}
{% endunless %}
{% schema %}
{
“name”: “Product pages”,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_inventory”,
“label”: “Show inventory quantity”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “show_preorder”,
“label”: “Show "pre-order" message”,
“default”: true,
“info”: “This will only appear when a product has managed inventory that is 0 or less and still available to buy”
},
{
“type”: “checkbox”,
“id”: “zoom_product”,
“label”: “Enable image zoom”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “show_qty”,
“label”: “Show qty box on product screen”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “show_product_sku”,
“label”: “Show SKU”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “show_vendor”,
“label”: “Show vendor”,
“default”: false
},
{
“type”: “checkbox”,
“id”: “show_sale_sticker”,
“label”: “Show sale sticker”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “product_social”,
“label”: “Show sharing buttons”,
“default”: true
},
{
“type”: “header”,
“content”: “Related items”
},
{
“type”: “checkbox”,
“id”: “product_related”,
“label”: “Enable”,
“default”: true
},
{
“type”: “text”,
“id”: “title_related”,
“label”: “Title”,
“default”: “You may also like…”
},
{
“type”: “checkbox”,
“id”: “mobile_related_items”,
“label”: “Hide related items on mobile”,
“default”: false
}
]
}
{% endschema %}


