Comments 10alleganps started the conversationDecember 8, 2021 at 3:41pmHow can I hide specific social share icons (for example, Viber and WhatsApp)?Thank you for your help! 877Zhivko repliedDecember 8, 2021 at 6:04pmHi,Open your theme or child-theme functions.php file and insert following filter: add_filter('stec-share-links', function($share_links) { $remove = [ 'viber', 'whatsapp' ]; foreach($remove as $icon) { if (isset($share_links[$icon])) { unset($share_links[$icon]); } } return $share_links;}); Stachethemes Developer 10alleganps repliedDecember 8, 2021 at 6:30pmWorked perfectly. Thank you!1 Like Sign in to reply ...
How can I hide specific social share icons (for example, Viber and WhatsApp)?
Thank you for your help!
Hi,
Open your theme or child-theme functions.php file and insert following filter:
Stachethemes Developer
Worked perfectly. Thank you!