Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 11,876 through 11,900 (of 64,515 total)
  • Author
    Search Results
  • #173481
    Robkk
    Moderator

    You can create a custom view, use this shortcode in a page [bbp-single-view id='unresolved'], then just link to it in a menu or use the views widget bbPress provides.

    function rkk_register_unresolved_view() {
     	bbp_register_view( 'unresolved', __( 'Unresolved Topics' ), array( 'meta_key' => 'bbr_topic_resolution', 'meta_value' => '2', 'orderby' => 'post_date', 'post_status' => 'publish' ), false );
     }
     add_action( 'bbp_register_views', 'rkk_register_unresolved_view' );
    #173480
    Pascal Casier
    Moderator
    #173479
    Robkk
    Moderator

    @bj87

    Do what @casiepa said and just put the bbPress template content-single-forum.php in a folder called bbpress in your child theme, and edit the file.

    A guide like this would help you figure out how you can customize the bbPress default theme in a child theme.

    https://codex.bbpress.org/themes/theme-compatibility/

    Just make your file look similar to this gist.

    https://gist.github.com/robkk/059c1f87b3d21cf75dd9


    @tech55541
    thanks for helping out in a few topics in the support forums, but your code shows undefined messages in the user profile subscriptions section if you are subscribed to a forum.

    #173476
    erikture
    Participant

    Hello!

    I am planing to install bbPress on my site running the latest version of WordPress.
    However I have a rather “strange” requirement.
    On the site we have a private part where the users logs in with username and password.
    The problem is that all users use the same username. We have tried to give each member an individual username but without any success. They will not remember their username or password. The information on the protected part is not personalized so it is not accturally a problem that they use the same username.

    My problem is that when they then post to bbPress all users will post as this generic user. Is it possible to force the anonymous posting layout even for logged in users? This will force them to enter their name and emailadress and we can figure out who has posted what.

    /Erik

    #173470
    tech55541
    Participant

    Hello,
    Couldn’t you still use functions.php with this code to restrict it to BBPress.

    if ( is_bbPress() ):

    Makes since to me.

    Thanks.

    #173456
    chaya579
    Participant

    i’m used with Content Aware Sidebars to create dynamic sidebars but its not work for bbpress form.
    how can i add specific to bbpress forms?

    tried to add code to bbpress.php and to sidebar.php but still can not add sidebars on bbpress.

    thanks

    #173453
    alfio8788
    Participant

    Hello everyone,

    After a fight with vbulletin and mysql i was able to (partially) import our vbulletin forum to bbpress (an estimated import time was 12 days for a full import, we decided to run such a task only for the last import that will go live) but sadly the import is totally out of sync resulting in this kind of problems:

    1) Threads are posted by the wrong user
    2) Replies are posted with the wrong user
    3) Links to user profiles randomly missing (but possible to load by requesting the profile right away from URL)

    Repairs after import were executed (with the exception of bbp-sync-all-reply-positions, it always times out even if the php execution time is set to insanely high values such as 3000 seconds).

    If this is caused by the interruption of the import process just let me know right away and we will create a copy of the vbulletin database and keep a smaller set of data for our tests and then import everything once our testing is done.

    #173452
    Pascal Casier
    Moderator

    Hi Johan, goede avond,

    I suppose you can copy the content-single-forum.php to your own child theme and modify it accordingly.
    https://codex.bbpress.org/themes/theme-compatibility/step-by-step-guide-to-creating-a-custom-bbpress-theme/

    Pascal.

    #173449

    In reply to: Theme Help

    Robkk
    Moderator

    Customizing a bbPress theme will take a good amount of time to mimic the look and functionality of Xenforo. IF you want simple style changes, use Robin’s plugin, if you want more of the functionality of the forum, I suggest you hire a developer to create something for you.

    #173448
    Robkk
    Moderator

    @elovkoff

    You do not have to create a child theme just for custom code snippets, you can also use a custom plugin, this plugin below will give you an area to add custom php code snippets.

    https://wordpress.org/plugins/functionality/

    I still rather suggest you just stick with an inline image upload plugin instead of gd bbPress attachments(unless you are using pro), instead of removing the error notice and allowing empty replies.

    #173445
    bj87
    Participant

    Hey, my name is Johan.
    I just wondering how to put the postbox on top of the forum, because we have reverse forum that you se the latest post first and not last.

    So i want to have the post box on top. is this possible?

    Where/or how do i fix that?

    I use bbPress 2.5.8 version.

    Thanks in advance!
    / Johan

    TKServer
    Participant

    BINGO! So my local SVN repository didn’t have the files added to its database, even though I could see the files in the folder on the Mac.

    Now enjoy the images and such:

    https://wordpress.org/plugins/tk-bbpress-stats/

    #173439
    dalemiles
    Participant

    Hi Pascal,

    Thanks, updating the wordpress profile is not a problem I can do that.

    However using the code from bbPress profile such as:

    <?php do_action( 'bbp_template_before_user_profile' ); ?>
    
    	<div id="bbp-user-profile" class="bbp-user-profile">
        <h1>View Users Trading Profile Here <?php get_the_author_id(); ?></h1>
       
    		<h2 class="entry-title"><?php _e( 'Profile', 'bbpress' ); ?></h2>
    		<div class="bbp-user-section">
    
    			<?php if ( bbp_get_displayed_user_field( 'description' ) ) : ?>
    
    				<p class="bbp-user-description"><?php bbp_displayed_user_field( 'description' ); ?></p>
    
    			<?php endif; ?>
    
    			<p class="bbp-user-forum-role"><?php  printf( __( 'Role: %s',      'bbpress' ), bbp_get_user_display_role()    ); ?></p>
    			<p class="bbp-user-topic-count"><?php printf( __( 'Topics Started: %s',  'bbpress' ), bbp_get_user_topic_count_raw() ); ?></p>
    			<p class="bbp-user-reply-count"><?php printf( __( 'Replies Created: %s', 'bbpress' ), bbp_get_user_reply_count_raw() ); ?></p>
    		</div>
    	</div><!-- #bbp-author-topics-started -->
    
    	<?php do_action( 'bbp_template_after_user_profile' ); ?>

    added to my author.php doesn’t work.

    I presume its because its not tied to the bbPress ‘user’ profile?

    #173438
    Pascal Casier
    Moderator

    I’m afraid I won’t be able to help with that because you try to change the WordPress profile, and my knowledge is limited to bbPress profiles…

    TKServer
    Participant

    @casiepa thanks for trying to help. I’ve renamed README.txt to readme.txt. I DID have structure under tags. So I fixed the stable tag to 1.0.1 in readme.txt and redid the update.

    The only thing that updated is readme.txt. No images uploaded to anywhere and tags did not upload either. More help/suggestions welcomed.

    Here’s the current structure.

    #173428
    dalemiles
    Participant

    Hey guys.

    I’ve tried searching about this but not really been able to find a definitive answer, especially for my own situation.

    I currently have a live site, where users NEED to use WordPress default domain.com/author/username

    Currently when you go to the profile of a poster in the bbPress forum it takes you to a different user page domain.com/user/username

    I need this to direct to domain.com/author/username as the default WordPress profile contains information about the user (feedback ratings, post details + more – its a classified site).

    Now I’m not 100% fussed on whether the domain.com/author/username page displays post details, as the ‘forum’ I’ve having is a single forum and more like a general chat area of the site. I’m not looking to setup a fully fledged forum.

    However the most important thing is having their profiles direct to their author page instead of their bbPress user page.

    If there is code I can place in the author.php file (WordPress one) that will check their bbPress details regarding their posts, that would be great. I’ve tried copying the code from bbPress user-profile.php but that didn’t work.

    Can any one offer any assistance? I’d deeply appreciate it.

    Thanks

    bbPress: Version 2.5.8
    WordPress: Version 4.4.2
    Website: http://www.airsofttrader.co.nz (You can see the example of author pages, however bbPress is not installed on the live site – its installed locally.)

    #173427
    Robin W
    Moderator
    #173423
    Pascal Casier
    Moderator
    #173422
    Pascal Casier
    Moderator

    For uploading files, the 3 products I know of are ‘GD bbpress Attachments’, ‘Image Upload for BBPress’ and ‘bbPress Multi Image Uploader’. Have a look if it would fit your needs.

    If you use BuddyPress as well, then there is also ‘BuddyPress Forum Editor’.

    #173411
    migno
    Participant

    Sup guys,
    im currently working on a WordPress based Gaming-Theme and want to change a few of BBpress Templates.
    Unfortunatly bbpress dont like the take the changes and always falls back to the default ones.

    My Theme folder looks like this:
    %mythemename%/bbpress/%template_files_here%

    but everything i change here wont update…
    So, im a doing something wrong with the bbpress folder there or is it just my dumbness ?

    #173394
    DL
    Participant

    OK if I could delete the last two posts I would.

    After struggling with doing this on XAMPP I gave up and set up a new test on a live server and it worked! (with some issues)

    https://github.com/damon18/dizkus-bbpress/issues/4

    #173388
    Robkk
    Moderator

    Yeah you do not need to run both plugins at the same time. I meant just use one instead of the other.

    This php snippet will allow empty posts which is kind of not a good idea. Also I cannot seem to find the code in the bbPRess plugin responsibe for the no redirect to post after submit after using using this code.

    function rkk_remove_content_error_check( $reply_content ) {
      if ( !empty( $_POST['bbp_reply_content'] ) && empty( $_POST['bbp_reply_content'] ) )
      $reply_content = $_POST['bbp_reply_content'];
    }
    add_filter( 'bbp_new_reply_pre_content', 'rkk_remove_content_error_check' );
    #173383
    Robkk
    Moderator

    @mimbelli Here is the list of plugins, these could be about 7 plugins in total if you want to do the free route, or 4 plugins in total if you only want to use BuddyPress and GD bbPress toolbox (paid plugin)

    User signature, hot/new/sticky topics (labels/icons??), post count and join date, visual preview could be possible using a small piece of custom code and using bbPress hooks to display them.

    TKServer
    Participant

    Below is the structure of my local repository. Maybe I’m doing something wrong?
    bbpress svn

    #173377
    elovkoff
    Participant

    Thanks Rob, but I can’t do it for the simple reason I have to explain to users and place the message on the page that says ‘if regular upload doesn’t work, please use the inline one’.
    Ideally just need to know how to lift the restrictions so I would be able to click on the upload button and upload the image even if there is no text in the bbpress text field.

    Thanks.
    Elijah.

Viewing 25 results - 11,876 through 11,900 (of 64,515 total)
Skip to toolbar