Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 25,351 through 25,375 (of 64,518 total)
  • Author
    Search Results
  • #134900
    #134899
    Tecca
    Participant

    I completely agree with you, @nerdenpose. While the two above solutions essentially work, I’d much rather remove it completely from my theme. bbPress seems to be about clean and elegant, so I try to keep it that way by removing features that aren’t needed rather than hiding them.

    Also, don’t forget to remove this line if you don’t want it shown in specific forums as well (to go along with the above post).

    From content-single-forum.php:
    <?php bbp_single_forum_description(); ?>

    Also the “visibility: hidden” solution in the first reply irks me a bit. It works, but instead use “display: none” if you’re looking to remove these bars using CSS.

    #134898
    Fraternity
    Participant

    Just came back to this after a number of months and see there are a few new versions out

    Have group subforums been implemented yet? I couldn’t tell from the release notes.

    Viktor Szépe
    Participant

    once installing https://wordpress.org/plugins/the-events-calendar/
    bbPress appears
    it is not a real solution

    #134893
    kcurlsjr
    Participant

    When I change a group from public to hidden, the related forum topics still populate the forum index for non-group members. However, clicking on the group link results in “page not found.”

    Question: is this a bug inherent to bbPress (i did notice that the recent update mentioned something about hidden groups in the change log)?

    or

    Could this be something wrong with my forum database. I did recent just convert over to bbPress from default BuddyPress forums. I thought everything went smoothly, but I could be wrong.

    #134892
    Type Historian
    Participant

    WP 3.5.1, bbPress 2.3.1
    Suffusion 4.4.6 theme with bbPress plugin and child theme support

    My site has a long-established definition of “participant,” so it will be confusing to use the same term for the forums.

    Is there a way to change the default role to “member”?

    Many thanks for your help, Anna
    http://66.147.244.145/~typeheri/forums/status/ [sandbox]

    #134890

    In reply to: WP – bbP SYNC

    Shmoo
    Participant

    Sorry the link didn’t work for some reason.

    Try this one.
    https://wordpress.org/plugins/bbpress-post-topics/

    #134889

    In reply to: WP – bbP SYNC

    edwardbarker
    Participant

    I’d like to do this to. Which plugin?

    There was a bbpress / wordpress sync plugin for bbperss 1.x

    #134888

    Topic: Private Community

    in forum Plugins
    ChrisOGwynne
    Participant

    Is there a plugin that will totally close off my bbpress forum? If users are logged out they will only be able to access a login page/register page, and nothing more.

    #134887
    HD80
    Participant

    I tried your advice and edit out [<?php get_sidebar(); ?>] from achive-forum.php but side bar is still there.
    I installed Microsoft WebMatrix and starting my own local website. I’ll see what I can do with it 🙂
    Thanks for the advice and hopefully I can figure this out soon.

    #134885
    rossagrant
    Participant

    I’ve been experiencing similar results for a few months now, BUT only on topics with more than a few subscribers.

    It seems that BBPress is waiting for a confirmation that the email notifications have been sent to subscribers BEFORE it releases the rest of the php script and allows the page to refresh for the actual person posting.

    The post is actually posted very quickly if you look at the forum on another browser whilst the browser used to actually post is still processing.

    I’ve set up a TRAC ticket here and have been investigating it for a while.

    https://bbpress.trac.wordpress.org/ticket/2162#comment:8

    I’m wondering if there is a better way to handle the notifications?

    I’m no coder though unfortunately.

    #134884

    In reply to: WP – bbP SYNC

    Shmoo
    Participant

    I think this plugin does what you like but it only works if website + forum are one.

    And they should be, bbPress is a plugin for a reason.

    #134882

    In reply to: Image upload

    Shmoo
    Participant

    Yeah but they don’t wish to be like other forum software I guess.

    bbPress wants to stay very clean, lean en mean I think. They hope somebody will ever make plugins for bbPress to accomplish all those tasks even history has proven Plugins aren’t the best way to go forward.

    Anyway,
    The code-snippet should go in the template that handles the form-stuff.

    Find the next files.
    wp-content / pluings / bbpress / templates / default / bbpress / form-topic.php
    wp-content / plugins / bbpress / templates / default / bbpress / form-reply.php

    Copy & paste ( don’t drag & drop ) both files to your theme folder inside a new fodler called bbpress.
    wp-content / themes / your-theme-name / bbpress / ** paste them here **

    Open the files and search for a line that say:
    <?php bbp_the_content( …. ); ?>

    Line 66 and 92 I think it is.
    Change the code and Save it.

    Refresh the page and you should see a Media upload button above the toolbar.

    #134881

    In reply to: Image upload

    joesed
    Participant

    Hi Shmoo

    Thanks for your reply. If you can let me know where this code should go (i.e. which file and approximate line number), that’d be much appreciated.

    I’m really surprised that bbpress doesn’t have much better image upload functionality. If it did it would be right up there with other forum software. As it is, it seems inferior.

    Once again, thanks

    Joe

    Viktor Szépe
    Participant

    Please help to make these plugins compatible. WPML 2.8.2 and bbPress 2.3.2

    [Sat Jun 08 12:41:04 2013] [error] [client 80.98.70.185] PHP Notice: bbp_setup_current_user was called <strong>incorrectly</strong>. The current user is being initialized without using $wp->init(). Please see <a href="http://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information. (This message was added in version 2.3.) in /home/davidprog/dev/keszul.tk/server/wp-includes/functions.php on line 2959, referer: http://keszul.tk/wp-admin/plugins.php?activate=true&plugin_status=all&paged=1&s=

    wpml forum link

    #134879

    In reply to: bbPress and WPML

    Viktor Szépe
    Participant

    Good morning!

    Seems like WPML 2.8.2 + bbPress 2.3.2 in not compatible
    I even have (someone shared a Dropbox link) bbPress Multilingual 0.9 – it does not help:
    bbPress disappears when WPML is activated.
    Please help!

    #134878
    Shmoo
    Participant

    Well to now what file you have to get isn’t really that difficult, you just need a little understanding of what files will be loaded when view a specific page.

    This is a good sheet to show you the logic, but it can be difficult te read.
    https://codex.wordpress.org/File:Template_Hierarchy.png

    This one explains in my opinion much better whats going.

    The anatomy of a WordPress theme

    But it’s not too difficult, lets say you’re on the homepage of your website.
    Often the index.php is need to start. If you open the index.php you see at the top something like this <?php get_header(); ?> the funny thing about PHP is that you can alsmost read-/understand what it is going to do. Like the code tag above says get_header so on that position it will grab the header.php file and open it. Keep following all those files and you will be okay.
    Think of it as LEGO – building blocks – it needs a few blocks to make a house and a webpage is the house.


    For the forum (bbPress) side I can tell you that the homepage of the forum is the page where it shows all forums & categories. This is called an archive page and not a regular page.php what most people would think when they first start.
    Normally if it’s an archive page WordPress would load the archive.php template but because we have a Post_Type created by bbPress called Forum we can add the Post_Type_Name behind the archive.php – like this: archive-forum.php

    When you copy that archive-forum.php file form your extra’s (plugins) folder to your Theme folder and open it you will again see the <?php get_header(); ?> stuff and all other typically WordPress stuff.

    To remove the sidebar of the main forum-page you just go into that archive-forum.php template and delete the code that called the sidebar: <?php get_sidebar(); ?>
    Just like the header it’s telling you what it does -> GET Sidebar ( load the sidebar files )

    It’s really just trying and not being afraid. Them ore you do it the better you get at it.

    *** Never try to edit files on a working website – online ***

    Install WordPress + your website on your computer locally, get a code editor – edit the files and check if everything is working. When your finished editing and everything is Fonzy cool you can upload and overwrite the files at your online-server.

    You know how I got my start (years ago) while not knowing what files to edit – By just opening some files I thought could be the files I needed. Typing 55555555555 or something else inside the file – Save it – reload the page in the browser and if 55555555555 didn’t show-up on the webpage I knew it wasn’t that template I was looking for and kept searching for the right one.

    Don’t be afraid to make mistakes… You gonna make some trust me, but when you have a back-up file or you can simply undo your edit inside the Code-editor ( CMD + Z ) you’re all fine.

    #134875
    Shmoo
    Participant
    #134873
    joesed
    Participant

    Hi

    In my opinion, one of the most useful aspects of any forum is the ability for users to upload and share images.

    Unless I’m missing something, bbpress doesn’t seem to have particularly good functionality in this regard.

    I notice that there are a couple of plugins that support users uploading images, however they seem to be fairly old and unsupported.

    Is the ability to add images to forum posts using current technology (ajax) likely to be something given attention in future releases of bbpress?

    Many thanks

    Joe

    #134871
    tommysvr
    Participant

    Hi all,

    I have a little issue since bbPress switched to its own user roles. I was previously showing an image under a users avatar based on this role (ie admin, subscriber).

    With the new method, it just shows the bbPress role of participant or key master. This is a problem because my registration forms put the user in WordPress role.

    My question is this: is there a way to output the WordPress role rather than the bbPress role? Here is what I’m using at the moment:

    $role = bbp_get_user_display_role(bbp_get_reply_author_id($reply_id));

    <div class="bbp-reply-author <?php echo $role; ?>">

    Any help is greatly appreciated!

    #134869
    DNBrawler
    Participant

    I need more help with this. Last night I disabled all my plugins, I reinstalled bbpress, noone has had this problem before?

    #134867
    HD80
    Participant

    Thanks Shmoo for all the help. Unfortunately I don’t know which file to copy so to be safe I’ll copy everything to my child theme.
    I’m also trying to remove my main theme’s sidebar for my forum with no success. I’ve read other post and this seems to work:

    body.bbPress #sidebar {display:none;}
    body.bbPress .post {width:100%;}

    I put those on both my bbpress.css and the style.css but it doesn’t seem to work.

    This is my website: http://ps4evolution.com/forums/

    #134861
    Shmoo
    Participant

    It’s been down for maintenance 2 days?
    I can’t visit this site.

    #134859
    Shmoo
    Participant

    Just check at the backend if the forum or topic is Open to new replies, it’s probably Closed.

    bbPress Topic Closed - how to open it

    #134856
    Shmoo
    Participant

    You probably have a misunderstanding of the word Forum and Forums it happens a lot.

    A Forum is a common name for a support forum like we have at WordPress of bbPress or any other website online. They all call the page Forum or Support or Community.
    But a Forum can also be ONE single item like a category inside other Forums. Thats why the landing-page you’re looking for is: yourwebiste.com/forums/ ( list all forums together )

    But you can make your own landing-page by going into WordPress backend and Add a New Page + paste one of those Shortcodes to make it more easy.
    https://codex.bbpress.org/shortcodes/

Viewing 25 results - 25,351 through 25,375 (of 64,518 total)
Skip to toolbar