diff --git a/config/install/visitors.config.yml b/config/install/visitors.config.yml
index 98da518..58b0256 100644
--- a/config/install/visitors.config.yml
+++ b/config/install/visitors.config.yml
@@ -3,14 +3,6 @@ chart_width: 700
 flush_log_timer: 0
 bot_retention_log: 0
 items_per_page: 10
-show_last_registered_user: true
-show_published_nodes: true
-show_registered_users_count: true
-show_since_date: true
-show_total_visitors: true
-show_unique_visitor: true
-show_user_ip: true
-start_count_total_visitors: 0
 theme: admin
 disable_tracking: false
 status_codes_disabled: {}
diff --git a/config/schema/visitors.schema.yml b/config/schema/visitors.schema.yml
index e76d1b0..a035651 100644
--- a/config/schema/visitors.schema.yml
+++ b/config/schema/visitors.schema.yml
@@ -122,29 +122,3 @@ visitors.config:
         exclude_user1:
           type: boolean
           label: 'exclude user1'
-
-block.settings.visitors_block:
-  type: block_settings
-  label: 'Visitors block configuration'
-  mapping:
-    show_last_registered_user:
-      type: boolean
-      label: 'show last registered user'
-    show_published_nodes:
-      type: boolean
-      label: 'show published nodes'
-    show_registered_users_count:
-      type: boolean
-      label: 'show count of registered users'
-    show_since_date:
-      type: boolean
-      label: 'show registration date'
-    show_total_visitors:
-      type: boolean
-      label: 'show total visitors'
-    show_unique_visitor:
-      type: boolean
-      label: 'show unique visitors'
-    show_user_ip:
-      type: boolean
-      label: 'show user ip'
diff --git a/src/Form/Settings.php b/src/Form/Settings.php
index 10337cb..9d5f90e 100644
--- a/src/Form/Settings.php
+++ b/src/Form/Settings.php
@@ -369,69 +369,6 @@ class Settings extends ConfigFormBase {
       '#default_value' => $config->get('privacy.disablecookies'),
     ];
 
-    $form['block'] = [
-      '#type' => 'details',
-      '#title' => $this->t('Default Block'),
-      '#description' => $this->t('Default block settings'),
-      '#group' => 'tracking_scope',
-    ];
-
-    $form['block']['show_total_visitors'] = [
-      '#type' => 'checkbox',
-      '#title' => $this->t('Show Total Visitors'),
-      '#default_value' => $config->get('show_total_visitors'),
-      '#description' => $this->t('Show Total Visitors.'),
-    ];
-
-    $form['block']['show_unique_visitor'] = [
-      '#type' => 'checkbox',
-      '#title' => $this->t('Show Unique Visitors'),
-      '#default_value' => $config->get('show_unique_visitor'),
-      '#description' => $this->t('Show Unique Visitors based on their IP.'),
-    ];
-
-    $form['block']['show_registered_users_count'] = [
-      '#type' => 'checkbox',
-      '#title' => $this->t('Show Registered Users Count'),
-      '#default_value' => $config->get('show_registered_users_count'),
-      '#description' => $this->t('Show Registered Users.'),
-    ];
-
-    $form['block']['show_last_registered_user'] = [
-      '#type' => 'checkbox',
-      '#title' => $this->t('Show Last Registered User'),
-      '#default_value' => $config->get('show_last_registered_user'),
-      '#description' => $this->t('Show Last Registered User.'),
-    ];
-
-    $form['block']['show_published_nodes'] = [
-      '#type' => 'checkbox',
-      '#title' => $this->t('Show Published Nodes'),
-      '#default_value' => $config->get('show_published_nodes'),
-      '#description' => $this->t('Show Published Nodes.'),
-    ];
-
-    $form['block']['show_user_ip'] = [
-      '#type' => 'checkbox',
-      '#title' => $this->t('Show User IP'),
-      '#default_value' => $config->get('show_user_ip'),
-      '#description' => $this->t('Show User IP.'),
-    ];
-
-    $form['block']['show_since_date'] = [
-      '#type' => 'checkbox',
-      '#title' => $this->t('Show Since Date'),
-      '#default_value' => $config->get('show_since_date'),
-      '#description' => $this->t('Show Since Date.'),
-    ];
-
-    $form['block']['start_count_total_visitors'] = [
-      '#type' => 'number',
-      '#title' => $this->t('Total visitors start count'),
-      '#default_value' => $config->get('start_count_total_visitors') ?? 0,
-      '#description' => $this->t('Start the count of the total visitors at this number. Useful for including the known number of visitors in the past.'),
-    ];
-
     $form['charts'] = [
       '#type' => 'details',
       '#title' => $this->t('Charts'),
diff --git a/src/Plugin/Block/VisitorsBlock.php b/src/Plugin/Block/VisitorsBlock.php
index 7929450..7d90aaa 100644
--- a/src/Plugin/Block/VisitorsBlock.php
+++ b/src/Plugin/Block/VisitorsBlock.php
@@ -57,7 +57,7 @@ class VisitorsBlock extends BlockBase implements ContainerFactoryPluginInterface
    *
    * @var \Symfony\Component\HttpFoundation\Request
    */
-  protected $request;
+  protected $requestStack;
 
   /**
    * The entity type manager.
@@ -106,7 +106,7 @@ class VisitorsBlock extends BlockBase implements ContainerFactoryPluginInterface
     $this->renderer = $renderer;
     $this->dateFormatter = $date_formatter;
     $this->configFactory = $config_factory;
-    $this->request = $request_stack->getCurrentRequest();
+    $this->requestStack = $request_stack;
   }
 
   /**
@@ -122,7 +122,7 @@ class VisitorsBlock extends BlockBase implements ContainerFactoryPluginInterface
       $container->get('date.formatter'),
       $container->get('entity_type.manager'),
       $container->get('config.factory'),
-      $container->get('request_stack'),
+      $container->get('request_stack')
     );
   }
 
@@ -346,7 +346,7 @@ class VisitorsBlock extends BlockBase implements ContainerFactoryPluginInterface
    */
   protected function showUserIp(): string {
     $item = $this->t('Your IP: %user_ip', [
-      '%user_ip' => $this->request->getClientIp(),
+      '%user_ip' => $this->requestStack->getCurrentRequest()->getClientIp(),
     ]);
 
     return $item;
