Forum Replies Created
-
Author
-
mbfitParticipant
Hello, the freshness is still embedded within the forums. So while it removes on the main page, other forums on a sub level still retains the ‘Freshness’. Perhaps there is an option to change the wording instead?
mbfitParticipantHello I found this code to help change the names, which I’m fine with. Thanks!
add_filter( ‘bbp_get_dynamic_roles’, ‘ntwb_bbpress_custom_role_names’ );
function ntwb_bbpress_custom_role_names() {
return array(// Keymaster
bbp_get_keymaster_role() => array(
‘name’ => ‘My Custom Keymaster Role Name’,
‘capabilities’ => bbp_get_caps_for_role( bbp_get_keymaster_role() )
),// Moderator
bbp_get_moderator_role() => array(
‘name’ => ‘My Custom Moderator Role Name’,
‘capabilities’ => bbp_get_caps_for_role( bbp_get_moderator_role() )
),// Participant
bbp_get_participant_role() => array(
‘name’ => ‘My Custom Participant Role Name’,
‘capabilities’ => bbp_get_caps_for_role( bbp_get_participant_role() )
),// Spectator
bbp_get_spectator_role() => array(
‘name’ => ‘My Custom Spectator Role Name’,
‘capabilities’ => bbp_get_caps_for_role( bbp_get_spectator_role() )
),// Blocked
bbp_get_blocked_role() => array(
‘name’ => ‘My Custom Blocked Role Name’,
‘capabilities’ => bbp_get_caps_for_role( bbp_get_blocked_role() )
)
);
}mbfitParticipantWell I kinda figured it out a little bit. I removed the code for the Freshness thus bringing who posted last back etc. and then attempted to align the Search Form to the right. Well it’s incorrect however the form sits on top of the word Freshness and covers it completely bringing forum activity back. I’ll take that I guess.
I used this
.bbp-search-form {
width: 29%;
position: absolute;
top: 0;
right: 0;
}If no harm no foul I’m fine with how it sits now.
Still would like to know about #1
I do have a general question. Do you have links to forums and tutorials where I can read up and learn some css in relation to wordpress? Right now I’m winging it with random searches. Thanks.
mbfitParticipantHi Laura, thanks you.
#1 refers to the viewing of the name there itself, not the role of members, I’d want that still to be retained ie an admin or participant etc. if that is what you mean…I’d just prefer to have the member name there when they post and not have words there like “participant” etc hope that makes sense
#4 I noticed while it worked it removed who posted last and time, etc. is that unavoidable?
also can you right justify the search bar for me?
I left example pic
Much thanks! 🙂
Attachments:
You must be logged in to view attached files.mbfitParticipantOk thanks. What I would like to know really is that “Read More” link, is there a way to not have that implemented at all and just have any posts open as it would be like in a typical forum? And paged at a certain number of posts or is that still a BP question? Thank you.
mbfitParticipantHello, Bluehost had an option to stop Varnish and so I did and the Group creation process works thank you!
So I assume I should leave Varnish no longer running?Since we are on Group topic, perhaps I will ask further questions here if you don’t mind.
There are a few concerns playing around with the Groups.
1. Within the Members Profile under My Groups there is a “What’s new in (Group Name), (Member name)?
I’ve made several text posts and all seems well. When I upload an image, it posts but if it’s a long post with text it will have a “Read More” option to expand. However it sends it to separate page where you see only that post in its entirety and if you hit the back button to return to the Group the post is gone.I’ve uploaded images GroupPost1, 2,3,4 to show visual if it helps better.
2. If I select “Create a Forum” and later delete the Group, the created Forum still stays in the Forum. Should that be removed as well? If not is there a way to have that removed when the Group is deleted?
Thank you!
Attachments:
You must be logged in to view attached files.mbfitParticipantHi Laura apologies for any inconvenience, I’m going to reinstall wp and keep the folder structure intact. I’ve found consist error messages with a lot of things I’m doing that seem to relate to those changes that I’ve done.
After that I will see if I still have issues with the User Groups.
Many Thanks!mbfitParticipantAlso can I paste in these lines:
define( ‘WP_DEBUG’, true );
define( ‘WP_DEBUG_LOG’, true );to get a debug log, if so I will do that tonight.
mbfitParticipant“If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.”
fyi I don’t have Visual Composer, K-elements as plugins? Don’t know what they are.
Further with User Groups:
I’m creating them with a single profile which has keymaster access. I’ve yet to explore with other profiles at the Subscriber level.After the failed process of the Group, it is created and when I go on the Group page I can access it through Manage. There I can update Cover photos etc.
However the big issue is selecting the option to create a Forum.In the Forum itself is a SubForum I called Groups.
When my profile selects to create a forum and put it into Groups the permalink to Group is changed. When I delete the User Group the entire SubForum is deleted.Example User group name is Test2. I create a forum for the Group under Groups in the public Forum. Permalink is changed in the public forum from http://www.iflwo.com/../../groups to http://www.iflwo.com/../../test-2
mbfitParticipantHi it seems to have recorded all my errors since the start of the theme purchase. It seems the majority of that is due to the fact that I have the theme in its own subdirectory and the index.php in the root.
In that process I followed this page:
https://codex.wordpress.org/Giving_WordPress_Its_Own_Directorythough unsure if that effects creating user groups.
Attachments:
You must be logged in to view attached files.mbfitParticipantHi I do have an error log in my root directory while I was working with the groups. Other issues have come up
mbfitParticipantHi thanks. I do not have the line define( ‘WP_DEBUG’, false ); in wp-config.php
Can I add it in as is?define( ‘WP_DEBUG’, true );
define( ‘WP_DEBUG_LOG’, true ); -
AuthorPosts