Forum Replies Created
-
In reply to: treeview and history
Not really sure what you are after here, but Thomas has created a plugin called Online that keeps track of the posts since you were last logged in. That to my knowledge is the only plugin that keeps track of things since your last visit. You can find that at https://bbpress.org/plugins/
Other than that, maybe someone else can read this and give you some other feedback on where to start and where to start looking! Sorry I can’t be any further help without a little more info on what you are trying to do.
Trent
In reply to: Adding/Modifying/Deleting authors in WP…Actually, when integrated both programs use the users of WP. If you delete a user in program they are gone in both. You can change roles around in either program and it doesn’t affect the role in the other. If you have a user in WP and don’t want them to post in bbPress you can change their bbPress role to inactive. All they would have to do is register another user to post though. WP is different. Registrations in either program creates user in WP with default role until you change that
Trent
In reply to: Adding/Modifying/Deleting authors in WP…If your bbPress install is using WP user integration then it uses the WP user table. It doesn’t use the WP roles though. Changing a role in WP doesn’t change a role in bbPress. Really in bbPress you are just a member or not unless they are an admin. You have to change the role in both programs if you have a desired role in mind
Trent
In reply to: layout problem, missing closing div tag?!We can’t see it without registering and logging in!
Trent
In reply to: layout problem, missing closing div tag?!Quick question, are you using the templates or are you using So10’s integration of WP theme fix? I might be able to help figure out first, but second would be tougher for me as I am not sure how it calls the WP themes…..
Trent
In reply to: AWFULL DESIGNWhat exactly are you trying to say here. That really isn’t a support question and not really directed feedback…..
Trent
In reply to: IE Display ProblemIt is literally in the post right before you if I am reading this post correctly!
https://bbpress.org/forums/topic/436?replies=15#post-2396
Trent
In reply to: Cannot login, Hide forumSure thing. Couple of places:
1) https://bbpress.org/plugins/topic/23?replies=1
2) https://bbpress.org/forums/topic/313?replies=44
Trent
In reply to: Exporting bbPress to phpBB2?Leaving us already? I don’t think there is even an exporter for bbPress yet. If you can find a way to import into phpBB with RSS, you can just use the feeds from bbPress.
Trent
In reply to: Stop Cutting Off!!!!!!!!!!If you edit your style.css sheet in /bb-templates/ and go down to the portion that says:
/* Topic Page
=================================== */
That is where you will need to edit your file. I am not sure, but changing this one might be what you are looking for:
.threadauthor small { font: 11px Verdana, Arial, Helvetica, sans-serif; }
Trent
In reply to: Template of this forum??I had to change the download link to my new server. Download works again.
Trent
In reply to: bbPress Integrates Fine With WP 2.1Spammer gone.
Trent
In reply to: Cannot login, Hide forumIn reply to: Cannot login, Hide forumNotification of posts that you mark as ‘favorite’ in your profile:
http://la-school.com/public/notification.zip
All notifications of all replies to all topics:
http://la-school.com/public/notification_all.zip
Trent
In reply to: Cannot login, Hide forumNo problem zapata. To get rid of the register link, you need to download login-form.php from /bb-templates/ and then edit it as follows:
Change this part from:
<p><?php printf(__('<a href="%1$s">Register</a> or log in'), bb_get_option('uri').'register.php') ?>:</p>
to get rid of the register, you could just comment out this line or change the wording:
<! -- <p><?php printf(__('<a href="%1$s">Register</a> or log in'), bb_get_option('uri').'register.php') ?>:</p> -->
Once you have edited that file, upload it to a new folder (if it doesn’t exist already in root) /my-templates/ as bbPress will use that file first and if it doesn’t exist, go back to the one in /bb-templates/
As for the registering with WordPress, I was only referring to the abilitity to turn on or off registration in WP admin. If you turn it off, then you can add the members you want through the admin.
That should get you going!
Trent
In reply to: Cannot login, Hide forumSince you are integrated with WP (I would assume), removing register.php from bbPress root directory would get rid of that particular issue. People can still register using WordPress or just added as members by you in the WP admin. That would be the easiest way.
Trent
In reply to: Cannot login, Hide forumFrom Ardentfrost.
<?php
/*
Plugin Name: Force Login
Description: No one can see your forums unless they are logged in.
Plugin URI: https://bbpress.org/forums/topic/117
Author: Michael D Adams
Author URI: http://blogwaffe.com/
Version: 0.7
*/
function force_login_init() {
if ( !bb_is_user_logged_in() && false === strpos($_SERVER['REQUEST_URI'], 'bb-login.php') ) {
if ( file_exists( BBPATH . 'my-templates/login.php' ) ) {
require( BBPATH . 'my-templates/front-page.php' );
} else {
require( BBPATH . 'bb-templates/front-page.php' );
}
exit;
}
}
add_action( 'bb_init', 'force_login_init' );
?>
That will work.
Trent
In reply to: onvertigo.com forumsNice David! Seems that we started our kids blogging earlier than most!
Trent
In reply to: onvertigo.com forumsActually moved my forum over to http://onvertigo.com now and Maguire is no longer having his comments in the blog. Ah well!
Trent
In reply to: A bix complex, but try and follow me here.The issue will be because the user that you have as an Administrator in WP is not the keymaster in bbPress. What you can do is check out the following:
https://bbpress.org/forums/topic/462?replies=4#post-2607
There is some good information in there on getting the account that is the admin in WordPress to also be the Keymaster (admin) in bbPress.
Trent
In reply to: Cannot login, Hide forumI don’t think that should be a problem having those versions. What is not working, the plugin that mdawaffe posted above or the integration? Could you be more specific? What are you seeing? What are errors? What is desired result?
Trent
In reply to: request: choose languageI would imagine the easiest would be to have a plugin that allows people to pick in a dropdown box the different language files that are here at bbPress, don’t you think? Almost like a CSS picker, it would then just change the language file that is taken out of the config.php? I am sure there is someone here who would have an idea how to get that done.
As well, maybe this plugin for WP has a place to start if nothing else?
http://fredfred.net/skriker/index.php/polyglot
Trent
In reply to: Plugin – Avatar *UPDATE*In reply to: integrating bbpress with wordpressI would try the cookie sharing stuff in both bbPress config.php:
$bb->cookiedomain = '.lumanation.com';
$bb->cookiepath = '/';
And then maybe the cookie stuff that you can put in WordPress wp-config.php (can’t remember the format) if the first stuff just doesn’t work out straight away.
If the users are there it is because the integration is working, just the cookies are not sharing. Try that out and let me know.
Trent
In reply to: BBPress & LDAP Plug-in?If you change the plugin or the readme, the plugin browser will change the information and automatically set itself to download the files. Nothing user set I don’t think.
Trent