Fuyutski
Forum Replies Created
-
Just following this up? ??
Hi,
I’ve disabled the other plugins and changed the theme, and it seems to still be an issue. :/
Forum: Plugins
In reply to: [SlimStat Analytics] Having Issues with Firewall FixHi Camu,
Can you please help? I’ve purchased the Firewall fix, and this is stopping me from purchasing the Network Reports.
Forum: Plugins
In reply to: [SlimStat Analytics] Having Issues with Firewall FixHi Camu,
https://tinypic.com/r/dbo70m/8
Effectively, I can’t zero-in on my visitors, because they’re all listed as the cloudfire IP rather than the originating IP. (Yes the originating IP is listed but I can’t click to see the location of them unlike the Cloudfire 108.x.x.x or 141.x.x.x IPs).
Forum: Plugins
In reply to: [WP Biographia] Author Image IssuesAfter a thorough investigation, I’m managed to find the culprit — a twitter plugin. Now disabled.
Forum: Plugins
In reply to: [WP Biographia] Author Image IssuesFurther to this.
It seems that it’s just not picking up the avatar by the Simple Local Avatars plugin (class=’avatar ). When I edit that line of code by inspecting it in a browser to change to class=”wp-biographia-avatar”, it works fine with the avatar centered back in the Div.
The WP Biographia Widget (wp-biographia-widget.php) is handling this fine and changes “class=’avatar ” to “class=”wp-biographia-avatar wp-biographia-avatar-wrap “.
I wonder if it has to do with the below script not working in the main php file of WP-Biographia?
function fixup_avatar_css ($avatar) { $pos = strpos ($avatar, 'wp-biographia-avatar'); if ($pos === false) { $pos = strpos ($avatar, "class='avatar "); if ($pos !== false) { $avatar = str_replace ("class='avatar ", "class='wp-biographia-avatar ", $avatar, $count); } } return $avatar; }
Has anyone else had this issue?
Forum: Plugins
In reply to: [Plugin: WordPress MU Sitewide Tags Pages] Sitewide CommentingHi Ron, thanks for the response again!
I’ve moved the function to another part of functions.php, and placed it in a separate PHP container just in case, as per:
https://pastebin.com/GRKbkivB (lines: 45-58)
The result is that I’m still getting the error, just the line number have changed to 56.
/home/fuyutski1/BrettnLucy.net/wp-content/themes/mistylook2/functions.php on line 56
Forum: Plugins
In reply to: [Plugin: WordPress MU Sitewide Tags Pages] Sitewide CommentingThanks for the response,
I tried implementing everything which was suggested at: https://www.ads-software.com/support/topic/aggregating-recent-posts-to-parent-site-comments-are-off-on-aggregated-posts?replies=18
Which is what I’m guessing you suggested. However, I noticed an issue after adding the function and replacing
comments_popup_link...
withphp comments_link...
, that when I attempted to activate the theme. It sprung an error:Fatal error: Cannot redeclare ds_sitewide_tags_get_comments_num() (previously declared in /home/fuyutski1/BrettnLucy.net/wp-content/plugins/wordpress-mu-sitewide-tags/sitewide-tags.php:565) in /home/fuyutski1/BrettnLucy.net/wp-content/themes/mistylook2/functions.php on line 122
112-122 in functions is where I added the suggested function, however sitewide-tags.php doesn’t have ds_sitewide_tags_get_comments_num() in the code.
Any ideas on this? I’m scratching my head.