diff --git a/config/install/zurb_foundation.settings.yml b/config/install/zurb_foundation.settings.yml
index 55b52db..857bfc8 100644
--- a/config/install/zurb_foundation.settings.yml
+++ b/config/install/zurb_foundation.settings.yml
@@ -10,7 +10,7 @@ settings:
   zurb_foundation_disable_base_css: false
   zurb_foundation_disable_base_js: false
   zurb_foundation_meta_header_grid: true
-  zurb_foundation_top_bar_enable: 0
+  zurb_foundation_top_bar_enable: false
   zurb_foundation_top_bar_grid: false
   zurb_foundation_top_bar_sticky: false
   zurb_foundation_top_bar_menu_text: 'Menu'
@@ -22,4 +22,6 @@ settings:
   zurb_foundation_page_site_name: true
   zurb_foundation_page_site_logo: true
   zurb_foundation_page_account_info: true
+  zurb_foundation_block_copyright_custom_text: false
+  zurb_foundation_block_copyright_text: ''
 langcode: en
\ No newline at end of file
diff --git a/templates/page.html.twig b/templates/page.html.twig
index bdb6e73..d225918 100644
--- a/templates/page.html.twig
+++ b/templates/page.html.twig
@@ -199,7 +199,11 @@
       <div class="bottom-bar panel">
         <div class="row">
           <div class="large-12 columns">
-          &copy; {{ "now"|date('Y') }} {{ site_name }} {{ 'All rights reserved.'|t }}
+            {% if not block_copyright_custom_text %}
+              &copy; {{ "now"|date('Y') }} {{ site_name }} {{ 'All rights reserved.'|t }}
+            {% else %}
+              {{ block_copyright }}
+            {% endif %}
           </div>
         </div>
       </div>
diff --git a/theme-settings.php b/theme-settings.php
index cfae425..736b90a 100644
--- a/theme-settings.php
+++ b/theme-settings.php
@@ -174,6 +174,33 @@ function zurb_foundation_form_system_theme_settings_alter(&$form, FormStateInter
     '#description' => t('Determines if the hard-coded login block should be displayed.'),
     '#default_value' => theme_get_setting('zurb_foundation_page_account_info'),
   );
+  /*
+   * Copyright Block.
+   */
+
+  $form['page_elements']['zurb_foundation_block_copyright_custom_text'] = [
+    '#type' => 'checkbox',
+    '#title' => t('Use custom copyright text'),
+    '#default_value' => theme_get_setting('zurb_foundation_block_copyright_custom_text'),
+    '#description' => t('Check this if you want modify the copyright text.')
+  ];
+
+  $form['page_elements']['settings'] = [
+    '#type' => 'container',
+    '#states' => [
+      // Hide the copyright container when using the default label.
+      'invisible' => [
+        'input[name="zurb_foundation_block_copyright_custom_text"]' => ['checked' => FALSE],
+      ],
+    ],
+  ];
+
+  $form['page_elements']['settings']['zurb_foundation_block_copyright_text'] = [
+    '#type' => 'textfield',
+    '#title' => t('Copyright text'),
+    '#description' => t('Specify your custom copyright text.'),
+    '#default_value' => theme_get_setting('zurb_foundation_block_copyright_text'),
+  ];
 
   /*
    * Styles and Scripts
diff --git a/zurb_foundation.theme b/zurb_foundation.theme
index e9ed30e..1fe1bfa 100644
--- a/zurb_foundation.theme
+++ b/zurb_foundation.theme
@@ -336,6 +336,12 @@ function zurb_foundation_preprocess_page(&$variables) {
 
   // Variable to disable hard-coded login elements.
   $variables['show_account_info'] = theme_get_setting('zurb_foundation_page_account_info');
+
+  // Copyright block settings.
+  $variables['block_copyright'] = [
+    '#markup' => theme_get_setting('zurb_foundation_block_copyright_text')
+  ];
+  $variables['block_copyright_custom_text'] = theme_get_setting('zurb_foundation_block_copyright_custom_text');
 }
 
 /**
