Adding "LLC." with "All rights reserved." with a link to the footer - Kingdom Theme

Hello, I am trying to add right after my company name “LLC. All rights reserved” with the “All rights reserved” having a policy link in the footer of my Kingdom Theme. Thanks!

My website:

selvence.com

Hi @Selvence ,

There is no such option in debut theme to alter the copyright text form customize, We need to change through custom code.

Here are the step to change from footer.liquid file

Path: theme->actions->edit code

Sections->footer.liquid file

Thanks

This is my footer. liquid - what changes are needed?

 

  {% for block in section.blocks %}

    {% case block.type %}

      {% when 'text' %}

        

        
          {% unless block.settings.title == blank %}
            #### {{ block.settings.title | escape }}
          {% endunless %}

          
            {{ block.settings.content }}
          
    

        

      {% when 'menus' %}

        

          {% unless block.settings.menu_1 == blank %}

            

              {% unless block.settings.title_1 == blank %}
                #### {{ block.settings.title_1 | escape }}
              {% endunless %}
              
              
                {% for link in linklists[block.settings.menu_1].links %}
                  
                    {{ link.title | escape }}
                  
                {% endfor %}
              

            

          {% endunless %}

          {% unless block.settings.menu_2 == blank %}

            

              {% unless block.settings.title_2 == blank %}
                #### {{ block.settings.title_2 | escape }}
              {% endunless %}
              
              
                {% for link in linklists[block.settings.menu_2].links %}
                  
                    {{ link.title | escape }}
                  
                {% endfor %}
              

            

          {% endunless %}

        

      {% when 'newsletter' %}

        

          {% unless block.settings.title == blank %}
            #### {{ block.settings.title | escape }}
          {% endunless %}

          

            {% form 'customer' %}

              {% render 'form-errors', form: form %}

              {% if form.posted_successfully? %}

                {{ 'general.newsletter.confirmation' | t }}

              {% else %}
                
                

                  
                  
                  
                

              {% endif %}

            {% endform %}

          

        

      {% when 'social' %}

        
          
          {% unless block.settings.title == blank %}
            #### {{ block.settings.title | escape }}
          {% endunless %}

          

            {% if settings.social_facebook != '' %}
              {% render 'theme-symbols', icon: 'social_facebook' %}
            {% endif %}

            {% if settings.social_instagram != '' %}
              {% render 'theme-symbols', icon: 'social_instagram' %}
            {% endif %}

            {% if settings.social_twitter != '' %}
              {% render 'theme-symbols', icon: 'social_twitter' %}
            {% endif %}

            {% if settings.social_youtube != '' %}
              {% render 'theme-symbols', icon: 'social_youtube' %}
            {% endif %}

            {% if settings.social_vimeo != '' %}
              {% render 'theme-symbols', icon: 'social_vimeo' %}
            {% endif %}

            {% if settings.social_pinterest != '' %}
              {% render 'theme-symbols', icon: 'social_pinterest' %}
            {% endif %}

            {% if settings.social_tumblr != '' %}
              {% render 'theme-symbols', icon: 'social_tumblr' %}
            {% endif %}

            {% if settings.social_linkedin != '' %}
              {% render 'theme-symbols', icon: 'social_linkedin' %}
            {% endif %}

            {% if settings.social_flickr != '' %}
              {% render 'theme-symbols', icon: 'social_flickr' %}
            {% endif %}

            {% if settings.social_reddit != '' %}
              {% render 'theme-symbols', icon: 'social_reddit' %}
            {% endif %}

            {% if settings.social_email != '' %}
              [{% render 'theme-symbols', icon: 'social_email' %}](mailto:{{ settings.social_email | escape }})
            {% endif %}

          

        

  
    {% endcase %}

  {% endfor %}

    

      {% render 'localization-form', location: 'footer', show_currency_selector: section.settings.show_currency_selector, show_locale_selector: section.settings.show_locale_selector %}
  
      {% if section.settings.show_payment_icons and shop.enabled_payment_types != empty %}
        

          {% for type in shop.enabled_payment_types %}
            {{ type | payment_type_svg_tag }}
          {% endfor %}
        

      {% endif %}
      
      
        {{ 'general.copyright' | t }} © {{ 'now' | date: "%Y" }} {{ shop.name | escape }}. {{ powered_by_link }}
      

    

{% schema %}
  {
    "name": "Footer",
    "class": "mount-footer",
    "max_blocks": 4,
    "settings": [
      {
        "type": "checkbox",
        "id": "show_payment_icons",
        "label": "Show payment icons",
        "default": true
      },
      {
        "type": "header",
        "content": "Language Selector",
        "info": "To add a language, go to your [language settings.](/admin/settings/languages)"
      },
      {
        "type": "checkbox",
        "id": "show_locale_selector",
        "label": "Show language selector",
        "default": true
      },
      {
        "type": "header",
        "content": "Currency Selector",
        "info": "To add a currency, go to your [payment settings.](/admin/settings/payments)"
      },
      {
        "type": "checkbox",
        "id": "show_currency_selector",
        "label": "Show currency selector",
        "default": true
      }
    ],
    "blocks": [
      {
        "type": "text",
        "name": "Text",
        "settings": [
          {
            "type": "text",
            "id": "title",
            "label": "Heading",
            "default": "Contact information"
          },
          {
            "type": "richtext",
            "id": "content",
            "label": "Content",
            "default": "

Write a short statement about your brand.

"
          },
          {
            "type": "select",
            "id": "size",
            "label": "Text size",
            "options": [
              {
                "value": "",
                "label": "Regular"
              },
              {
                "value": "footer-text--large",
                "label": "Large"
              }
            ],
            "default": "footer-text--large"
          }
        ]
      },
      {
        "type": "menus",
        "name": "Menus",
        "settings": [
          {
            "type": "text",
            "id": "title_1",
            "label": "First menu heading",
            "default": "Menu"
          },
          {
            "type": "link_list",
            "id": "menu_1",
            "label": "First menu",
            "default": "footer",
            "info": "This menu won't show dropdown items"
          },
          {
            "type": "text",
            "id": "title_2",
            "label": "Second menu heading",
            "default": "Menu"
          },
          {
            "type": "link_list",
            "id": "menu_2",
            "label": "Second menu",
            "info": "This menu won't show dropdown items"
          }
        ]
      },
      {
        "type": "newsletter",
        "name": "Newsletter",
        "limit": 1,
        "settings": [
          {
            "type": "text",
            "id": "title",
            "label": "Heading",
            "default": "Newsletter"
          }
        ]
      },
      {
        "type": "social",
        "name": "Social",
        "limit": 1,
        "settings": [
          {
            "type": "text",
            "id": "title",
            "label": "Heading",
            "default": "Follow us"
          }
        ]
      }
    ]
  }
{% endschema %}

Hi @Selvence

change:


        {{ 'general.copyright' | t }} © {{ 'now' | date: "%Y" }} {{ shop.name | escape }}. {{ powered_by_link }}
      

with:


        {{ 'general.copyright' | t }} © {{ 'now' | date: "%Y" }} {{ shop.name | escape }}.LLC. All rights reserved