Forum Replies Created
-
In reply to: My group forums suddenly disappeared
Is the forum you created for this group in Forums> All Forums, or in the trash??
In reply to: Buddypress ProfileWell your BuddyPress profile on your site looks messed up because the new profile image feature BuddyPress added kind of messed up the layout.
If you have bought this theme that you are using and it is messed up, try to contact the theme author to try to fix this in an update.
I am not that knowledgeable in templating BuddyPress, but maybe contacting the BuddyPress support team for this kind of thing might be helpful.
In reply to: Display forum as list not workingYour subforums are for some strange reason not wrapped in a list structure like this.
<ul class="bbp-forums-list"> <li class="bbp-forum"> <a href="http://link" class="bbp-forum-link">Forum 1</a> </li> <li class="bbp-forum"> <a href="http://link" class="bbp-forum-link">Forum 2</a> </li> </ul>
But instead it is just links.
Try this CSS instead to have the same layout.
.bbp-forum-info a.bbp-forum-link { display: block; }
In reply to: Group forum topic give a blank pageAre you using the bbPress v1 forums in BuddyPress and not the separate version 2 forums??
In reply to: Notification emails after import@mentions are apart of BuddyPress contact their support forum and see if they can help you on this.
In reply to: How To Add “New Topic” buttoncopy loop-forums.php or any other templates you want to edit to a child theme into a folder called bbpress and you should be fine.
In reply to: [Resolved] Breadcrumbs MissingSince I am sure your theme is using custom templates to have the edit/or replace the back to disscussions code with
<?php bbp_breadcrumb(); ?>
. It would be preferred if you copied the file you would need to edit to your child theme in a folder called bbpress.I could barely find anything before on this weird bug, and I thought JJJ was going to take this topic over. I will try to find whats going on again, but I still think JJJ would be more knowledgeable since he is the lead dev.
I was able to create a reply in your forums from the backend fine. So at least we know it is something happening on the frontend like scripts, the reply form itself, etc.
In reply to: bullets in front of everythingChecking your site again, the padding for the bbPress forum header that shows the labels looks a little cozy to the left, you may need to edit the
padding-left: 0 !important;
, by default I think the padding is set to about 8px, maybe setting 0 to 8px or removing the !important might help with that.In reply to: Recent Forum Topics – Scroll widgetI see you on here all the time and I’m so glad I got you specifically. If anyone can solve this-it is you.
Well….not all the time.
I used this plugin as it seemed to be the closest fit, but it only seems to scroll “Posts” not “Recent Forum Topics”
Right, I found the plugin and see it does only posts. I did search for an alternative just to see the developer created a ton of similar plugins with similar functionality.
I found one called Vertically scroll rss feed, that could do what you want.
Just configure the settings to display how many you want and just make sure the feed url is something like yoursite.com/topics/feed, this is the feed url of the topics archive which will show the most recent created topics on your site.
In reply to: How to remove title prefixes ‘Topic:’ & ‘Forum:’ ?That code will make it where if you visit your profile the title tag will display Your, instead of, Your Profile, Your Topics, or Your Favorites, etc.
Use something like this for only the single topic, and single forum pages.
Add this php code snippet into your child themes functions.php file, or in a plugin like functionality.
function rkk_custom_titles( $new_title ){ if ( bbp_is_single_forum() ) { $new_title['format'] = esc_attr__( '%s', 'bbpress' ); // Topic page } elseif ( bbp_is_single_topic() ) { $new_title['format'] = esc_attr__( '%s', 'bbpress' ); } return $new_title; } add_filter( 'bbp_before_title_parse_args', 'rkk_custom_titles' );
In reply to: From BBPress to PHPBBSince this is exporting from bbPress/WordPress to phpBB, I say contact the phpBB community in their support forums.
In reply to: Ask to change password at first connexionForce Password Change is only 12 months old, it should still work fine. If you are being cautious, just make sure you have a backup before you install it on your production site.
In reply to: Content doesn’t fit into content boxNo it is not really about content, what I think your experiencing is a bug. I have seen it before on these forums.
It has to do with using lists
<li>
and not surrounding it in an unordered<ul>
or ordered list<ol>
.This issue might be happening, because bbPress uses lists for its forum layout.
To fix it, you can edit your post and make sure that the lists
<li></li>
have a surrounding unordered or ordered list around it like so.<ul> <li>Some List</li> </ul>
In reply to: Ask for help in adding amendments…How do I add the number of posts under the name and the symbolic images of the user?
Post count is coming to a future release of bbPress. You can use a plugin like this to add the counts for now.
https://wordpress.org/plugins/bbp-topic-count/
What exactly do you mean by symbolic images??
How do I change the title to any user of an optional title?
Ex: the title of the current user in the Forum (supervisor) want to have the title of supervisor (supervisor pictures)You can rename the current forum roles to whatever you want with this php code snippet in this guide. Add the function to your child themes functions.php or in a plugin that can hold custom code snippets like functionality.
You can also create custom user roles with custom capabilities and add the custom names there.
How to determine the powers of the supervisors so far have not I transfer Lists Musharraf to it have all the powers modification and deletion of all sections I wanted to be the powers of the supervisor on only a particular section
Assigning a user to a forum is not possible in the default functionality of the latest stable version of bbPress.
In reply to: visual editor showing html in postsI am not sure where to put the above or which ones to use.
Place the php code snippet into your child themes functions.php file or place the snippet in a plugin like functionality.
In reply to: You do not have permission to replyI deactivated, that seemed to fix the problem.
Reactivated, problem still seems fixed.
Odd.
That is weird, glad you found the solution to the issue you were facing though.
In reply to: Recent Forum Topics – Scroll widgetEveryone claims to have a widget that does this,
Where did you get that from information from?
however all that I have tried ONLY scroll the “Posts” not “Recent Forum Topics.
How did you get posts?? Explain how you did it, and I will try to see if you can do the same thing for recent topics.
In reply to: Help figuring out this error codeCheck out this topic where the original file came from. A user talks about about the same issue in this post.
In reply to: bullets in front of everything@kallard There is some layout issues still, hopefully my edited css will fix the rest.
In reply to: bullets in front of everythingIn reply to: Check out my latest threaded bbpress forum viewLooks Nice!!
My function is just using a hook and some custom code to add an image. Put the code in your child themes functions.php file instead.
Use this plugin.
glad you resolved your own issue 🙂