Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 13,451 through 13,475 (of 64,535 total)
  • Author
    Search Results
  • #168067
    Robkk
    Moderator

    Download this bbpress.php file and put it into a child theme and you would get full width forums.

    https://gist.github.com/robkk/20f37b09c57a6d9c1f94

    #168065
    TKServer
    Participant

    After some digging it looks like most of the functions I’m looking to use outside of the bbpress framework are in includes/forums/functions.php and includes/replies/functions.php.

    #168064
    Vintagepornbay
    Participant

    Hi

    http://newslopedy.com/forums/

    Ive created this new forum with bbpress. So its about what we most think and research on the net. The categories are simple.

    Please give your feedbacks.

    #168058
    TKServer
    Participant

    Yes. Outside of the bbpress framework I made a custom page which shows a threaded version of the forum: http://www.utehub.com/forum-threads/.

    I’m adding reply as a modal window in this page, and want to use the bbpress reply DB insert queries for instance. Also will use bbpress new post queries… Sorry it is so hard to explain.

    Basically it’s a bbpress forum view with post and reply functions, but outside of the bbpress framework.

    #168057
    Robkk
    Moderator

    Tell me exactly what you are trying to do. It kind of sounds like you just want to borrow code from bbPress and use it somewhere else.

    Are you trying to create a function that is related to the bbPress plugin and other WordPress pages??

    #168056
    Robkk
    Moderator

    It depends on what you are looking for. There are plugins for all types of different captchas.

    Math Captcha
    Google noCAPTCHA reCAPTCHA
    Honeypot (Hidden FIeld)
    Questions on Registration

    There are various other captchas that are there too.

    https://wordpress.org/plugins/search.php?q=bbpress+captcha

    If you are looking for a plugin that I think is the best out the types that I listed, pick one and I will recommend a plugin that I think is quite good to use in conjunction with bbPress.

    #168055
    Robkk
    Moderator

    Oh yeah no problem.

    Here is a couple things I found when visiting your site.

    The first item in your forum index is a little off because of the bbPress breadcrumbs.

    Adding this CSS will help.

    div.bbp-breadcrumb {
        width: 100%;
    }

    There is an issue with the Freshness column text not really displaying right.

    #bbpress-forums p.bbp-topic-meta {
        text-align: inherit;
    }
    #168054
    Robkk
    Moderator

    1.

    Would a user Login and Registration mechanism created by me for my WordPress site also work for the bbPress forum within that site?

    Yes, bbPress is integrated with WordPress.

    Would a participant-level user logged into my WordPress site be able to see the back-end?

    Yes they can, but they usually can only edit their own profile. Moderators can moderate topics and replies in the backend too. Since their are different roles for WordPress and bbPress, you are able to have more flexibility with how you want to users to contribute to your site.

    Can I restrict him only to viewing the front-end

    You can disallow them from being in the backend by using a plugin like WP Admin No Show

    3

    Would plugins, like ‘Profile Builder‘, for simplifying the creation of WordPress Login and Registration mechanism also work for bbPress?

    It should work fine with bbPress.

    #168051

    In reply to: Translate bbpress

    Robkk
    Moderator

    Might need some help from @netweb since he is part of the polyglots team. I am not that familiar with the translating process yet.

    You may need to make a post on the polygots page to notify them that you have a bbPress project translation and where to submit the translations, I am sure they will be able to help.

    https://make.wordpress.org/polyglots/

    You may be able to just contact your team here to see if they can also help you.

    Contact

    You may have to edit the translations here, and just wait for the team to approve the strings.

    https://translate.wordpress.org/projects/wp-plugins/bbpress/stable/fa/default

    translate.wordpress.org (GlotPress)

    #168050
    #168049
    TKServer
    Participant

    The catch is I’m creating pages outside of the bbpress framework, so will the functions still work?

    Pascal Casier
    Moderator

    @reminisce32
    I fully agree with Robkk. The query should only be used as very last resort. The purge/repair is really doing all the steps one after the other. The query might leave some small traces in your database.


    @hayleyadanner

    Under the green top bar on this page, you will find a grey bar with your login details to the right. On the left of the grey bar you should see ‘bbPress.org’. Hover over it and you should see ‘New topic’.

    Pascal.

    #168042
    Pascal Casier
    Moderator

    Hi,
    If you look for features image, I did not try it myself yet, but somebody seem to has found something:
    https://wordpress.org/support/topic/new-post-featured-image-section-not-showing-after-bbpress-code?replies=2

    Hope it helps.
    Pascal.

    #168040
    Robkk
    Moderator

    It should just be like customizing the bbPress templates, placing it in your theme will replace the plugins bbpress-functions.php file.

    #168037
    intristin
    Participant

    I created a new page, I added the shortcode, I choose the template with no sidebar on the page I created, and bbpress just ignores it completely. I also tried a suggestion in another post about adding code to the style.css but that didn’t work as I was never very good with css. The wordpress theme I am using is called point and can be found here: https://wordpress.org/themes/point/

    If anyone could perhaps nudge me in the correct direction I would appreciate it, thanks.

    #168036

    In reply to: Translate bbpress

    Pascal Casier
    Moderator
    #168035
    Robkk
    Moderator

    You need custom code. This is the custom code you will need to display it in your forums. Place it in your functions.php file, bbpress-functions.php file, or in a functionality plugin.

    function rkk_mentionname_in_bbp() {
        $user = get_userdata( bbp_get_reply_author_id() );
            if ( !empty( $user->user_nicename ) ) {
                $user_nicename = $user->user_nicename;
                echo "@".$user_nicename;
            } 
    }
    
    add_action( 'bbp_theme_after_reply_author_details', 'rkk_mentionname_in_bbp' );
    add_action( 'bbp_theme_after_topic_author_details', 'rkk_mentionname_in_bbp' );
    #168034
    Robkk
    Moderator

    @mei-ling

    Thanks for sharing!!

    This is exactly like what I said earlier. I will need to check this out and see if it needs more improvements in the code, and create a patch for bbPress if in the ticket.

    #168033
    gperez-tl
    Participant

    Hi @robkk. Actually I didn’t check that, sorry. The project is basically a bbpress project. And I had to set it enable all the time in order to develop.

    I asked the IT guy to create a clon of the page in another host and it’s working fine as far as I can see. So, I’d leave this here being a hosting issue.

    Thanks a lot for the replys.

    #168030
    Haamed Hosseini
    Participant

    Hi
    After two months, I have translate bbpress to the Persian language. How can I send it to you to be add in the core of translations?

    i want to be your representative like wp-persian.com for wordpress.org .

    Regards , Hamed .

    #168027
    TKServer
    Participant

    I’m doing that with the template files already, which is great. So do I need to call the bbpress-functions.php file with my custom page or will it load automatically?

    #168020
    Loc Pham
    Participant

    Hello,
    I’m working on an application what communicate to bbPress using RESTful API. I’m struggling to find an equivalent function that would output the nested/threaded topic replies into a data structure such as array or JSON format. I see that bbp_list_replies() does just what I wanted, but rather than putting the result inside a data structure, this function displays the output as HTML data. Is there a function which will accomplish my description above or is this something I’ll have to write up?

    Many thanks.

    #168018
    Drosgrove
    Participant

    Subject says it all!

    #168016
    Robkk
    Moderator

    Inside bbpress/templates/default/bbpress-functions.php

    yes that one.

    You can place a copy of the file right into your child theme and customize it from there.

    You can do the same thing for the other files in bbPress too.

    Theme Compatibility

    #168013
    TKServer
    Participant

    Are you saying that you want to move the bbpress-functions.php file into your theme to make it easier to customize the functions already in the plugin??

    YES @robkk. Just didn’t want to redeclare the functions. Will that be an issue? If I can pull in whole functions.php then a whole new world will open up.

    I see the files
    common/functions.php
    theme/core… Wait a sec I just found it…

    Inside bbpress/templates/default/bbpress-functions.php

    So I just call that from my custom page I guess?


    @casiepa
    yes I do. I’m creating an outside of bbpress page which is a threaded forum view with some extra features. I did not create a forum myself, though the thought crossed my mind until I found bbp.

Viewing 25 results - 13,451 through 13,475 (of 64,535 total)
Skip to toolbar