Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 4,276 through 4,300 (of 26,835 total)
  • Author
    Search Results
  • ganapathi9
    Participant

    Hi all,

    I am aware of this plugin BBPress Topics for Posts : “https://wordpress.org/plugins/bbpress-post-topics/”.

    It creates wordpress posts as topics in BBPress Forum and also posts all the comments of that post as replies to the same topic created in the Forum.

    The problem with this plugin is it replaces the comments in the WP post with a link to the forum topic for further discussion and one cannot comment further.

    Along with the link for discussion, I want the comments to be enabled so a user with no time can just leave a comment and go.

    I read this feature is going to be part of core BBPress 2.6. Could somebody confirm on this?

    Any solutions availabe also, I am ready to pay.

    Regards
    Gana

    #185819

    In reply to: bbPress (Replies)

    Robin W
    Moderator

    fairly major bit of work.

    If you were talking about participants, my private groups plugin has the ability to restrict users down to just posting topics, so you could set up a forum where only topics can be posted.

    Private groups

    But making this a visitor only is an entirely different ballgame.

    #185818

    In reply to: bbPress (Replies)

    Shmoo
    Participant

    Well, if you’re not afraid to dive into the template files you could walk though them and comment-out the parts where the replies get included.

    I this part for example.
    no replies

    But when you start doing this you need to understand how to override bbPress template files by copying them over to your own WordPress theme directory. You can find more about that in the codex.

    It’s just walking through paths and following the hierarchy.

    OF course, back-up and always test this first locally. Never do stuff like this straight on live websites.

    #185815

    In reply to: Profile pic bug?

    Robin W
    Moderator

    Not sure where it is set in your theme, I see the resultant output in a browser inspector.

    If you theme has a custom css area, then put the above in there and play with the settings

    If you don’t then there are several custom css plugins (google) or my style pack plugin has a custom css tab

    bbp style pack

    you may need to put !important after a setting to get it to take eg

    img {
    height: 28px;
    min-width: 0;
    width: 100px !important;
    }

    #185800
    margley
    Participant

    Hi
    Is it possible to limit the WordPress plugin bbpress to a single forum? I want to only have a single forum on my site, where users can create new topics within that forum. I’d like to remove the Forum List page entirely as well.

    I’ve tried putting the shortcode from this post (Restricting bbpress to a single forum) on my individual forum page, but that didn’t seem to work…

    Please let me know your thoughts!

    #185797

    Topic: Bug in bbPress

    in forum Installation
    mwheelermindbox
    Participant

    I am using WordPress 4.8 multisite and noticed a bug in bbPress 2.5.12 and 2.5.13 (possibly older versions as well) with PHP 7.1.6.

    Lines 1798-1805 of includes/forum/functions.php is

    
    // Default to public status
    if (empty( $post_stati ) ) {
    	$post_stati[] = bbp_get_public_status_id();
    
    // Split the status string
    } elseif ( is_string( $post_stati ) ) {
    	$post_stati = explode( ',', $post_stati );
    }
    

    For me $post_stati looks to be an empty string so the if is evaluating to true and the next line is failing with this error:

    Fatal error: Uncaught Error: [] operator not supported for strings in /srv/www/tilth.org/current/web/app/plugins/bbpress/includes/forums/functions.php on line 1800

    Changing line 1799 to:

    
    if (is_array( $post_stati) && empty( $post_stati ) ) {
    

    looks to fix the error.

    Perhaps adding a line inside the conditional of

    
    $post_stati = array();
    

    is a better fix.

    #185792
    hannibalherman
    Participant

    Hi, on my site Greenkeepitsimple.dk the profile pictures are too wide, how do i fix it?
    I use bbPress 2.5.13-6410
    And the newest wordpress version

    Here is a picture of the problem
    PICTURE
    picture

    subhendu77
    Participant

    Hello everyone,

    in my site bbpress multilingual is not working properly. in my site, i use wpml for language dropdown. but in english its not showing the other language name into dropdown, but in dutch language dropdown, english is showing into dropdown. i m giving u the two link.

    http://webdev.wordpress-developer.us/bbq/forums/

    http://webdev.wordpress-developer.us/bbq/nl/forums/

    kindly help me about the issue
    Regards
    Subhendu

    #185784
    Rixter
    Participant

    Thanks for that Robin!
    I love plugins, they make WordPress very rich. But sometimes they interfere with other plugins. So I always try to search for a functionality or easy solution before installing an extra plugin. But I will have a look!

    Is there a way to do this inside bbPress? Or in the ‘reaction’ settings or somewhere else?

    #185775
    Milan Petrovic
    Participant

    bbPress should focus on performance, not features, it has to be flexible to expand and customise, and team working on it needs to be able to maintain the core, not solving theme issues for all possible forum features. It is the same as with WordPress, core features extended by the plugins.

    A lot of forums users need basic features, and they find bbPress easy to setup and use. And, there are a lot of other features added through plugins to extended the bbPress, and users can choose what to install and use.

    If you need more forum features, I can recommend my Toolbox plugin for bbPress: https://plugins.dev4press.com/gd-bbpress-toolbox/ and few more bbPress plugins you can find on my website.

    Regards,
    Milan

    #185774
    Robin W
    Moderator

    my style pack plugin has this feature, along with loads more.

    bbp style pack

    dashboard>settings>bbp style pack>topic/reply form item 6

    #185770

    Topic: Limit in sign ups

    in forum Showcase
    TrustedOrb
    Participant

    Are there any limits on the number of sign ups in forums? Does WordPress limit that either?

    #185749
    Robin W
    Moderator

    my style pack plugin has a topic order tab, which lets you sort by topic date

    bbp style pack

    #185747
    Robin W
    Moderator

    My plugin private groups will let you have public, private and premium forums

    Private groups

    #185738
    willes
    Participant

    Hi,

    I’m trying to import a phpbb forum (3.0.12) to a new bbpress (2.5.13) installation.

    Everything works well, except that I’d like that imported users that exist in the wordpress (4.8) installation are automatically linked to subjects, messages, etc…

    As mention in this post, I could delete “imported_…” accounts and choose the existing users. But I have more than 1100 matches. One by one is just terrible…

    I tried to modify the “bbpress/includes/admin/convert.php” file but with no success.

    Is there any way “automate” this ?
    Thank you.

    #185730
    Pascal Casier
    Moderator

    Hi, do you see the topics in the backend ( /wp-admin/edit.php?post_type=topic ) ? Did you run the repairs (one at a time) from Tools>Forums ( /wp-admin/tools.php?page=bbp-repair ) ?

    If you have run the repairs and still have issues, please give us some info on previous and new site like WordPress version, bbPress version, etc.

    Pascal.

    TrustedOrb
    Participant

    Hi Robin W,

    Will it work on latest WordPress and bbPress versions?

    #185721
    FionaS
    Participant

    Kia ora from New Zealand 🙂
    Just thought I’d let you know that I am also having problems with this since upgrading to PHP 7.1. To trouble-shoot I have changed my theme to the default 2017, I have deactivated all other plugins and instead of just a blank page I now get the HTTP ERROR 500; I had also changed line 1851 (a couple of weeks ago) but that didn’t work either so I was just hoping that the bbPress upgrade to v 2.5.13 would fix this but unfortunately not. I got my host to roll back the PHP upgrade and everything started to work again.
    I am not a PHP programmer so cannot give you all the details that tweichart has.
    Version of WordPress is 4.8 but also had the same problem with the previous version.

    #185711
    MrShawnTierney
    Participant

    Good afternoon BBPress community,

    I’m moving an existing site to a new install, and have successfully exported and imported most of the site.

    But when I get to BBPress I run into a problem importing the Topics. The built-in WordPress importer says it was successful, BUT no topics show up in the forum or in the dashboard.

    Any ideas?

    Is BBPress not compatible with WordPress’s built-in Import and Export routines? This would be quite strange as several free plugins I use work fine, so I’m guessing there is a workaround?

    Thanks in advance for your help,

    Shawn

    #185708
    robotwealth
    Participant

    My users can’t edit forum posts that they’ve posted. When the ‘edit’ link is clicked, users are taken to the text editor, but the text is colored white (and is therefore invisible unless highlighted) and all editing tools are absent, other than ‘Ad media’, which is greyed out.

    I can confirm that the timeout option is set appropriately.

    My website is https://robotwealth.com and I running WordPress v4.8 and bbPress v2.5.13

    Example of an attempt to edit a post below:

    Example post edit attempt

    Any known issues related to this? Anyone else experience something similar?

    subhendu77
    Participant

    Hello everyone,

    in my site bbpress multilingual is not working properly. in my site, i use wpml for language dropdown. but in english its not showing the other language name into dropdown, but in dutch language dropdown, english is showing into dropdown. i m giving u the two link.

    http://webdev.wordpress-developer.us/bbq/forums/

    http://webdev.wordpress-developer.us/bbq/nl/forums/

    kindly help me about the issue
    Regards
    Subhendu

    deserthighway
    Participant

    My database prefix is smf_ I got that from the smf database info on the existing forum

    I also updated to bbPress 2.6 Release Candidate 3 to try that

    still got the warning: WordPress database error: [Unknown character set: ‘utf8mb4’]

    Webface
    Participant

    Hello,

    WordPress version: 4.8 | bbPress version: 2.5.13

    when I try to visit a profile I find myself endig up on the 404 page. It happens with every account but one – mine. Its the oldest account on this installation. But that’s all. I tried it with other Users who got the exact same rights I have and so on but nothing changes.

    I tried:
    – different themes
    – every possible changes in user roles
    – deactivating from plugins

    But the strange and unique thing in my case is that there is one account that isn’t facing any problems.

    I can’t finde a solution. Would be awesome if anybody could help me out with that!

    You can test it here: https://netzwerk-schienenlaerm.de/foren/thema/1-phase-der-oeffentlichkeitsbeteiligung-des-eba-im-rahmen-der-eu-umgebungslaermrichtlinie/

    Thanks!

    Jonas

    bobibrown0
    Participant

    I’ve been searching for an answer, that I couldn’t find here. It was actually quite easy to find the solution by myself. But just in case someone need do to this too, this is how you do it:

    -> Create a new folder named “bbpress” at the root of your wordpress theme:
    /wp-content/themes/YOURTHEMENAME/bbpress/

    -> Find the file named “content-single-forum.php” located here:
    /wp-content/plugins/bbpress/templates/default/bbpress/content-single-forum.php
    and copy into your newly created folder:
    /wp-content/themes/YOURTHEMENAME/bbpress/content-single-forum.php

    Now bbpress will use this file instead, if your “YOURTHEMENAME” is in use.

    -> Open the file under
    /wp-content/themes/YOURTHEMENAME/bbpress/content-single-forum.php
    Go to line 48, and you should find this:
    <?php bbp_get_template_part( 'form', 'topic' ); ?>
    Comment this line this way:
    <?php //bbp_get_template_part( 'form', 'topic' ); ?>

    And you’re done! Easy and clean!

    Of course you might want to add a button to create a new topic.
    You can do it, following these steps:

    https://bbpress.org/forums/topic/how-to-add-new-topic-button/

    #185660
    tweichart
    Participant

    i don’t know, just clicked update in my wordpress installation… https://wordpress.org/plugins/bbpress/ shows 2.5.13 too btw, last updated 13 hours ago

Viewing 25 results - 4,276 through 4,300 (of 26,835 total)
Skip to toolbar