Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 3,251 through 3,275 (of 26,835 total)
  • Author
    Search Results
  • Robin W
    Moderator

    ‘users register directly on the site without need to have an underlying account somewhere else’

    If you install bbpress on a wordpress site, then anyone who registers with that site will be a bbpress user. They can then use the forum. They don’t need to be registered ‘somewhere else’ – just on your site.

    You can also allow anonymous posting (but it does tend to get you spammed a lot!)

    w3215
    Participant

    Thank you for your reply.

    Here is the issue: I am considering using bbpress as an important part of a site that anyone can use. Imagine it like stackoverflow, discussion sites run by discourse, or practically any web app–users register directly on the site without need to have an underlying account somewhere else. It seems to me that if someone wanted to build a site like these–entirely separate from a wordpress blog– bbpress would be a good place to start. (Please let me know if you disagree.)

    So I will require a way for anyone who wants to use my site–wordpress user or not–to register and use the site. One of the great things about bbpress is that out of the box it covers so much and it has been around long enough to be thoroughly tested; so I had hoped I could just use bbpress’s registration, without having to configure a separate registration process.

    In particular, I like how bbpress generates a user profile page that summarizes a user’s activity in a simple way.

    Is there a way to allow non-wordpress users to register, while still utilizing bbpress’s tools like its user profile page? Maybe a bbpress plugin?

    I know there are general wordpress plugins that allow registration on the front end by non-wordpress users, like Ultimate Member. I am not familiar with how those could work with bbpress.

    Thanks!

    #198783

    In reply to: Breadcrumb

    Robin W
    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>breadcrumbs and select item 4

    Robin W
    Moderator

    bbpress just uses wordpress registration – so yes a wordpress subscriber account is needed – is there an issue with this ?

    w3215
    Participant

    Using bbpress registration for my forum, can anyone–including people without any wordpress account–register?

    I would assume so and hope so, but I saw that this bbpress-powered forum requires a wordpress account for registration.

    #198768

    Topic: Breadcrumb

    in forum Troubleshooting
    raugul
    Participant

    Hello!

    Help please, I would like to duplicate bread crumbs under forum.
    How do I do this??
    WordPress 5.1 with Woodmart theme.

    To make it so.

    To make it so.

    Thank you very much

    chezsheles
    Participant

    Hi,

    We’ve got a demo set-up running a site that uses both bbpress and memberpress. We’re pretty close to being able to move this to the production site, but in running through what a user/member would be experiencing, we noticed that logged-in users are able to view the forum (we have one forum, many topics) just fine. They/we can click on another user’s name that is linked to their bbpress profile — and we can edit another person’s profile details.

    Memberpress told me to use a rule to restrict access, but I don’t see how to block it unless the Edit portion on a profile page is a specially named post? I’ve tried and don’t seem able to block it. They are unable to tell me what else to do.

    bbPress version 2.5.14
    wordpress version 5.1

    Any help in this matter would be so appreciative.

    #198761
    w3215
    Participant

    Hi. I recently installed BBPress and was surprised the latest version for installation was 2.5.14. I also get a notice that the plugin “has not been tested with your current version of WordPress.”

    Is BBPress being maintained? What is the expected timing for 2.6?

    Performance/speed is important to me, and last I looked into it 2.6 was supposed to be a big improvement.

    #198730
    w3215
    Participant

    Hi. What is the expected timing for 2.6?

    I recently installed BBPress and was surprised the latest version for installation was 2.5.14. I also get a notice that the plugin “has not been tested with your current version of WordPress.”

    Performance/speed is important to me, and last I looked into it 2.6 was supposed to be a big improvement.

    #198688
    Pankaj Bisane
    Participant

    I have two wordpress sites, one with bbpress forum running since 7 years and one is new which is running since 2 years.

    I want to migrate forum from old site to new site. But i have checked that post ids of old forum already present in new wordpress site which may conflict.

    I tried Export import from WP tool but not working as topics and replies and authors are not mapped properly. Also i am not sure if import can update existing posts as forum if post id is matched while import.

    Also tried bbpress import feature but there no way to transfer from bbpress to bbpress

    I don’t want to loos any forum, topic, replies and relationship during import.

    Thanks,
    Pankaj

    #198672
    Robin W
    Moderator

    bbp style pack


    lets you do this

    once activated go to

    dashboard>settings>bbp style pack>Buttons

    Pankaj Bisane
    Participant

    Hi All,

    I am facing an issue while importing bbpreess forum data to another wordpress bbpress forum.

    I have checked that new wordprees setup Post ids are matching with the bbpress forum, topics and replies post ids. So it could lead in conflict.

    Is there best way to migrate forum properly with new post ids for forum, topics and replies with proper relationship/linking of forums, topics and replies.

    Looking for help Urgently !!

    Note: I am using new bbpress Version 2.5.14 and old bbpress version is also 2.5.14

    Thanks,
    Pankaj

    #198635
    Ikenna Duru
    Participant

    Hallo,
    I run https://figeria.com , a forum based on WordPress. but please I need help addding a related forum topic to the forum.
    So if anyone have a plugin that can display “related forum topics” or similar topic for BBPRESS, please kindly share. Thanks in advance!.

    #198598
    Robin W
    Moderator
    #198587
    Robin W
    Moderator

    That looks like an issue with the bbp-messages plugin, which is not part of bbpress, you’ll need to post on their forum

    https://wordpress.org/support/plugin/bbp-messages/

    #198551
    Robin W
    Moderator

    too longer a list for free help from me I’m afraid, but you will probably need my private groups plugin

    Private groups

    briefly – for master think category, then forums as ‘sub forums’ , threads (nested) are in the bbpress plugin, email per forum post – yes the rest is a mixture of easily doable and a some custom work.

    contact me via

    http://www.rewweb.co.uk/contact-me/ if you want further help

    #198550
    Robin W
    Moderator

    bbpress sends an email to the noreply address and bcc’s in the intended recipients.

    2 solutions

    1. my style pack plugin lets you amend the ‘to’ address (see email subscriptions tab), or you can do this with code, and amend it to a real address on your website.

    bbp style pack


    2.switch to individual emails – this plugin does that https://wordpress.org/plugins/asyncronous-bbpress-subscriptions

    #198532

    In reply to: All Forums not showing

    Robin W
    Moderator

    put this in your functions file, or code snippets

    Code Snippets

    //Number of forums per page
    add_filter (‘bbp_before_has_forums_parse_args’, ‘rew_number_of_forums’) ;#

    function rew_number_of_forums ($args) {
    $args[‘posts_per_page’] = 100 ;
    return $args ;
    }

    #198522
    Robin W
    Moderator

    bbpress uses the wordpress moderation and blacklists

    dashboard>settings>discussion

    #198514

    In reply to: increase font size

    Robin W
    Moderator

    or install

    bbp style pack

    #198458

    In reply to: Help with installation

    Robin W
    Moderator
    #198455
    Eupher
    Participant

    Wordpress 5.0.3
    bbpress 2.5.14

    Home

    Some users are able to create topics and posts, and also reply to posts. One user in particular gets the “ERROR: Your topic (or reply, depending) cannot be created at this time.”

    All plugs except the bbpress plugin and the bbpress tweak plugin were deactivated then I logged in under the user’s name. The problem remained.

    The Comment Blacklist under Dashboard\Settings\Discussion is totally blank. No naughty words in there.

    There are no “groups” as such. All users are veterans and members of this organization. No need for additional “groups”.

    I created a dummy account under my wife’s username, email, and a password and that works fine. She can create topics and replies. Other users don’t have an issue.

    I am not able to replicate this problem anywhere – only with the user DickB. (His user name was originally “Dick_Bartlett” but I got rid of the underscore thinking that might be a problem.)

    I have reviewed as many bbpress articles as I could find on this issue.

    I’ve run out of ideas, and there don’t appear to be any more answers to this problem that I’ve been able to find.

    So I’m turning to you experts to figure out how to get this user on track.

    #198454
    peterbergen84
    Participant

    Hi,

    I am new with setting up a forum for wordpress.
    I want to integrate BBPress with my website but i dont know if the theme supports it.

    Anyone who has time to set this up ?

    Thanks

    Peter

    #198451
    Bendis
    Participant

    WordPress Version 4.9.9 bbPress version 2.5.14 Using theme Twenty-Sixteen https://applebranch.org/seminary I have a lot of forums – one for every class I offer in my online school. However on the main page where students access the current forum for their class – it only shows forums through the first forum beginning with R (listed alphabetically). This is a recent development. I have looked at the set ups and settings and cannot find a reason. Is there a limit to the number of forums? If not, how can I get them all to show? Thank you.

    #198450
    Robin W
    Moderator

    I’d suggest you do this as follows:

    there is a ‘hook’ that you show above called ‘<?php do_action( ‘bbp_template_before_single_topic’ ); ?>’

    This tells bbpress to do any action that is added at that point.

    so adding a hook will mean that the function is called at that point.

    The following code should go in your child theme functions file, or use the code snippets plugin

    Code Snippets

    add_action ( 'bbp_template_before_single_topic' , 'rew_back' ); 
    
    function rew_back () {
    	$text = 'click to go back' ;
    	if (bbp_get_topic_forum_id() == '25') $href = home_url( '/forum/domestics/' ) ;
    	if (bbp_get_topic_forum_id() == '33') $href = home_url( '/forum/commercial/' ) ;
    		//where to go if page not there
    	else $href = home_url( '/login/' ) ;
    	echo '<a class="button" href ="'.$href.'">'.$text.'</a>' ;
    }

    so each forum will need a line.

Viewing 25 results - 3,251 through 3,275 (of 26,835 total)
Skip to toolbar