chengdu-living (@chengdu-living)

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 26 total)
  • @chengdu-living

    Participant

    I found a solution here, in case this is helpful for anyone else: https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/

    @chengdu-living

    Participant

    I would like to know about this also!

    @chengdu-living

    Participant

    I’m wondering the same thing. I just don’t know which files to edit to remove certain page elements that appear.

    @chengdu-living

    Participant

    very impressive!

    I have something similar although not as pimped out as yours:

    http://www.chengduliving.com

    http://www.chengduliving.com/forum

    @chengdu-living

    Participant

    very impressive!

    I have something similar although not as pimped out as yours:

    http://www.chengduliving.com

    http://www.chengduliving.com/forum

    @chengdu-living

    Participant

    Great job. Hopefully this will become available to everyone!

    @chengdu-living

    Participant

    Is 1.1 coming out soon?

    @chengdu-living

    Participant

    I can’t wait until email subscriptions arrive!! This will be awesome.

    In reply to: Plugins You Want !!!

    @chengdu-living

    Participant

    Sounds great. Thanks Chris!

    In reply to: Plugins You Want !!!

    @chengdu-living

    Participant

    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 !!!

    @chengdu-living

    Participant

    I’ll hold out for the official release then. Thanks for the info!

    In reply to: Plugins You Want !!!

    @chengdu-living

    Participant

    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 !!!

    @chengdu-living

    Participant

    That is awesome news!!! Thanks for letting me know, I’m really looking forward to that release!

    In reply to: Plugins You Want !!!

    @chengdu-living

    Participant

    I would love a plugin that allows users who post in threads to receive e-mail notifications of updates!

    @chengdu-living

    Participant

    Worked great, thanks!!

    @chengdu-living

    Participant

    That worked!

    Thank you so much for your help, Tom!!!

    :D :D :D

    @chengdu-living

    Participant

    Thanks 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!!

    @chengdu-living

    Participant

    I’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!

    @chengdu-living

    Participant

    I’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

    @chengdu-living

    Participant

    Any ideas on how to fix the link in that e-mail?

    @chengdu-living

    Participant

    I 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 WordPress

    In reply to: Plugins You Want !!!

    @chengdu-living

    Participant

    I’d like a plugin that allows me to easily post polls!

    @chengdu-living

    Participant

    I 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 :)

    @chengdu-living

    Participant

    BTW 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/';

    @chengdu-living

    Participant

    Thanks, you’ve been really helpful!

Viewing 25 replies - 1 through 25 (of 26 total)