Hi ecaruth,
Follow the following steps:
– Goto your WP dashboard
– Click on FAQs in the menu on the left
– Click on FAQ Settings
– Scroll down till you see “Social Media Option”
– Validate if all “Social Media Option” are not selected
If you now go to a FAQ you still see the “share:” text. In order to resolve this you need to make a change in a file on the server.
– Connect to your server (Remote Desktop, FTP or what you prefer)
– Goto the folder which contains your WP installation
– Open the folder plugins
– Open the folder ultimate-faqs
– Open the folder Shortcodes
– Open the file DisplayFAQs.php in your favorite edtor (Notepad++ or nano)
– Goto line 18 and validate if the content of that line contains the code:
$Socialmedia = explode(",", $Socialmedia_String);
– Replace this line of code with:
$Socialmedia = strlen($Socialmedia_String) == 0 ? array() : explode(",", $Socialmedia_String);
– Save / upload the DisplayFAQs.php file
– Refresh the FAQ
– Validate if the ‘share’ text is not there anymore
Hi ecaruth,
I just submitted a bug report and a fix on how to remove the share. See: for more information. Hopefully this will help you.