Hi,
My client’s website is jaxnjoe.com
I enabled pop-up directly in the theme’s (Split 1.1.7) customization last week and in mobile, it isn’t popping up.
Below is the code. Can someone help me figure out what I should change to make it appear?
Thanks!
{% comment %}ly_global_begin{% endcomment %}{% capture ly-global-content %}{% render ‘ly-global’ render:true %}{% endcapture %}{% assign ly-global-content = ly-global-content | split: ‘#ly#’ %}{% assign langify_title = ly-global-content[0] %}{% assign langify_description = ly-global-content[1] %}{% assign langify_shop_name = ly-global-content[2] %}{% assign langify_shop_description = ly-global-content[3] %}{% assign canonical_langify_url = ly-global-content[4] %}{% assign langify_shop_url = ly-global-content[5] %}{% assign langify_shop_domain = ly-global-content[6] %}{% comment %}ly_global_end{% endcomment %}
{% if section.settings.bg %}
<a class=“popup-image” {% unless section.settings.link == blank %} href=“{{ section.settings.link }}” target=“_self” {% endunless %} aria-hidden=“true”>
{% endif %}
{% if section.settings.title != blank or section.settings.content != blank %}
{% if section.settings.title %}
{{ section.settings.title }}
{% endif %}{% if section.settings.title %}
{% if section.settings.newsletter_enable %}
{% include ‘footer_content-newsletter’ %}
{% endif %}
{% endif %}
{% schema %}
{
“name”: “Popup”,
“class”: “mount-popup”,
“settings”: [
{
“type”: “checkbox”,
“id”: “popup_enable”,
“label”: “Enable popup”,
“default”: true
},
{
“type”: “range”,
“id”: “newsletter_auto”,
“label”: “Show popup after”,
“min”: 10,
“max”: 60,
“step”: 10,
“unit”: “sec”,
“default”: 10
},
{
“type”: “select”,
“id”: “newsletter_frequent”,
“label”: “Popup frequency”,
“options”: [
{
“value”: “day”,
“label”: “Show each day”
},
{
“value”: “week”,
“label”: “Show each week”
},
{
“value”: “once”,
“label”: “Show only once”
}
]
},
{
“type”: “text”,
“id”: “title”,
“label”: “Title”,
“default”: “Newsletter”
},
{
“type”: “richtext”,
“id”: “content”,
“label”: “Content”,
“default”: “
Stay up to date on the latest product releases, special offers & news by signing up for our newsletter.
Read our privacy policy.
”},
{
“type”: “checkbox”,
“id”: “newsletter_enable”,
“label”: “Show newsletter”,
“default”: true
},
{
“type”: “image_picker”,
“id”: “bg”,
“label”: “Image”,
“info”: “960 x 1200px .jpg recommended”
},
{
“type”: “url”,
“id”: “link”,
“label”: “Image link”
}
]
}
{% endschema %}