Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 12,026 through 12,050 (of 64,454 total)
  • Author
    Search Results
  • #172576
    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’.

    Pascal.

    #172575
    oyegigi
    Participant

    I was wondering if there has been any progress on this? I am having a similar problem (although nothing to do with phpbb import but rather a bbpress import) with the forum repair “recalculate the position of each reply” giving me a blank page.

    #172574
    selenii
    Participant

    How can I allow for all user to upload image in the topics?

    Pascal Casier
    Moderator

    Hi Ollie,

    If you are starting from scratch with this, please consider going to bbPress 2.6. The import capabilities have improved a lot. You can download it from https://bbpress.org/download/
    That version is very near to be launched to stable.

    Pascal.

    LTCOllie
    Participant

    Hi,

    I’ve been attempting to import a vBulletin4.2.1 forum to bbPress 2.5.8 (running WordPress 4.4.2) and initially had database connection issues causing no users/posts/etc being found to covert. Having resolved the problems with these server import parameters I am now receiving an unknown character set error as below:

    Starting Conversion

    No users to convert

    WordPress database error: [Unknown character set: ‘utf8mb4’]
    SELECT convert(user.userid USING “utf8mb4”) AS userid,convert(user.password USING “utf8mb4”) AS password,convert(user.salt USING “utf8mb4”) AS salt,convert(user.username USING “utf8mb4”) AS username,convert(user.email USING “utf8mb4”) AS email,convert(user.homepage USING “utf8mb4”) AS homepage,convert(user.joindate USING “utf8mb4”) AS joindate,convert(user.aim USING “utf8mb4”) AS aim,convert(user.yahoo USING “utf8mb4”) AS yahoo,convert(user.icq USING “utf8mb4”) AS icq,convert(user.msn USING “utf8mb4”) AS msn,convert(user.skype USING “utf8mb4”) AS skype FROM user AS user LIMIT 0, 100

    I’ve been trying the vBulletin importer rather than vBulletin3 having seen this advised elsewhere on this forum. Can anyone provide me with a solution/work around to prevent this issue?

    Thanks for the help!

    Ollie

    hotdogreen
    Participant

    Hello,

    I’m pretty new to the WordPress-World, but it makes a lot of fun.
    I’ve installed bbPress and an additional Social Login Plugin.

    I want to use the bbPress Login Widget but the Social Button appears like this:

    http://forcenews.de/wp-content/uploads/2016/03/fb_error.jpg

    Any Idea how I can change the alignment of the Button/Text?

    (Sorry for my bad english)

    Pascal Casier
    Moderator

    Hi,
    That’s probably coming from a plugin or your theme. Something is interfering.
    Try to switch to a default theme and switch off all plugins except bbPress. Then switch them on one after the after to find the one causing this.

    Pascal.

    #172557
    Pascal Casier
    Moderator

    Hi,
    Not sure if 100% related, but if you know a little bit of coding, you can also check this : https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#6-load%c2%a0the-style-sheet-after-bbpress
    Pascal.

    #172554
    Pascal Casier
    Moderator

    Hi,
    Have you run the plugin mentioned above to clean ? (just install, activate, deactivate)

    Talking SQL: if you had an older version of bbPress installed, the only traces you might still find would be in the wp_options table in the wp_user_roles option_name (replace wp_ with your own prefix of course), but it’s not advisable to modify that manually.

    Let me know,
    Pascal.

    swstarone
    Participant

    I don’t know that from when this error came in my forum
    but I noticed now.

    example url http://www.swstarone-sat.com/forums/users/juliuspex/

    you can notice that there no username or nickname displaying on the page.

    check this screenshot.
    http://www.mediafire.com/convkey/eb5c/inli2aq9h3i10nmzg.jpg

    #172546
    Stephen Edgar
    Keymaster

    bbPress uses the users username by default, a user can change their own profile to use first/last name if they wish via the “Display name” on the users edit profile screen.

    #172545
    Robin W
    Moderator

    Not one I’ve heard of before

    So if you deactivate bbpress, do the child theme styles come back?

    #172542
    uschesch
    Participant

    After I activated bbPress in my WordPress site, my child theme styles were ignored – and now WordPress is using only the styles in my theme’s original style.css file. How can I ensure that my child theme styles are applied? I am using WordPress 4.4.2, and i installed bbPress 2.5.8.

    Thank you.

    #172532
    Lars Henriksen
    Participant

    Hello,

    I have found a code snippet somewhere, that does a fine job by including forum topics in the ordinary WP search. The only problem is that I have now added some private forums on the site where teachers can share assignments and problem statements for use in class.

    So I would like to exclude private forum topics and replies from search results unless you are logged in as ‘contributor’ and up.

    Does anybody know how to code that?

    My code snippet is here:

    /**
     * Include bbPress 'topic' custom post type in WordPress' search results */
     
    function ntwb_bbp_topic_cpt_search( $topic_search ) {
    	$topic_search['exclude_from_search'] = false;
    	return $topic_search;
    }
    add_filter( 'bbp_register_topic_post_type', 'ntwb_bbp_topic_cpt_search' );
    
    /**
     * Include bbPress 'forum' custom post type in WordPress' search results */
    
    function ntwb_bbp_forum_cpt_search( $forum_search ) {
    	$forum_search['exclude_from_search'] = false;
    	return $forum_search;
    }
    add_filter( 'bbp_register_forum_post_type', 'ntwb_bbp_forum_cpt_search' );
    
    /**
     * Include bbPress 'reply' custom post type in WordPress' search results  */
    
    function ntwb_bbp_reply_cpt_search( $reply_search ) {
    	$reply_search['exclude_from_search'] = false;
    	return $reply_search;
    }
    add_filter( 'bbp_register_reply_post_type', 'ntwb_bbp_reply_cpt_search' );
    
    

    Thanks.

    Current WordPress and bbPress

    Historielaerer.dk (a site for history teachers)

    #172531
    aleahl213
    Participant

    Hello!

    I’m trying to import from my old forum (PHPFox) to bbPress. It worked earlier, the problem was that my computer turned off so the import didn’t finish. So I cleared everything and tried starting it again.
    It starts with “Starting Conversion” and the little loading icon. After about a minute, the loading icon disappears and nothing happens…

    Can someone help me?

    braveheart1980
    Participant

    Hello there!

    We are in the proccess of migrating from a vbulletin v 4.2.3 forum to wordpress and bbpress
    BUT importing results in completely unreadable characters!
    For instance take a look here –> http://www.ninty.gr/home/forums/
    The text is like :
    Καταρχάς, μην είστ”
    The originating vbulletin forum is in Greek (http://www.ninty.gr/content.php) if it means anything btw
    Amy ideas?

    #172524
    Robkk
    Moderator

    @nicolasmahy

    Yeah the responsive styles in bbPress use .bbp-body which is having the issue here. But since you customized and removed the labels in the header of the forums you can try this custom CSS and see if it helps any.

    @media screen and (max-device-width: 480px) {
    #bbpress-forums div.bbp-forum-content, 
    #bbpress-forums div.bbp-topic-content, 
    #bbpress-forums div.bbp-reply-content {
        margin-left: 0px;
        padding: 12px;
    }
    
    #bbpress-forums div.bbp-forum-author,
    #bbpress-forums div.bbp-topic-author,
    #bbpress-forums div.bbp-reply-author {
        float: none;
        text-align: center;
        width: 100%;
    }
    
    #bbpress-forums div.bbp-forum-author a.bbp-author-name, 
    #bbpress-forums div.bbp-topic-author a.bbp-author-name, 
    #bbpress-forums div.bbp-reply-author a.bbp-author-name {
        margin: 0;
        word-break: break-word;
        display: block;
    }
    }
    #172520
    selenii
    Participant

    No, no,

    I try to make some menu that would be on all forum pages. I will make it with the normal forum index that bbpress have on the main page.

    #172519
    Pascal Casier
    Moderator

    Hi,
    What bbPress forum did you create ? So if you edit your forum /wp-admin/edit.php?post_type=forum is the ‘visibility’ under ‘Forum Attributes’ set correctly ? Try to switch it if needed with an ‘update’ in between.
    Pascal.

    #172518
    Pascal Casier
    Moderator

    Hi, I’m sorry but I have no idea what you try to do, but as you talk about forums and subforums without forums, you might mean that you want an extra level ?
    Maybe you look for Categories > Forums > Subforums ?
    Then look at https://codex.bbpress.org/getting-started/configuring-bbpress/creating-content/#creating-a%c2%a0forum

    If not, just come back and explain again.

    Pascal.

    #172517
    Pascal Casier
    Moderator

    Hi,
    Start from the function itself and see how it was done ?
    http://hookr.io/plugins/bbpress/2.5.8/functions/bbp_get_forum_freshness_link/

    Pascal.

    #172516
    angeljs
    Participant

    I’m running a WordPress Multisite install and have bbPress setup on the main site. However, logged-in users can’t access the main forum. Admins and guests can see them, which doesn’t seem to make sense. Users can see group forums, but not the main page, they just get a page not found error. I’ve even tried creating the forums page and adding the shortcodes, but still get the same error.

    New users are supposed to have the participant roll, which I’ve checked. I’ve also tried repairing the forums, but nothing works.

    #172513
    Pascal Casier
    Moderator

    Hi,

    I see a (very) similar request on the buddypress forum. It also seems that BuddyPress updated some days ago (March 2, 2016). Do you think you have these issues since that upgrade ?

    Pascal.

    #172512
    Brovashift
    Participant

    Hi anyone and everyone,

    Im just wondering why bbpress displays participants real name instead of their username by default? I want to change this as I can’t remember ever seeing a site before where you create a username for it not to be used, even this bbpress support forum shows usernames!

    I see topics on this matter going back 4+ years, and still its the same solution, why?

    So why is it that we have to edit code to achieve this? It should at least be a simple edit in the admin area.

    #172509
    amongstlovelythings
    Participant

    Thanks!

    I did deactivate all but bbpress- and the search bar was fixed. I re-enabled them one at a time, and found that BuddyPress was causing the error.

    I then switched to the default theme twentyfifteen, but the search bar completely disappeared when I did that…

    So now I’m back on the Beautiful theme for Genesis.

    Also– FYI, the search bar was working beautifully about 3 or 4 days ago. This is a new problem that just started within the last couple of days.

Viewing 25 results - 12,026 through 12,050 (of 64,454 total)
Skip to toolbar