ISSUE: copyrights and payment icons are disappeared

Solved
nimmer
Tourist
11 0 7

I have already added copyrights and payment icons from theme customization but I don't know that where they are gone from my footer. Kindly help me to get those icons and copyrights back to its place. I am attaching the screenshot and URL.
www.savymarket.com

safas2.PNG

Accepted Solution (1)

Accepted Solutions
KetanKumar
Shopify Partner
36495 3620 11760

This is an accepted solution.

@nimmer 

i have done this please check.

i have to remove un used code 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing

View solution in original post

Replies 10 (10)
KetanKumar
Shopify Partner
36495 3620 11760

@nimmer 

sorry for this issue can you please compare your original theme it will show on footer if yes just compare footer code thene check

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
nimmer
Tourist
11 0 7

@KetanKumar yes I have already did. But it wont work. What should I do now?

KetanKumar
Shopify Partner
36495 3620 11760

@nimmer 

can you please show me where do you have add this image and share code so i will guide you

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
nimmer
Tourist
11 0 7

Hello @KetanKumar, below code is from footer.liquid file. Now let me know that how can I get back those payment icons and copyrights back.

 

 
<footer class="site-footer">
  <div class="page-width">
    <div class="grid">
      {% assign row_width = 0 %}
      {% for block in section.blocks %}
        {% assign row_width = row_width | plus: block.settings.container_width %}
        {% style %}
        @media only screen and (min-width: 590px) {
          .footer__item--{{ block.id }} {
            width: {{ block.settings.container_width }}%;
          }
        }
        {% endstyle %}
 
        {% if row_width > 100 %}
          <div class="footer__clear small--hide"></div>
          {% assign row_width = row_width | minus: 100 %}
        {% endif %}
 
        {% case block.type %}
        {% when 'logo_social' %}
          <div {{ block.shopify_attributes }} class="grid__item small--hide footer__item--{{ block.id }}">
            {% include 'footer-logo-social', block: block, first_instance: true %}
          </div>
        {% when 'custom' %}
          <div {{ block.shopify_attributes }} class="grid__item footer__item--{{ block.id }}">
            {% include 'footer-custom-text', block: block %}
          </div>
        {% when 'newsletter' %}
          <div {{ block.shopify_attributes }} class="grid__item footer__item--{{ block.id }}">
            {% include 'footer-newsletter', block: block %}
          </div>
        {% when 'menu' %}
          <div {{ block.shopify_attributes }} class="grid__item footer__item--{{ block.id }}">
            {% include 'footer-menu', block: block %}
          </div>
        {% endcase %}
      {% endfor %}
      {% for block in section.blocks %}
        {% if block.type == 'logo_social' %}
          <div class="grid__item medium-up--hide">
            {% include 'footer-logo-social', block: block %}
          </div>
        {% endif %}
      {% endfor %}
    </div>
    
   
    {% if section.settings.show_payment_icons %}
     {% unless shop.enabled_payment_types == empty %}
        <ul class="inline-list payment-icons">
       
            {% if section.settings.show_copyright %}
      <p class="footer__copyright">
        &copy; {{ 'now' | date: '%Y' }} {{ shop.name }}
        {% if section.settings.copyright_text != blank %}
          {{ section.settings.copyright_text }}
        {% endif %}
      </p>
    {% endif %}
          
         {% assign enabled_payment_types = 'paypal,visa,master,american_express' | remove: ' ' | split: ',' %} {% for type in enabled_payment_types %}
          
          
            <li class="icon--payment">
              {{ type | payment_type_svg_tag: class:'icon icon--full-color' }}
            </li>
          {% endfor %}
        </ul>
      {% endunless %}
    {% endif %}
    
    
    
 
    
 
    
  </div> 
  
</footer>
 
