Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 14,901 through 14,925 (of 64,454 total)
  • Author
    Search Results
  • #163340
    boazeapen
    Participant

    The forum page in my website is not displaying the links and is not coming in the proper format. It is working on the default wordpress theme.

    Wordpress Version 4.2.2
    bbpress version 2.5.7
    Website Link: http://www.imagilize.com/forums

    ashu2106
    Participant

    i m trying to get the thumbnail of topic to show on Widget “Forum list”
    what i m trying to achieve are

    1. trying to get the feature image funtionality on front end so user can have the option to upload image about the Topic
    2. get the feature image on Widget “Forum list” Default widget of BbPress plugin

    i m not developer, as i have feature image in admin using some code found here.
    Please provide some suggestions

    looking for quick reply, as i have to use this feature in website.
    thanks

    #163334
    mshivsharan
    Participant

    Hello! I am very new to WordPress.
    BBPress version: 2.5.7
    WordPress version: 4.2.2

    I want to remove the email id and website options for anybody who is starting a topic or commenting on a topic.
    Could you please tell me how?
    Website link: http://www.theiotportal.com/forum/discussion/

    #163330
    skyhrg
    Participant

    Hello

    When users register, I only collect their emails and names. As a result, the nicknames that show on the forum are their emails. To prevent this, I want to implement the nickname system. But there is a problem in the BBPress.

    I experimented by creating a new user and changing his nickname to other people’s nicknames. That is, nicknames should be unique, but it seems that people can just change their usernames to whatever they want, including the nicknames of other people. There is no system that checks for uniqueness of nicknames.

    How am I supposed to fix this problem?

    #163329
    u_Oi
    Participant

    Hi People!

    Please, some help to solve this:

    1. I would like to have the code to center text, images, and things in the editor of bbpress. Any idea? (If i write <center></center> in the editor the text after the code change their size :/ ).

    2. Simple, how can i add a double space to text in the editor? (if i tap a double enter, it should show a double space)

    Wordpress 4.2.2
    Bbpress 2.5.7

    Thank You!

    #163328
    Pointeandshoot
    Participant

    I have both bbPress and BuddyPress installed on my WordPress site. When someone posts a topic in bbPress, it automatically displays in the BuddyPress activity stream. If another user replies to the post inside the BuddyPress Activity Stream, the reply only shows up in BuddyPress, not also in the bbPress forum where the issue was originally posted. Am I missing a setting that would cause the reply to show up in the forum post as well?

    #163327
    mycon
    Participant

    using WP 4.2.2 – theme (Jupiter v4)

    Hello

    the theme i’m using (jupiter 4) had a bbpress directory at theme root when I installed it. (wp-content/theme/jupiter/bbpress). i imagined for compatibility .. but it’s not

    any recommendations regarding customization regarding ditching jupiter’s included bbpress and following child theme documentation for the plugin)?

    (the url is a dev site that includes an IP i’d rather not post here, thanks!)

    #163325
    kwelch007
    Participant

    WP SMTP works fine. The bbPress Notify does not work at all, and I have no idea why.

    #163324
    RemcoH
    Participant

    hi,

    My genesis theme adds a padding to .entry and therefore the content-sidebar pages have this padding too. It makes the forum content really narrow. I want to remove that padding. Only for forum pages and topics. How?

    The site is still in development but i included a url that shows the issue.

    WP version 4.2.2
    BBpres verion 2.5.7

    https://bfgv.nl/forums/onderwerp/dit-is-ook-een-test/

    Thnx

    subz
    Participant

    I want a feature where you can select/check two or more forums and on click of submit button only topics belonging to the selected forum(s) come. How can I do this. Please help!
    My wp version – 4.2.2
    My bbpress version – 2.5.7
    Thank you!

    #163318
    lisigef
    Participant

    I copied the code in https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#16-adding-description-to-forum-pages but there seems to be a problem with it and I’m just getting a blank page when I try to view the forum (When I comment out the code, the page shows up again, but of course without the description).

    I added the code to functions.php – is it supposed to go somewhere else? IS there some update needed to this code, given that it is a year later?

    Thanks in advance!

    #163313
    Sktella
    Participant

    I realize the bbpress sidebar only displays properly when I add widgets to the default wordpress sidebar; however, I only want sidebar displays in the forum page.

    #163311
    Sktella
    Participant

    Hi,

    I am using the bbPress WP Tweaks plugin to create a siderbar for my forum. However, the sidebar displays underneath the forum, which supposed to be on the right side of it. I am trying to solve it by changing the default forum wrapper, but it does not solve the problem.

    The error page: http://kayden.sg/forums/

    Hope you can help!Thank you so much!

    #163310
    nap14hockey
    Participant

    When I use the bbpress index shortcode, it shows only the first 3.5 forums (notice I said 3.5 because the 4th one only the title is shown. I have 7 forums, and I need them to display on the forums page?

    Thanks
    Nap14hockey

    #163302
    dfwpress
    Participant

    Hello,
    This forum http://www.mp-mag.com/en/forums/ does not send mail after submitting registration form.
    Please is there any suggestion?
    Wordpress 4.2.2
    bbPress 2.5.7

    #163301
    Shinbat
    Participant

    Simply, all you need to do is commenting a line in ‘content-archive-topic.php’ as shown below:
    The file path is ‘..\wp-content\plugins\bbpress\templates\default\bbpress\content-archive-topic.php’ at around line number 30.

    <?php bbp_get_template_part( ‘pagination’, ‘topics’); ?>
    <?php bbp_get_template_part( ‘loop’, ‘topics’); ?>
    <?php bbp_get_template_part( ‘pagination’, ‘topics’); ?>

    Just comment the first line to avoid displaying top pagination link as:

    <!—- ?php bbp_get_template_part( ‘pagination’, ‘topics’); ? —–>
    <?php bbp_get_template_part( ‘loop’, ‘topics’); ?>
    <?php bbp_get_template_part( ‘pagination’, ‘topics’); ?>

    #163299
    project_subdomain
    Participant

    thanks, sam. tried several codes, nothing worked unfortunately (blank page):(

    add_action( 'loop_start', 'divs_only_when_logged_in' );
    
    function divs_only_when_logged_in() {
    
    <?php if ( is_user_logged_in() ) {?>
     
        <div class="new-reply-link">
    
    	<a href="<?php bbp_topic_permalink(); ?>#new-post
    "class="reply-link-text">Reply</a> 
        </div></br>
    
    <ul id="bbp-topic-<?php bbp_topic_id(); ?>-lead" class="bbp-lead-topic">
    
    	<li class="bbp-header">
    
    		<div class="bbp-topic-author"><?php  _e( 'Author',  'bbpress' ); ?>
    </div>
    
    <?php endif; ?>
    }  
    ?>
    #163298
    shanhard
    Participant

    I would love to see native PMs in bbPress, with a notification system better than an email (eg a widget, or popup informing the visitor of a new PM).

    #163297
    maup64
    Participant

    Website: http://jcamai.com
    Wordpress Version: 4.2.2
    bbPress version: 2.5.7

    Just installed bbPress again after it didn’t work and really want to get it going since it’s about the best forum plugin available for WordPress. The issue is that trying to edit a post will take you to a page like this.

    Is there any advice on how to fix the ability to edit a post. I tried under an admin account as well and got the same issue.

    #163290
    project_subdomain
    Participant

    Hi,
    is there anyone who can help me to get this part

    <div class="new-reply-link">
    
    	<a href="<?php bbp_topic_permalink(); ?>#new-post
    "class="reply-link-text">Reply</a> 
    </div></br>
    
    <ul id="bbp-topic-<?php bbp_topic_id(); ?>-lead" class="bbp-lead-topic">
    
    	<li class="bbp-header">
    
    		<div class="bbp-topic-author"><?php  _e( 'Author',  'bbpress' ); ?>
    </div>
    
    <!-- .bbp-topic-author -->
    

    into an if-statement for logged in users?

    I suppose that
    <?php if ( bbp_is_user_logged_in() ) { ... } ?>
    does not work that simple due to the additional php within, right?
    (no success so far..)

    #163284
    Robkk
    Moderator

    This custom function should remove the “forums” in the breadcrumbs.

    Put it in your child theme functions.php or a functionality plugin to place custom code snippets.

    function rkk_custom_bbpbreadcrumbs() {
        // Remove Forum root from bbPress breadcrumbs
        $args['include_root']    = false;
        return $args;
    }
    
    add_filter('bbp_before_get_breadcrumb_parse_args', 'rkk_custom_bbpbreadcrumbs');
    #163283

    In reply to: Lestify

    Robkk
    Moderator

    your theme thinks bbPress is a blog post.

    usually modifying the main bbPress template will help fix this.

    https://codex.bbpress.org/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/

    #163282

    In reply to: Lestify

    Robin W
    Moderator

    The issue is with the theme, not bbpress, so you would need to understand and correct the theme.

    #163281

    In reply to: Lestify

    GuiZolaii
    Participant

    This is already done and they tell me that the theme is not compatible with BBPress …
    Do you have any ideas for it to become so easily? Is there a tutorial to become compliant template?

    #163280
    Robkk
    Moderator

    I replied here since you and another user seem to have the same problem.

    No topics shown to forum participants

    Here is what I posted anyway.

    Alright make sure both of you have gone through these troubleshooting steps.

    • Deactivate all plugins except bbPress.
    • Switch to a default theme
    • Flush permalinks by switching to default , save , next switch to your preferred structure then save again
    • Clear any cache
    • Go to Tools > Forums > Repair Forums then run each repair job one at a time.

    Does it Work??

    If it does work now, activate your plugins one at a time and make sure to spot the one that might have caused the issue.

    Not a plugin issue??

    You can try these plugins one at a time to see which one helps.

    bbpress wp4 fix2


    http://www.rewweb.co.uk/bbpress-wp4-fix/

    And hopefully it works after all that.

Viewing 25 results - 14,901 through 14,925 (of 64,454 total)
Skip to toolbar