Forum Replies Created
-
In reply to: Breadcrumbs work strangely. How to fix?
Is the first forum a direct link to your main forums? You could always just add it into your theme as a static link, if it is always the base forum.
In reply to: Manually add new users?You should be able to do this inside your wordpress admin area, users > add user?
In reply to: Drop Down (Cursor) MenuI would suggest doing a google search for css dropdown menus – Once you know how you want to create your dropdown menu, then you can edit your bbPress 0r WordPress theme to add the menu in.
Good luck!
In reply to: CategoriesYou could try this: https://bbpress.org/forums/topic/customising-bbp_list_forums-last-poster-block/
In reply to: Issues Removing the SidebarGrumble… yea I thought that would work :p
In reply to: Spam/Trash links not working after upgrade to WP 3.4I thought the same initially**
In reply to: Spam/Trash links not working after upgrade to WP 3.4It might be different for you, but I thought initial initially. When I checked the trash link changed to a restore link and took me back to the same page.
In reply to: rewriting / remapping forum to top-directoryHave a look in settings > forums
There is some settings in there to do with slugs, might help.
good luck!
In reply to: Why is Forum Index In Bullet Points??This is more than likely your theme not being setup to display your topics correctly. A link does help as Lab mentioned. Do you have a bbpress theme installed?
In reply to: Issues Removing the SidebarYou could use CSS?
In the body tag there is a bbpress class, soy you could do something like:
.bbPress .sidebar { display: none; }
good luck!
In reply to: CategoriesYou can setup categories and forums underneath it.
Getting them to look similar to phpbb and invision in yiur template will take some time.
Good luck!
In reply to: Forums Page Blank! (But Forum Topic shows)How are you implementing the shortcode? Inside a post or inside a template or some other way?!?
It looks like there is a filter you might be able to use to create a plugin
function bbp_get_topic_caps() {
return apply_filters( 'bbp_get_topic_caps', array (
'edit_posts' => 'edit_topics',
'edit_others_posts' => 'edit_others_topics',
'publish_posts' => 'publish_topics',
'read_private_posts' => 'read_private_topics',
'read_hidden_posts' => 'read_hidden_topics',
'delete_posts' => 'delete_topics',
'delete_others_posts' => 'delete_others_topics'
) );
}In reply to: Forum menu items not showing after installationDo you have a site link we can check?
In reply to: Email notification not workingHey,
I had an issue with this and wrote a small plugin which seemed to of resolved it.
http://pastebin.com/ADfuRHiHNot sure if it is still an issue but before adding this plugin it did not always work (it did sometimes) and after it seems to work all the time, it can still go into spam though.
Good luck!
In reply to: Help identifying files to edit?Hi,
The second link has an error and the first link brings me to a registration page.
In reply to: widgets page brokenHave you done anything with bbPress at all?
You could delete the plugin if you haven’t done anything with it and then re-install if you need it back.In reply to: Automatically Logged in user does not persistWhen you say send the user to your bbPress forum and log them in, is this happening during another process or are they clicking a link or? I am not too sure on how the sending is working and just wanted to get it clarified so I could try and help.
All the best.
In reply to: Publish new forum and then it disappearsFirst thing I like to do if I have any wierd issues like that is to disable as many plugins as possible (all of them preferably) and then try and add a forum again to see if I get the same issue.
In reply to: How save old customizations with 2.1?I decided my quickest route to upgrading was to start from scratch and copy across any of the CSS I used that I would need. This allowed me to clean up my bbPress theme and get it working as perfect as I can with my site.
Good luck!
In reply to: A Search for bbPress.org (Please!)If I go into a forum category and not just the latest posts on the home page I see a forum search to the left, what do you see if you visit this page: https://bbpress.org/forums/forum/installation/
Looks very much like a clearing issue. Site link would allow us to help you further 🙂
Good luck!
What do you mean by “messed up” when I look at them I see very minor changes, if any.
Let me know which specific points you are referring to in the layout and I could have a look for you.
Good luck!
In reply to: Horizontal Login BoxYou can edit the CSS however you like to get the login box look that you want.
Do you have a link we can see at all?In reply to: Align Submit button to the left or centerYou can do this using css, if you just want to align it left then you can float:left and then just make sure you clear after it.