Search Results for '+.+default+.+'
-
Search Results
-
Topic: Modify Topic Title Tags
I looked on here, but wasn’t quite able to find how to do this. If I missed it I apologize. How would I modify topic titles to not have the name of the forum in the title? What would I change? What file would I modify? Such as:
This is the default title structure right now on my theme:
<title>Topic Title >> Forum Name</title>
I would like to change the title structure to this:
<title>Topic Title</title>
Any ideas? Thanks.
Best regards,
Matt
i just solved my login cookie issue after one night debugging…
i found these things:
– by default, wpmu generate auth_cookie as “wordpress”, but bbpress generate as “wordpress_xxxxx(hash)”
– wpmu not using “database secret” for cookie hashing, but it use the SECRET_SALT constant defined in the wp-config.php, bbpress using “database secret”. so the cookie result will never be the same.
you need to update your bb-config.php file to meet these situations.
assumed you’ve successfully install wpmu + bbpress, then edit your bb-config.php and add these line:
define(‘BB_SECRET_KEY’, ‘yourreallysecretkey’);
define(‘BB_SECRET_SALT’, ‘yourreallysecretsalt’);
$bb->authcookie = ‘wordpress’;
$bb->cookiedomain = ‘.yourdomain.com’;
$bb->cookiepath = ‘/’;
$bb->sitecookiepath = ”;
and try to login… voila.. you can switch to bbpress and wpmu without re-login…
good luck,
—
rh
Topic: Reading Forum for Kids
Here’s my bbPress. It’s a forum for kids and teens to discuss books on. I modified the default theme to fit with the color scheme of the main site, and added a few plugins for features that my members wanted.
This is actually our second forum. The first was a YaBB install, which I hated, ’cause it kept letting spammers in. But our members and I love bbPress and the ease of use!
Topic: Nicknames
When users on my site sign up using the forum signup, it successfully integrates them into wordpress, but they do not have a nickname, so all comments appear as Anonymous.
Normally wordpress would automatically set the display name default to be the login name, but they dont seem to for this.
Any way i could edit the BBpress files to make wp have a name?