Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
rhby
tagDiv Member

notice that theme updates may crash these editions)

rhby
tagDiv Member

also if you need OK sharing button:
1) I decided that I don’t need LinkedIn in my site.
2) includes/wp_booster/td_social_sharing.php
3) search: case ‘linkedin’
4) change the whole block:
case ‘linkedin’:
return array(
‘url’ => ‘https://connect.ok.ru/dk?st.cmd=WidgetSharePreview&service=odnoklassniki&st.shareUrl=’ . $page_permalink,
‘title’ => ‘OK’
);
break;
5) change the next styles in styles.css:
for icon:
.td-icon-linkedin:before {
content: ‘\f263’;
font-family: ok;
}

for button color:

.td-ps-bg .td-social-linkedin .td-social-but-icon,
.td-ps-bg .td-social-linkedin .td-social-but-text {
background-color: #e87005;
}

also to fix sharing field’s names in admin panel and titles on your site:

includes/wp_booster/td_social_icons.php
look for:
‘xing’ => ‘Xing’
‘linkedin’ => ‘LinkedIn’,
change to:
‘xing’ => ‘OK’
‘linkedin’ => ‘OK’

I’m not css and php specialist and my native language is not English, so I’m sorry if my way to fix problems would cause rejection of perfectionists, professional coders and/or grammar nazis. But it works! 🙂

rhby
tagDiv Member

for those who has same problem with social menu.

1) download font pack from https://fontawesome.com/
2) put “fa-brands-400” files to images/icons/ of yout theme.
3) add to your styles.css:
@font-face{
font-family: ‘ok’;
src: url(‘images/icons/fa-brands-400.eot’);
src: url(‘images/icons/fa-brands-400.eot?iefix’) format(‘eot’),
url(‘images/icons/fa-brands-400.woff’) format(‘woff’),
url(‘images/icons/fa-brands-400.ttf’) format(‘truetype’),
url(‘images/icons/fa-brands-400.svg#webfont’) format(‘svg’);
font-weight: normal;
font-style: normal;
}
4) I don’t need, for example, Xing, so I changed it to OK. I changed .td-icon-xing:before:
.td-icon-xing:before {
content: ‘\f263’;
font-family: ok;
}
5) to set OK’s brand hover coler I changed .td-social-icon-wrap:hover i.td-icon-xing to:
.td-social-icon-wrap:hover i.td-icon-xing {
color: #e87005;
}

rhby
tagDiv Member

Thanks, waiting for update.
Please don’t forget about ok.ru 🙂

rhby
tagDiv Member

But I think that these buttons could be useful for other theme customers from countries where OK, VK and Telegram are very popular, e.g. Belarus, Ukraine, Russia and others.

Viewing 5 posts - 1 through 5 (of 5 total)