Robkk (@robkk)

Forum Replies Created

Viewing 25 replies - 1,326 through 1,350 (of 3,784 total)
  • @robkk

    Moderator

    Closing this in favor of your other topic.

    HELP PLEASE NEW TO BBPRESS

    @robkk

    Moderator

    It should work fine in a multisite installation where you have created a subdomain to put your forums on.

    @robkk

    Moderator

    Do you have an SEO plugin?? You can easily change it in some SEO plugins.

    @robkk

    Moderator

    What website field in bbPress, the one in anonymous posting or on their profile??

    In reply to: Can bbPress do this?

    @robkk

    Moderator

    THis is probably possible with a specific conditional and might be custom development for now to create in bbPress. You may need to hire a developer to create this for you.

    @robkk

    Moderator

    1. How can I get people visiting on the website to login in or register and view their profile? Whenever I look at my website in incognito mode, there is no sign up or register button or view profile button.

    You may need to add login or register menu items, or you can use the bbPress login widget and add links to your default WordPress register page or the page you put the [bbp-reigster] shortcode.

    2. If people can register, how can can that registered person create a new topic? I can’t seem to find that tab thing on bbpress on my website.

    What tab thing? just scroll at the bottom of a forum you created and you should see a topic form.

    3. How can I make the forum so that only registered people can reply and non registered people to only look at the forum?

    I think as long as you do not have any private forums or enable anonymous posting you can do this by default.

    4.How can i get registered users to unsubscribe

    You are not really specific on what to subscribe to, but you can unsubscribe to forums and topics by following this guide. You can only unsubscribe to forums and topics if you are already subscribed to them though.

    Subscriptions

    In other words how can i make the forum on my page like the one on bbpress ?

    Hard work and custom development.

    In reply to: How to modify

    @robkk

    Moderator

    Please explain a little more of what you are talking about.

    @robkk

    Moderator

    Try a default theme. All plugins deactivate except only bbPress.

    I have no idea why you think private groups would help users to post, which should be in bbPress by default.

    Make sure you users have the participant role and not something like spectator. You can check their forum roles in Users > All users in the WordPress backend.

    @robkk

    Moderator

    Does what is in this guide help any??

    Creating Content

    @robkk

    Moderator

    You told me how to unsubscribe to a forum, so I presumed you already knew how and were already subscribed to a forum.

    The page I linked you to is a page on your profile where you can manage your subscriptions (if you already have some), but you can also unsubscribe to forums by clicking the unsubscribe link near the breadcrumbs of the single forum.

    By default there should be a link to subscribe to a single forum. The link should be near the breadcrumbs by default and should say Subscribe.

    I used post because I thought people would know what I meant, and also so I did not need to repeat forum and topic again. What I meant is below, I guess.

    For a user to subscribe to a forum or topic, they need to click the link that will usually be at the top of the post (forum or topic, whatever you are trying to subscribe to) that says Subscribe.

    I also thought showing the images showing the blue (its not blue by default, its whatever link color is inherited from your theme) Subscribe link for a single forum and single topic would be clear as day for what I meant.

    @robkk

    Moderator

    @antonhoelstad

    All you had to say was that you did not edit files, if you did not edit any files.

    You did not need to post ALL of the code in the templates that just included any specific keywords to search. If you started fresh from on bbPress then you just posted the default templates.

    Do not post full template code, on this site use soemthing like gist.github so I do not have to scroll through all of that in this topic, or even in the forums search on this site.

    Did you even try putting the templates into a child theme like I said above??

    @robkk

    Moderator

    If it is only 3 moderators then tell the moderators to subscribe to the subforum. They should get notified for any new topics from then on.

    @robkk

    Moderator

    I explain how to here. Simply go to your forum profile and go to subscriptions and hit the red Xs.

    Subscriptions

    @robkk

    Moderator

    yeahhhhh haha 🙂

    @robkk

    Moderator

    Add this custom CSS for it to display in a sort of list.

    #bbpress-forums .bbp-forums-list li {
        display: block;
    }
    In reply to: Importing from WBB4

    @robkk

    Moderator

    @sammmmy

    You can always try hire a developer to do the import for you. It has been 3 months since you first made the topic, and the team has been very busy squashing bugs lately.

    @robkk

    Moderator

    I think this plugin would be better for bbPress in my opinion. It works by setting up the display widget by widget though I think.

    https://wordpress.org/plugins/restrict-widgets/

    @robkk

    Moderator

    Thanks for putting your plugin on the repo 🙂

    If I had to say any more I guess I didn’t really like the colors and design of the table really. I think just using the regular WP List Table would be fine. That is just my opinion though.

    @robkk

    Moderator

    This one is tough but it has to do with using <?php wpautop() ?>. Also know that the user description field is just a field inherited from the WordPress default profile fields.

    https://codex.wordpress.org/Function_Reference/wpautop

    @robkk

    Moderator

    I guess maybe try the conditional that is in this code. 13 is the topics forum id.

    function bbp_forum_thirteens() {
        $topic_id = bbp_get_topic_forum_id();
        
        if ( $topic_id == 13 ) {
            echo '<p>THIS is another test Thirteen</p>';
        }
    }    
        
    add_action( 'bbp_template_before_single_topic', 'bbp_forum_thirteens' );

    @robkk

    Moderator

    It might be better to contact the memberpress plugin support for this.

    @robkk

    Moderator

    closing this in favor of your other topic.

    A single topic forum requiring password

    @robkk

    Moderator

    @gptxffa this fix is in @satrya’s post you can change the conditional in the function to other areas on bbPress.

    In @mvaneijgen’s topic I helped him make it work for his feedback-no-search.php template.

    New Topic Form Shortcode Issue

    @robkk

    Moderator

    Okay I tested it for awhile today, and I got it to work with this.

    function bbp_forum_thirteen() {
        $forum_id = bbp_get_forum_id();
        
        if ( $forum_id == 13 ) {
            echo '<p>THIS IS FORUM Thirteen</p>';
        }
    }    
        
    add_action( 'bbp_template_before_single_forum', 'bbp_forum_thirteen' );

    @robkk

    Moderator

    THat should only be for avatars or gravatars and nothing else. You even see that option under a header tag that says Avatars.

    The only settings bbPress uses in the discussion settings is the Moderation and Blacklisting settings.

    Moderation and BlackListing

    You might need to do some troubleshooting just in case to see what might be causing the issue.

    Troubleshooting

Viewing 25 replies - 1,326 through 1,350 (of 3,784 total)