Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 20,126 through 20,150 (of 64,534 total)
  • Author
    Search Results
  • Robin W
    Moderator

    try adding ‘!important’ to the changes eg

    #bbpress-forums div.odd, #bbpress-forums ul.odd {
    background-color: #222222 !important;
    }

    to ensure they are not overwritten by later loading

    #147719
    NewSha
    Participant

    I want the users to get email alerts every time their forum role changes.

    Namely, I want to notify users only if their role has changed to Participant.

    I found a way to do this with standard WordPress roles, but it doesn’t work with bbPress roles.

    http://clicknathan.com/web-design/notify-a-wordpress-user-when-their-role-has-been-changed-to-a-specific-role/

    I tried changing if ($new_role == 'contributor') to if ($new_role == 'participant') and even to this if ($new_role == 'bbp_participant') – nothing worked.

    WordPress version: 3.8.2
    bbPress version: 2.5.3

    #147717

    In reply to: Plugin not working

    Robin W
    Moderator

    2011 should be fine with bbpress – perhaps it’s 2011 that’s corrupted?

    #147711
    Stefan8000
    Participant

    Hello,

    I just created my bbpress forum and I don’t get it into a Full Width site. I use the “The7” theme from dream theme and there exists no full width .php site which I could copy and rename to bbpress.php. So would could I do?

    #147705
    RitaNow
    Participant

    WP version 3.9.1
    bbPress version 2.5.4
    Web site http://raptureintheairnow.com/

    I have deactivated all my plugins. The only one turned on is bbPress. The page loads half way then gets the error:
    The server encountered an internal error or misconfiguration and was unable to complete your request.

    Please contact the server administrator, webmaster@raptureintheairnow.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

    More information about this error may be available in the server error log.

    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

    Some of the sub forums load with no problem like:

    MAIN DISCUSSION FORUM

    I called my hosting company and they said to disable all plugins and turn them back on one at a time. bbPress is the only one turned on and getting these errors.

    #147687

    In reply to: Full Width Forum Help

    watstyl08
    Participant

    Thanks for your response! I’ve done that – and it takes the sidebar away, but no luck on getting bbpress to go full-width.

    At least with that small modification to my bbpress.php, I know bbPress is pointed to the right template — now I just need to figure out what code is preventing the full-width format.

    Link to my forum:

    http://www.ibeacon.com/forums/

    #147685
    watstyl08
    Participant

    Hey everyone,

    I’m having a bit of trouble getting my Forum into full-width format. I’m using the Oxygen theme which by default has a left and right sidebar.

    I’ve already copied my “page-template-fullwidth.php”, renamed it as “bbpress.php”, and installed bbPress WP Tweaks to make sure that bbPress is injecting itself into the “bbpress.php” template.

    Given what I’ve read – this should’ve done the trick. I’m wondering if it’s something weird with Oxygen Theme’s templates. I’ve included the code of the Full Width Template i’m using here below. Does anyone see anything out of the ordinary that could be preventing me from getting full-width formatting?

    <?php
    /**
    * Template Name: Full Width
    *
    * Full width page template with no sidebar.
    *
    * @package Oxygen
    * @subpackage Template
    */

    get_header(); // Loads the header.php template. ?>

    <div class=”aside”>

    <?php get_sidebar( ‘primary’ ); // Loads the sidebar-primary.php template. ?>

    </div>

    <?php do_atomic( ‘before_content’ ); // oxygen_before_content ?>

    <div class=”content-wrap”>

    <div id=”content”>

    <?php do_atomic( ‘open_content’ ); // oxygen_open_content ?>

    <div class=”hfeed”>

    <?php if ( have_posts() ) : ?>

    <?php while ( have_posts() ) : the_post(); ?>

    <?php do_atomic( ‘before_entry’ ); // oxygen_before_entry ?>

    <div id=”post-<?php the_ID(); ?>” class=”<?php hybrid_entry_class(); ?>”>

    <?php do_atomic( ‘open_entry’ ); // oxygen_open_entry ?>

    <?php echo apply_atomic_shortcode( ‘entry_title’, ‘[entry-title permalink=”0″]’ ); ?>

    <div class=”entry-content”>

    <?php the_content( __( ‘Continue reading <span class=”meta-nav”>→</span>’, ‘oxygen’ ) ); ?>

    <?php wp_link_pages( array( ‘before’ => ‘<p class=”page-links”>’ . __( ‘Pages:’, ‘oxygen’ ), ‘after’ => ‘</p>’ ) ); ?>

    </div><!– .entry-content –>

    <?php echo apply_atomic_shortcode( ‘entry_meta’, ‘<div class=”entry-meta”>[entry-edit-link]</div>’ ); ?>

    <?php do_atomic( ‘close_entry’ ); // oxygen_close_entry ?>

    </div><!– .hentry –>

    <?php do_atomic( ‘after_entry’ ); // oxygen_after_entry ?>

    <?php do_atomic( ‘after_singular’ ); // oxygen_after_singular ?>

    <?php endwhile; ?>

    <?php endif; ?>

    </div><!– .hfeed –>

    <?php do_atomic( ‘close_content’ ); // oxygen_close_content ?>

    </div><!– #content –>

    <?php do_atomic( ‘after_content’ ); // oxygen_after_content ?>

    <?php get_footer(); // Loads the footer.php template. ?>

    #147683
    BobHatcher
    Participant

    It’s good to see this post as this has been driving me crazy.

    Note that the button works if you type your link text into the post, highlight it and then hit the link button.

    For example, THIS link was created doing it that way.

    #147680
    Robin W
    Moderator

    No problem,

    It might be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, switch to a default theme such as twentytwelve, and see if this fixes.

    #147677
    Robin W
    Moderator

    There are all sorts of backdoors that a ‘page/post’ restricting plugin doesn’t cover for bbpress

    For instance :

    search is usually forum wide
    http://www.mysite.com/topics
    http://www.mysite.com/replies
    looking at topics/replies created in a user profile
    recent topics widget
    recent replies widget

    all usually just bypass a plugin written for pages.

    which is why I wrote the private groups plugin

    https://wordpress.org/plugins/bbp-private-groups/

    There is no reason why it shouldn’t work alongside your members with members protecting your pages & posts, and private groups protecting your forums.

    BUT you do have to set users up to see restricted forums, and this is manual. It is quick to do (just a setting within the user settings), but if you have an automated joining process, then you would need to add a manual step (or write some code!)

    EugenioRro
    Participant

    I’ve reinstalled bbpress 2.5.4 in WP 3.9.1 and I can’t find the button “forum” in settings nor other place. I have unistall, cleaned the data base and reinstall again but the button doesn’t appear. Any help? Thanks.
    http://www.cresteando.com

    Daniel Tara
    Participant

    On my local server search results URLs get pretty permalinks and search works. On my live server the query string is shown and no search results are returned.

    I did a test by manually entering the search URL as it was prettyfied on my local server and surprisingly search works.

    The search URL that bbPress returns looks like this and returns no results:
    http://www.onedesigns.com/support/search?action=bbp-search-request&bbp_search=pinboard

    The prettified link for the same search looks like this:
    http://www.onedesigns.com/support/search/pinboard

    So the search engine works and apparently it’s the permalinks that cause the issue. Changing or resaving WordPress’ permalink setting didn’t make any difference.

    A var_dump for bbp_search returns NULL.

    The only difference between my local server and live server is that on my local server I use Apache and on my live serve nginx + Varnish.

    Is there any incompatibility between bbPress and nginx or Varnish? Are there any permalink configurations I must apply?

    Thank you

    #147672
    timmelody
    Participant

    Hi,

    I would like to change some of the wording in bbPress.

    For example, instead of

    Create new topic in . . .

    I’d like it to say

    Create new post . . .

    or whatever.

    Which files would I look in to edit? Or (long short) is there even a plugin to edit?

    FYI, yes, I am aware that on the next update such changes will be overwritten, etc.

    Thanks for help!

    #147671
    Killerrabbit2
    Participant

    WP V. 3.9.1
    bbPress v 2.5.4

    I’ve been banging my head against the wall on this one.

    Here is what I need to do:

    I have users who need to register for different forums. Each specific forum has restrictions. I am using the S2Member plugin. I can with their shortcodes restrict content within a page. I then can restrict a forum listing when I use a bbPress short code within a page.

    The problem is that bbPress dynamically creates topic pages, thus I can not put any shortcode logic in to restrict who sees the topics.

    S2Member has some code that works to restrict content with a function. However, using bbPress conditional tags don’t work. I can use the native conditional tags which do.

    Below is my code that I can’t seem to get working:

    add_action ("wp", "my_custom_capabilities");
    
    function my_custom_capabilities ()
    	{
    	if(bbp_is_topic_tag('Global'))
    		{
    		header ("Location: ".S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
    		exit();
    		}
    	}

    Ideas?!

    #147669
    sniffertje
    Participant

    Hi,

    I have BBPress 2.5.4 and wordpress 3.9.1.

    I’m working with non-members, now members will not receive notification emails when there is a reply on there post.

    Is it possible to activate this?

    Thanks

    Robkk
    Moderator

    just wondering

    llke the purple … hovering over the menu items makes my eyes hurt though

    #147665
    Robkk
    Moderator

    2. Below Each of the reply

    3. Interstilies add before opning forum.

    users are going to love adblock then

    i suggest that you dont bombard them with ads everywhere , show at least 2 – 4 on just one page

    use this plugin

    https://wordpress.org/plugins/bbpress-simple-advert-units/

    #147662
    sniffertje
    Participant

    I installed BBpress on wordpress, but when using HTML tags then these are not working.
    They are also not white or anything, it’s totally not in the post. Bold, Italic etc are working fine.

    For example which code is not working:

    #147661
    James Doglasse
    Participant

    eg

    http://www.naturalparenting.com.au/natural-parenting-forums/topic/what-did-your-babies-weigh-at-birth/

    I have tried everything. I figure its something simple but cant work it out

    Latest wordpress and bbpress version.

    #147650

    In reply to: Latest 5 Topics?

    Robin W
    Moderator

    I’ve just started working on a plugin that will have some additional shortcodes in it

    the only functional one so far is the ability to show the latest xx topics

    you can download it from here

    bbp additional shortcodes

    you use the shortcode

    [bbp_display_topic_index show=’5′]

    #147645
    annakyn
    Participant

    I would like to display the latest 5 topics, exactly as displayed on the homepage of bbpress. How do I go about this, I can’t seem to see a shortcode that would work?

    #147639
    Etienne-Zestetik
    Participant

    Can one bbPress plug-in work across different WordPress sites ? I would like to put it on : http://zestetik.fr/magazine/ & http://www.anti-age-magazine.com/ ? (same questions/answers will be display on both sites)

    Thanks !

    #147637
    Robin W
    Moderator

    but i don’t want this boring theme

    Yes, I know that – it was simply to test that it was a theme issue

    as I said before

    you’ll need to contact their support site for this as it’s a paid theme

    http://themeforest.net/item/x-the-theme/5871901/support

    they should be able to help you

    Themes can be very complicated, and we don’t offer a service to make bbpress work with bespoke/paid themes – that is for the theme authors to do 🙂

    #147635
    Robin W
    Moderator

    and the second problem…

    the logon widget is held in :

    wp-content>plugins>bbpress>includes>common>widgets.php

    I suspect you’ll already know that it is bad practice to alter core files, as they get overwritten on upgrades.

    You’d do better to fork the code into your functions file, rename and create your own widget based on that.

    #147632
    waqastahir99
    Participant

    and the second problem is that i have changed the wordpress login url to
    http://ifunts.cf/member-area how i can change it in bbpress login widget so it will work
    is there any file i can modify i know php pretty well but don’t know wordpress dev and bbpress very well but i am intrested in solving the issues please help me and thanks for the reply

Viewing 25 results - 20,126 through 20,150 (of 64,534 total)
Skip to toolbar