We use iThemes Security (formerly Better WP Security). No problems observed.
+1 to add a VK.com (ВКонтакте: Russian social network, more than 170 million users!!!) button for sharing articles and social counter in the future. PLEASE!!!
Page for developers (in English and other languages): https://vk.com/dev

I look forward to!
Thank you!
Один сайт – одна лицензия.
Скидок нет.
На второй сайт нужно покупать Тему (лицензию) ещё раз.
Hi libtetto!
Read this link: https://forum.tagdiv.com/topic/view-numbers-in-block/
Привет, extpress!
Имеется в виду – добавить кнопку ВК для шаринга статей?
Может быть, мой ответ тут устроит?
https://forum.tagdiv.com/topic/vkontakte-odnoklassniki-share-button/#post-83438
Hi!
Try this iframe code:
<iframe src="https://www.google.com/maps/d/u/0/embed?mid=zU45qXLzr62E.ktMNyzWPUToY" height="480" width=100%></iframe>
Happy New Year from West Russia (Königsberg / Kaliningrad)
Привет!
Не знаю, почему разработчик не указал через штатную возможность темы:

whats happening???
!!!
DON’T PUBLISH YOUR LOGIN AND PASSWORD HERE!
That’s why you were hacked – someone used these data.
Hi!
DONT’T PUBLISH YOUR LOGIN AND PASSWORD HERE!!!
Привет, dorin9993!
Может быть, мой ответ здесь тебя устроит?
https://forum.tagdiv.com/topic/vkontakte-odnoklassniki-share-button/#post-83438
=========
English:
Maybe my answer here will satisfy you?
https://forum.tagdiv.com/topic/vkontakte-odnoklassniki-share-button/#post-83438
Привет, Diniska!
Для русскоязычного сайта я рекомендую заменить полностью кнопки шаринга с дефолтных на кнопки счётчиков от Яндекса:

На моём примере: я отключил показ кнопок в верху статьи через настройки темы, оставил включённые их только внизу:

В файле td_module_single.php нужно удалить эти строки:

Вставить эти:

Изменённый файл td_module_single.php сохранить в дочерней теме с сохранённым путём.
Результат:

Если я что-то сделал неправильно, надеюсь, разработчики меня поправят.
===========
English:
For Russian-speaking website I would recommend to completely replace the buttons with the default sharing buttons counters from Yandex:

In my example: I have disabled showing the buttons at the top of the article via theme settings, left them only at the bottom:

In the file td_module_single.php you need to remove these lines:

Insert these:

Modified file td_module_single.php save in the child theme with saved by.
The result:

If I did something wrong, I hope the developers will correct me.
https://forum.tagdiv.com/topic/wp-native-widget-title-box-color/
For the counter bubbles, you need to add a custom CSS to change their color:
.td-module-comments a {
background-color: #4db2ec;}
Add this code in the theme panel->custom css box
Thank you!
Perfect!
Thank you very much!
No-no.
I need to change the hover color of links like this

with this color (#4DB2EC) on this (#a8a8a8)
Thank you! Then let’s not hurry with the modifications.
Yes. And so it was: wp_booster files cannot be managed by the child theme.
Future platform support wp_booster files in child theme?
Or will show the view numbers on the home page in future versions of the theme?
Thanks!
I asked why so much detail: does not work.
Fatal error: Call to undefined method td_module_6::get_views() in /home/MySite/public_html/wp-content/themes/Newspaper-child/includes/modules/td_module_6.php on line 24
Line 24:
<?php echo $this->get_views();?>
Hi Bogdan!
Thanks for answer.
If I use a child-theme then after editing file td_module.php should be located
/Newspaper-child/includes/wp_booster?
In what place of file td_module_single_base.php
function get_views() {
$buffy = '';
if (td_util::get_option('tds_p_show_views') != 'hide') {
$buffy .= '<div class="td-post-views">';
$buffy .= '<i class="td-icon-views"></i>';
// WP-Post Views Counter
if (function_exists('the_views')) {
$post_views = the_views(false);
$buffy .= $post_views;
}
// Default Theme Views Counter
else {
$buffy .= '<span class="td-nr-views-' . $this->post->ID . '">' . td_page_views::get_page_views($this->post->ID) .'</span>';
}
$buffy .= '</div>';
}
return $buffy;
}
should I insert in file td_module.php?