Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 26,826 through 26,850 (of 64,535 total)
  • Author
    Search Results
  • #127761
    Stephen Edgar
    Keymaster

    With what you patched via #1835.diff that is the same as what was committed to /trunk in r4533 and is included in the upcoming bbPress 2.3.

    Neat!

    #127759
    iamnotadoll
    Participant

    I modified the code in includes/common/template-tags.php as outlined on this page and (for now) it seems to have fixed the issue.

    `
    function bbp_redirect_to_field( $redirect_to = ” ) {

    // Rejig the $redirect_to
    //if ( !isset( $_SERVER[‘REDIRECT_URL’] ) || ( !$redirect_to == home_url( $_SERVER[‘REDIRECT_URL’] ) ) )
    // $redirect_to = wp_get_referer();

    // Make sure we are directing somewhere
    if ( empty( $redirect_to ) )
    $redirect_to = home_url( isset( $_SERVER[‘REQUEST_URI’] ) ? $_SERVER[‘REQUEST_URI’] : wp_get_referer() );

    // Remove loggedout query arg if it’s there
    $redirect_to = (string) esc_attr( remove_query_arg( ‘loggedout’, $redirect_to ) );
    $redirect_field = ”;

    echo apply_filters( ‘bbp_redirect_to_field’, $redirect_field, $redirect_to );
    }
    `

    Initially it wasn’t working because I didn’t remove the //Rejig the redirect part (can’t believe I didn’t see it the first time).

    Now my question is, where (and how) would I put this modified function to stop any future updates from overwriting it?

    I tried using add_filter(‘bbp_redirect_to_field’) in my bbpress-functions file but it makes the site really slow. Is there a better way to do it?

    `
    add_filter(‘bbp_redirect_to_field’, ‘bbp_redirect_to_field_filter’);

    /**
    * Filter to fix the reply redirects
    **/
    function bbp_redirect_to_field_filter( $redirect_to = ” ) {

    // Make sure we are directing somewhere
    if ( empty( $redirect_to ) )
    $redirect_to = home_url( isset( $_SERVER[‘REQUEST_URI’] ) ? $_SERVER[‘REQUEST_URI’] : wp_get_referer() );

    // Remove loggedout query arg if it’s there
    $redirect_to = (string) esc_attr( remove_query_arg( ‘loggedout’, $redirect_to ) );
    $redirect_field = ”;

    echo apply_filters( ‘bbp_redirect_to_field’, $redirect_field, $redirect_to );
    }

    `

    #127758
    jakewho
    Participant

    I am using WordPress and bbPress in Brazilian Portuguese and most of the words in bbPress are correctly translated. Unfortunately, the word “forum” at the top of each bbPress page (both the title and the path) are still in English. How would I go about changing this title to be in Portuguese?

    If you want to see what I mean: http://www.cbblogers.com/forums/

    Thanks

    #127752

    In reply to: Templating 404 page?

    Stephen Edgar
    Keymaster

    Its a custom 404 page offered by your web host, it has nothing to do with bbPress and/or WordPress. There should be an option in your hosting control panel to add/edit your own custom error page.

    #127751
    grundyoso
    Participant

    Figured this issue out. Seems the Propulsion theme I was using was only compatible with bbPress 2.1.2 and I had installed 2.2. Once I dropped in the right version things started working right away. I hope this helps some else.

    #127749
    mechellelopez
    Participant

    I have an existing forum that is running off of a stand-alone bbPress 1.-alpha-2855. I need to integrate it into WordPress so that I can update to bbPress’ lates version. Could anyone help me with a step by step way to do that?

    #127747

    Topic: Templating 404 page?

    in forum Themes
    Ryuske
    Participant

    I am using WordPress 3.5 & bbPress version 2.2.4. I cannot figure out for the life of me where the 404 page is actually being pulled from. I need to edit the structure of that page a little but can’t find it :/

    This is the page I am talking about: http://nviaai.com/forums/forum/members/

    I looked at 404.php but that was significantly different, so I’m pretty sure that isn’t it >.< Thanks for your time!

    #127746
    Gabriel Luethje
    Participant

    I’m still having trouble with this one. I am using bbPress v2.2.4 with Twenty Twelve (tried it with Twenty Eleven also), and I am having tags stripped out. If I do ol/ul they return as a p tag with br tags separating the line.

    Here’s a screenshot of my toolbar for forum posting: http://d.pr/i/qjbM. This is with “Use the fancy WordPress editor to create and edit topics and replies” checked in Forums settings.

    If I uncheck that option, I get no toolbar at all: http://d.pr/i/SW05

    How can I get a basic formatting toolbar working correctly?

    #127733
    livninctry
    Participant

    I searched for this topic and am surprised to not find it. This is a popular digest plugin and was wondering if I could get it to include new topics and responses to topics in the digest emails?

    #127732
    xmasons
    Participant

    Let’s try this again…

    Open up the following PHP document in the bbPress plugin, found at –

    bbpress/templates/default/bbpress/user-profile.php

    Using the AIM field as an example, add the following –

    `
    `

    Now you probably shouldn’t alter these files, as the next time bbPress is updated, the update will overwrite this. You’ll need to make a copy of the file under your theme directory. So it should look like this –

    yourTheme/bbpress/user-profile.php

    George
    Participant

    Does anyone know how I can add or where I can find a plugin to add BBpress Live Preview or Post Preview for Replies and/or Topics? Almost any other forum software automatically has post preview buttons.. not sure why BBpress doesn’t have this integrated.

    Any help would be greatly appreciated.

    #127729
    Rhys Wynne
    Participant

    I’m using bbPress in conjunction with the Members plugin and have a “Private” forum, that only users of a certain level can access (we call it “Employees”).

    It works fine, great, thanks 🙂

    However, if a non “Employee” logged in user has the direct link to a post (or clicks on the “Freshness: {time}” in the post list, then they can see the topic directly.

    How can I hide this? Ideally I want to do it plugin level, rather than changing the theme.

    xmasons
    Participant

    This is a plugin request and I wouldn’t assume that it be rolled into bbPress proper.

    A highly prized feature of allowing users to subscribe to sub-forums (via their account page) and be sent notifications (excerpts or full) of a new topic or reply. There are several plugins that capture parts of this, some quite close, but none that have the full functionality.

    bbPress Notify
    http://wordpress.org/extend/plugins/bbpress-notify/
    Works great at sending out customized emails at a user role level. But it’s an all or nothing solution and does not let the user pick the subforums they’re interested in.

    bbPress Digest
    http://wordpress.org/extend/plugins/bbpress-digest/
    Does a great job on letting the user select the sub-forums (from the user’s account) that they’d like to receive notifications from. Sadly, it’s only a weekly or daily digest.

    Marrying those two plugins would produce a wonderful hybrid and would take some doing. I’m a little surprised that this feature has not been created yet, as it is used in several other forum software ecosystems.

    Unsal Korkmaz
    Participant
    #127711
    zilveer
    Participant

    Hello,
    look at the following plugin which will fit your needs:
    https://wordpress.org/extend/plugins/wp-toolbar-removal/

    #127708
    Francois Grenier
    Participant

    Hi!

    I’ve done everything in the installation guide (http://codex.bbpress.org/bbpress-in-your-language/) to traduce it in french.

    But I think I am missing something here, do I have to activate something, do I have to use codestyling localization to complete the traduction?

    Is just uploading the files and having my WP dashboard in the same language should get everything translated^

    Thanks

    Unsal Korkmaz
    Participant

    Probably i should load style.css for misunderstandings like this.
    Update: i removed custom.css and copied its content to style.css so style.css will load in 1.1.1

    Unsal Korkmaz
    Participant

    style.css is not loading in theme. Its just there for showing theme info for WordPress. Try to add it to assets/css/custom.css or from custom css panel in theme customizer

    Erlend
    Participant

    I tried adding that to style.css (including the dot) to no avail, the problem persists.

    Update: Aha, when I added it to the “Custom CSS” in the “Customize” menu it worked.

    Unsal Korkmaz
    Participant

    Did you tried

    .firmasite-modal-static .modal-body {
    	max-height: inherit;
    }
    

    It must be fix your problem imo. ( be careful dont forget dot before firmasite-modal-static )

    Erlend
    Participant

    Hmm, how strange that it shows correctly for you, as it’s like this for me on two different machines.

    Regarding the custom buttons, I don’t think those should be displayed by default in the forum editor, no. Custom buttons and icons can be very useful in posts, but I don’t see them being useful to the majority of forum users. That said, I also think that custom buttons/shortcodes is plugin territory.

    Unsal Korkmaz
    Participant

    Btw, did you see custom tinymce buttons in post panels? Do you think will it be good to add those custom tinymce buttons on forum tinymce?

    Unsal Korkmaz
    Participant

    This is really long post on topic:

    View post on imgur.com

    I see other bug that needs to remove max-height from static modal-body:

    .firmasite-modal-static .modal-body {
    	max-height: inherit;
    }
    

    I am not sure what is problem in there but if i can reproduce, i will try my best to fix it

    Update: I think your problem was this bug. IT must be fix with this css code right? I will release 1.1.1 version of theme in 2-3 days can you try theme meanwhile please?

    Erlend
    Participant

    I’ve encountered this on both Windows 8 with Chrome and Ubuntu 12.10 with Firefox (screenshots). I can’t test on Safari. Also your first test post does not contain a bunch of text, the second one does. Test it with the first one.

Viewing 25 results - 26,826 through 26,850 (of 64,535 total)
Skip to toolbar