Forum Replies Created
-
In reply to: Solved: Change “Freshness” Time Format
I found a solution here, in case this is helpful for anyone else: https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/
In reply to: BBPress profile – add custom pagesI would like to know about this also!
In reply to: How to edit how Forum looks, particularly front pageI’m wondering the same thing. I just don’t know which files to edit to remove certain page elements that appear.
In reply to: WP + BBP Intergrated World of Warcraft Guild Sitevery impressive!
I have something similar although not as pimped out as yours:
In reply to: WP + BBP Intergrated World of Warcraft Guild Sitevery impressive!
I have something similar although not as pimped out as yours:
Great job. Hopefully this will become available to everyone!
In reply to: bbPress 1.1 – Maybe Soon!Is 1.1 coming out soon?
In reply to: bbPress 1.1 – Maybe Soon!I can’t wait until email subscriptions arrive!! This will be awesome.
In reply to: Plugins You Want !!!Sounds great. Thanks Chris!
In reply to: Plugins You Want !!!Does anyone know how much time there is between official releases, approximately? I’m just wondering if I’ll be waiting weeks, months, or years.
In reply to: Plugins You Want !!!I’ll hold out for the official release then. Thanks for the info!
In reply to: Plugins You Want !!!chrishajer – is it easy to get ‘subscribe to topic’ working with bbPress 1.02? Or is the next release expected to be soon? Thanks!
In reply to: Plugins You Want !!!That is awesome news!!! Thanks for letting me know, I’m really looking forward to that release!
In reply to: Plugins You Want !!!I would love a plugin that allows users who post in threads to receive e-mail notifications of updates!
In reply to: Remove "Allowed markup" text on post pageWorked great, thanks!!
In reply to: Change the URL in registration e-mailThat worked!
Thank you so much for your help, Tom!!!
In reply to: Change the URL in registration e-mailThanks for your help Tom,
How would I add my web address into that line? I tried the following but it gave me an error:
sprintf($message, $user->user_login, $pass, http://www.chengduliving.com/forum/)
Thanks!!
In reply to: Change the URL in registration e-mailI’m still trying to fix this problem!! The URL redirection didn’t work for me but I think a better fix would be to change what’s output in the registration e-mail, if that’s possible!
If anyone has a solution I’d be eternally grateful!
In reply to: Integrating bbPress into my siteI’m not an expert, but from what I’ve gathered, you’ll need to copy or duplicate some parts of your WordPress design into a bbPress theme. So they will look the same and there won’t be a noticeable transition between the two. Unfortunately there isn’t an automatic way to do this, each theme works differently. If you’re using a popular theme with a large community around it, you might be able to find someone who’s already made those changes and can share them with you. Good luck
In reply to: Change the URL in registration e-mailAny ideas on how to fix the link in that e-mail?
In reply to: Change the URL in registration e-mailI added that bit to .htaccess and it doesn’t seem to have changed anything. Perhaps it takes time to take effect? Here’s what my .htaccess looks like:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^([^.:]+.)*chengduliving.com/bbpress.?(:[0-9]*)?$ [NC]
RewriteRule ^(.*)$ http://www.chengduliving.com/forum/$1 [R=301,L]
# END WordPressIn reply to: Plugins You Want !!!I’d like a plugin that allows me to easily post polls!
In reply to: 404 Errors on Forums/TopicsI found the solution! I went under Settings > Permalinks and updates the .htaccess file with the information there.
If this happens to anyone in the future, check there
In reply to: 404 Errors on Forums/TopicsBTW I tried what was advised in this thread: https://bbpress.org/forums/topic/bbpress-broke-when-i-changed-the-url but it just displayed the code on the actual live forum page
Here is my bb-config.php included the added part at the very bottom:
<?php
/**
* The base configurations of bbPress.
*
* This file has the following configurations: MySQL settings, Table Prefix,
* Secret Keys and bbPress Language. You can get the MySQL settings from your
* web host.
*
* This file is used by the installer during installation.
*
* @package bbPress
*/
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for bbPress */
define( 'BBDB_NAME', 'justchar_wrdp5' );
/** MySQL database username */
define( 'BBDB_USER', 'justchar_wrdp5' );
/** MySQL database password */
define( 'PASSWORDWASHERE' );
/** MySQL hostname */
define( 'BBDB_HOST', 'localhost' );
/** Database Charset to use in creating database tables. */
define( 'BBDB_CHARSET', 'utf8' );
/** The Database Collate type. Don't change this if in doubt. */
define( 'BBDB_COLLATE', '' );
/**#@+
* Authentication Unique Keys.
*
* Change these to different unique phrases!
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/bbpress/ WordPress.org secret-key service}
*
* @since 1.0
*/
define( 'BB_AUTH_KEY', 'put your unique phrase here' );
define( 'BB_SECURE_AUTH_KEY', 'put your unique phrase here' );
define( 'BB_LOGGED_IN_KEY', 'put your unique phrase here' );
define( 'BB_NONCE_KEY', 'put your unique phrase here' );
/**#@-*/
/**
* bbPress Database Table prefix.
*
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please!
*/
$bb_table_prefix = 'bb_';
/**
* bbPress Localized Language, defaults to English.
*
* Change this to localize bbPress. A corresponding MO file for the chosen
* language must be installed to a directory called "my-languages" in the root
* directory of bbPress. For example, install de.mo to "my-languages" and set
* BB_LANG to 'de' to enable German language support.
*/
define( 'BB_LANG', '' );
?>
$bb->uri = 'http://www.chengduliving.com/bbpress/';In reply to: How can I move threads?Thanks, you’ve been really helpful!