mp459
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Media Feather] Share buttons not showing up on posts or pagesP.S. Next can we control if the share buttons show up before the_content, after, or both?
Y
Forum: Plugins
In reply to: [Social Media Feather] Share buttons not showing up on posts or pagesI think the problem is on synved-social-setup.php around line 823:
if (!$exclude_share && synved_option_get('synved_social', 'automatic_share_single')) { $exclude_share = !is_singular($id); }Should be
if (!$exclude_share && synved_option_get('synved_social', 'automatic_share_single')) { $exclude_share = !is_single($id); }Or you could use is_singular($post_types) but that takes some more code wrangling.
mickey
similar issue, but when the screen is very small (as in on mobile devices), the buttons wrap to the bottom and invade the text below. I fixed this by removing the hard
height:30pxin the CSS.mickey
Forum: Fixing WordPress
In reply to: API key not working in akismetHad the same issue. Took some work but this worked: changed around line 175
if( false != ( $fs = @fsockopen($host, $port, $errno, $errstr, 10) ) ) {to
$ip=gethostbyname($host); if( false != ( $fs = @fsockopen($ip, $port, $errno, $errstr, 10) ) ) {