{% schema %}
  {
    "name": "Footer",
    "max_blocks": 12,
    "settings": [
    {
        "type": "checkbox",
        "id": "show_payment_icons",
        "label": "Show payment icons",
        "default": false
      },
      {
        "type": "checkbox",
        "id": "show_copyright",
        "label": "Show copyright"
      },
      {
        "type": "text",
        "id": "copyright_text",
        "label": "Additional copyright text"
      }
    ],
    "blocks": [
      {
        "type": "logo_social",
        "name": "Logo and social",
        "limit": 1,
        "settings": [
          {
            "type": "image_picker",
            "id": "logo",
            "label": "Logo image"
          },
          {
            "type": "range",
            "id": "desktop_logo_height",
            "label": "Logo height",
            "default": 50,
            "min": 20,
            "max": 120,
            "unit": "px"
          },
          {
            "type": "range",
            "id": "container_width",
            "label": "Column width",
            "default": 20,
            "min": 15,
            "max": 95,
            "unit": "%"
          }
        ]
      },
      {
        "type": "menu",
        "name": "Menu",
        "settings": [
          {
            "type": "checkbox",
            "id": "show_footer_title",
            "label": "Show title",
            "default": true
          },
          {
            "type": "link_list",
            "id": "menu",
            "label": "Choose a menu",
            "default": "footer",
            "info": "This menu won't show dropdown items"
          },
          {
            "type": "range",
            "id": "container_width",
            "label": "Column width",
            "default": 20,
            "min": 15,
            "max": 95,
            "unit": "%"
          }
        ]
      },
      {
        "type": "newsletter",
        "name": "Newsletter",
        "limit": 1,
        "settings": [
          {
            "type": "checkbox",
            "id": "show_footer_title",
            "label": "Show title",
            "default": true
          },
          {
            "type": "paragraph",
            "content": "Any customers who sign up will have an account created for them in Shopify. [View customers](/admin/customers)."
          },
          {
            "type": "text",
            "id": "title",
            "label": "Heading",
            "default": "Sign up and save"
          },
          {
            "type": "richtext",
            "id": "richtext",
            "label": "Text",
            "info": "Optional",
            "default": "<p>Subscribe to get special offers, free giveaways, and once-in-a-lifetime deals.</p>"
          },
          {
            "type": "range",
            "id": "container_width",
            "label": "Column width",
            "default": 20,
            "min": 15,
            "max": 95,
            "unit": "%"
          }
        ]
      },
      {
        "type": "custom",
        "name": "Custom text",
        "settings": [
          {
            "type": "checkbox",
            "id": "show_footer_title",
            "label": "Show title",
            "default": true
          },
          {
            "type": "text",
            "id": "title",
            "label": "Heading",
            "default": "Custom text"
          },
          {
            "type": "richtext",
            "id": "text",
            "label": "Text",
            "default": "<p>Add your own custom text here.</p>"
          },
          {
            "type": "range",
            "id": "container_width",
            "label": "Column width",
            "default": 20,
            "min": 15,
            "max": 95,
            "unit": "%"
          }
        ]
      }
    ],
    "default": {
      "settings": {},
      "blocks": [
        {
          "type": "menu",
          "settings": {}
        },
        {
          "type": "logo_social",
          "settings": {}
        }
      ]
    }
  }
{% endschema %}

 

nimmer
Tourist
11 0 7

@KetanKumar which file's code you want from me ? 
Kindly help me in this scenario. I am upset with dealing this.

 

KetanKumar
Shopify Partner
36495 3620 11760

@nimmer 

if possible to add me on staff so i will check and let you know all possiblity 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
nimmer
Tourist
11 0 7

@KetanKumar I have added you in staff with your email address 'bamaniyaketan.sky@gmail.com'. You can check and edit all the settings there. 

KetanKumar
Shopify Partner
36495 3620 11760

This is an accepted solution.

@nimmer 

i have done this please check.

i have to remove un used code 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
nimmer
Tourist
11 0 7
KetanKumar
Shopify Partner
36495 3620 11760

@nimmer 

it's my pleasure to help us

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing