akovia
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site embeds truncating urlWill saying Please help at all?
Forum: Themes and Templates
In reply to: [Twenty Ten] approved comments not showing on blogThis happened to me as well. I found a post somewhere that showed the fix.
Change the following line in your functions.php file.
From:
function twentyten_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; switch ( $comment->comment_type ) : case '' :
To:
function twentyten_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; switch ( $comment->comment_type ) : case 'comment' :
So ignore everything except the last line where
case '' :
is changed tocase 'comment' :
The rest is just for context.
Hope it helps.
- This reply was modified 4 years, 2 months ago by akovia.
I’m experiencing this error while I’m going back through old posts and fixing some formatting issues.
One of the posts is how to Build a NAS and has many references to commands to issue on a commandline. What is causing the error for me is a reference to the file
/etc/ssh/sshd_config
Even if I put this in a code block, I get this error. The only way I found so far to fix this, is to modify the filename so it’s not valid.
Forum: Plugins
In reply to: [Mass Messaging in BuddyPress] Missing groupThank you for this and the great plugin!
Forum: Plugins
In reply to: [Mass Messaging in BuddyPress] Missing groupThat was it. It doesn’t work for hidden groups.
I set the group to private and it now works. Any chance of fixing this to work with hidden groups?Forum: Plugins
In reply to: [Mass Messaging in BuddyPress] Missing groupHi and yes, the other groups show up fine.
Also, I was wrong about the group being private, it’s actually hidden. Maybe that’s the key?
Forum: Plugins
In reply to: [Mass Messaging in BuddyPress] Missing groupThanks for the reply.
It’s showing up for site admins, but no other group admins/mods/members which are all site moderators. One of the moderators is an admin of the “Moderators Group”, and he still isn’t able to mass message the moderator’s group.
So..
The Moderators Group consists of site admins and site moderators. Inside that group we have group admins, group moderators and group members.All members of the moderators group has had their site privileges elevated to “Site Author” so that they have access to the mass messaging.
I think that covers it but happy to supply any information you need.