Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 13,551 through 13,575 (of 64,515 total)
  • Author
    Search Results
  • #167707
    Robkk
    Moderator

    This fixes the list issue.

    #bbpress-forums li {
        list-style: none !important;
    }

    I created a user called “deleteme” and I see the issue you are talking about.

    Do you have multisite enabled or at least a subsite for testing.

    the wp-login.php page leads to yoursite.com/wordpress/wp-login.php instead of just yoursite.com/wp-login.php.

    Check it out right now to see if I am even a user to just the yoursite.com site. If I am see that I am even have a forum role like participant.

    The redirect to the home page is because of some piece of code in bbPress for the frontend login forms. You can easily fix this by setting it where Admins can go the Admin and other users redirect to the home page using the plugin you have already installed.

    #167700
    Jake Hall
    Participant

    Does it ever get maintained or at the very least, moderated?

    it seems plenty of Plugin developers are almost “gaming the system”, it is already hard enough to attract new people to your plugin before you have developers committing readme changes into the recent stable tag, e.g adding a period/removing a period from the end of a sentence. (which, to those unaware, causes their plugin to shoot to the top of the bbPress plugins list almost as if it has just received an update… wherein fact it hasn’t.)

    Not to mention the amount of plugins that are in no way related to bbPress, yet still use the bbPress tag?

    It doesn’t seem like the plugin guidelines are enforced much either, since every single plugin seems to have a boatload (30+) tags attached some of which aren’t even relevant.

    (And to name and shame, here’s one: https://plugins.trac.wordpress.org/changeset?old_path=%2Flogin-page-styler&old=1263429&new_path=%2Flogin-page-styler&new=1263429&sfp_email=&sfph_mail= – most recent change to the stable tag was to remove a period from the readme… really? Note, this plugin has a free and premium version… I wonder why it is being bumped constantly…)

    It is just frustrating to see this going on in all honesty. The WordPress Plugins page doesn’t suffer from this as it doesn’t display the plugins in a list form.

    #167697
    Robkk
    Moderator

    I think there is an issue with the bbp_make_clickable() function that is causing this especially the part that leads to the function _make_url_clickable_cb() in WordPress.

    bbp_make_clickable() is in

    \bbpress\includes\common\formatting.php

    bbp_make_clickable

    _make_url_clickable_cb() is in

    \wp-includes\formatting.php

    _make_url_clickable_cb()

    Will make a trac ticket once I gather the information to write down.

    #167694
    Robkk
    Moderator

    Does your SEO plugin allow allow you to edit the titles and descriptions of custom post type archives? Most SEO plugins do. And in them you look for forum archive to edit the front page of the forums.

    Here is the bbPress conditionals if you are using something custom.

    bbPress Conditional Tags

    #167693

    In reply to: Version 2.6

    Robkk
    Moderator

    I think it will release when it is finished, so there isn’t exactly an ETA.

    Most of the performance tickets/performance improvements headed into bbPress are definitely holding back the release date, and I always see the devs find new areas to improve performance drastically too and that pushes it back even more.

    #167685
    Robkk
    Moderator

    You can try this instead. This hides the “this forum contains … topics… and” description that is blue on top of forums.

    add_filter( 'bbp_get_single_forum_description', '__return_false' );
    add_filter( 'bbp_get_single_topic_description', '__return_false' );

    You can try this CSS for the reply/topic form text areas.

    #bbpress-forums fieldset.bbp-form textarea {
        border: 1px solid #ccc;
    }

    Anything else you want on this site I am sure there has already been a topic about so searching the forums might be best.

    #167684

    In reply to: New replies first

    Robkk
    Moderator

    @lfeddern

    If I remember correctly I think this allows you sort replies in a topic on a per forum basis.

    https://wordpress.org/plugins/bbpress-sort-topic-replies/

    #167682
    aletarius
    Participant

    I tried plugins and reading other posts on here but nothing seems to work. I’m using the DIVI theme with my bbpress and can’t seem to remove the “Forums” page title. I want to remove the table and take out that gap that is there. It just seems unnecessary. Is there a way of doing this without modifying any crazy files?

    http://orderofthegalacticalliance.ga -click on forums

    #167681
    Robkk
    Moderator

    Closing this in favor of your other topic.

    In the discussions the message does not appear

    #167679
    Robkk
    Moderator

    @casiepa

    I am starting to think that filter may not be the best way to translate content. It was widely used though and was recommend a few times in these forums.

    The dangers of the gettext filter

    While trying to find the bbPress string swap plugin that was a bbPress plugin that use to do this exact thing fine. I came upon this that lead me to find the alternative to the gettext filter and using global $l10n;

    https://github.com/justintadlock/hybrid-core/issues/49

    Here is an example with BuddyPress and I am sure there is a way to make this kind of thing work with bbPress.

    https://bp-tricks.com/coding/string-replacement-hack-core/

    Robkk
    Moderator

    This might be custom development for now. You may need to hire a developer for this type of functionality.

    Here is a guide to help people create custom user roles with custom capabilities.

    Custom Capabilities

    The whole each user gets a private forum thing could be possible in the plugin bbPress Private Groups but I am not entirely sure. Having specific roles have their own forum is possible with the plugin though, a group of users not sure about just 1 specific user to each forum.

    Upgrading the role after they have done something is custom development also.

    #167674

    In reply to: Reply text area

    Robkk
    Moderator

    Does this CSS help any?? If it doesn’t add !important to it.

    #bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {
        max-width: 100%;
        height: auto;
    }
    #167673
    Pascal Casier
    Moderator

    @Robkk

    For this ticket, I have the logic on paper what is needed and part of the code already in one of my projects. But need to finish some stuff for the association first.

    For the participation part, I’m helping in the forum and will stick to that for now. But any bbPress developer can have a look at my code of course to get inspiration 🙂

    But we can have a chat about it, no problem.
    Pascal.

    #167671
    Robkk
    Moderator

    @casiepa

    Any contributions to that ticket would be much appreciated.

    Any other participation in the bbPress project would be much appreciated also.

    Participate & Contribute

    #167670
    Robkk
    Moderator

    @tashmash

    You can also try something like this too.

    #bbpress-forums fieldset.bbp-form textarea, 
    #bbpress-forums fieldset.bbp-form select, 
    #bbpress-forums fieldset.bbp-form input {
        border: 1px solid #ccc;
    }
    #167662

    In reply to: Can I do this?

    Tecca
    Participant
    #167660
    Loc Pham
    Participant

    bbPress currently allow a user to subscribe to topics and forums. I can’t seem to find anyway for a logged-in user to subscribe to an author. Is this something that can be added later?

    There’s a plugin called: “Wp Author Subscribe” but it doesn’t render correctly on TwentyFifteen theme.

    Thanks.

    #167658
    #167657
    Pascal Casier
    Moderator

    Hi,
    Just so you don’t feel lonely, it seems similar to https://bbpress.org/forums/topic/you-must-be-logged-in-to-reply-to-this-topic/ that I’m trying to understand …

    You are not on CloudFare, are you ?

    Pascal.

    #167655

    In reply to: User

    Pascal Casier
    Moderator

    Hola Sole29,

    I must admit I don’t know Private Content, but from what I can read on their website, they have a ‘wordpress user system sync’. This should sync the users to wordpress.
    Once they are wordpress users, you can grant them rights for bbPress.
    That would be my way to go…

    I would propose to check with Private Content, because I fear it has to come from that side.

    Pascal.

    #167651
    mica123
    Participant

    I would like to add that I have just now set up bbpress quickly on another live site hosted by another host to see how it would behave and there were no problems.
    So it looks that the fault is on the server side? If so, how can I persuade the webhost to deal with it in more detail? All they said was that it looks that there is no caching on the server we use.

    #167646

    Topic: User

    in forum Plugins
    Sole29
    Participant

    Wordpress: 4.3
    Theme : Bridge 7.5

    Hi bbPress!
    I have a site with two registration types.
    One for instructors user ( by wordpress registration ) the other for Student users (Private content registration – plugin).

    I would like a forum where only registered user can partecipate.

    There is a problema: The Private Content plugin has a registration that is completely different to the WP login system.

    When I login with studente user I can’t reply or create forums.

    The students users haven’t capabilities…

    what do you recommend ?

    #167644
    stevieg
    Participant

    Hi
    I’m trying to convert a large PHPBB forum to bbpress using the built-in importer. It fails and I’ve been investigating why and looking for a solution. I keep coming up against “it will be fixed in 2.6” but I can’t see any eta for the next version being rolled out. Any update available?

    #167643
    Thibaut Parent
    Participant

    Hello there.

    I want to use conditionnal tags in order to display some details. The main page (frontpage) of the forum uses a WordPress page but doesn’t keep the content nor the details (SEO details such as meta description).

    I want to add some details (content and meta values). I want to make some conditionnal tags and I need to know how I can do.

    I checked this forum and Google to know if I can use, with an if, is_bbpress or is_frontpage, but no answers solved my problem.

    How can I force anything to be displayed where I want in the main page of the forum? Thanks for the help.

    Regards,

    Thibaut.

    #167641
    Pascal Casier
    Moderator

    Hi @devyncjohnson,

    I see nofollow adding for bbpress on the following places:
    – line 344 of wp-content/plugins/bbpress/includes/core/functions.php
    – line 1703 of wp-content/plugins/bbpress/includes/replies/template.php

    Also check:
    – line 298 of wp-content/plugins/bbpress/includes/common/formatting.php

    Maybe you will find what you look for.
    Pascal.

Viewing 25 results - 13,551 through 13,575 (of 64,515 total)
Skip to toolbar