Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 13,376 through 13,400 (of 64,454 total)
  • Author
    Search Results
  • #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.

    Robkk
    Moderator

    @reminisce32

    Stick with purging the installation there, but it has worked for a user by just using sql code.


    @hayleyadanner

    Go into a single forum by selecting a forum in the forum list in the left sidebar or go to this url and create a topic.

    Create New Topic

    #168008
    intristin
    Participant

    I can’t get this to work. That go in the theme’s stylesheet? I’m still getting the pesky sidebar. I’ve tried everything, read tons of posts, Why isn’t “hide sidebar” a standard option? It’s like going into a coffee shop and them telling me there is no milk or sugar to put in my coffee. lol, sorry for being sarcastic this is just very stressful.

    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. Is that code meant to go in the bbpress css file, that makes no sense to me since it’s a plugin. Maybe it’s the theme I’m using.

    #168007
    RobertFontaine
    Participant

    I am standing up a forum for posting backgammon positions.

    The two commonly used pieces of backgammon software export html board positions
    using a relative path to an images file. i.e
    2O

    How do I make bbpress think that this folder structure exists and point it to a folder with these gifs in it? I have been searching all over the place and haven’t been able to find a clear answer.

    Thanks,
    Robert

    
    
    <!-- Score -->
    
    <strong>Match to 5 points - gnubg 0, Robert 0</strong>
    
    <!-- End Score -->
    
    <!--  Board -->
    
    <table style="page-break-inside: avoid"><tr><th align="left">gnubg</th><th align="right">167</th></tr><tr><td align="center" colspan="2"><img src="../Images/n_high.gif" style="vertical-align: bottom" alt="" /><br />
    <img src="../Images/o_w_0.gif" style="vertical-align: top" alt="" /><img src="../Images/p_up_b_2.gif" style="vertical-align: top" alt="2O" /><img src="../Images/p_ud_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_up_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_ud_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_up_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_ud_w_5.gif" style="vertical-align: top" alt="5X" /><img src="../Images/b_up_0.gif" style="vertical-align: top" alt="" /><img src="../Images/p_up_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_ud_w_3.gif" style="vertical-align: top" alt="3X" /><img src="../Images/p_up_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_ud_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_up_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_ud_b_5.gif" style="vertical-align: top" alt="5O" /><img src="../Images/c_up_0.gif" style="vertical-align: top" alt="" /><br />
    <img src="../Images/b_center.gif" style="vertical-align: top" alt="" /><img src="../Images/c_center.gif" style="vertical-align: top" alt="" /><br />
    <img src="../Images/o_b_0.gif" style="vertical-align: top" alt="" /><img src="../Images/p_dd_w_2.gif" style="vertical-align: top" alt="2X" /><img src="../Images/p_dn_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_dd_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_dn_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_dd_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_dn_b_5.gif" style="vertical-align: top" alt="5O" /><img src="../Images/b_dn_0.gif" style="vertical-align: top" alt="" /><img src="../Images/p_dd_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_dn_b_3.gif" style="vertical-align: top" alt="3O" /><img src="../Images/p_dd_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_dn_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_dd_0.gif" style="vertical-align: top" alt="&nbsp;'" /><img src="../Images/p_dn_w_5.gif" style="vertical-align: top" alt="5X" /><img src="../Images/c_dn_0.gif" style="vertical-align: top" alt="" /><br />
    <img src="../Images/n_low.gif" style="vertical-align: top" alt="" /></td></tr>
    <tr><th align="left">Robert</th><th align="right">167</th><th align="center" colspan="2"></th></tr><tr><td align="center" colspan="2"><span style="font-size: 75%; color: #787878">Position ID: <tt>4HPwATDgc/ABMA</tt> Match ID: <tt>cAmgAAAAAAAA</tt><br /></span></td></tr></table>
    
    <!-- End Board -->
    
    <p>&bull; Robert doubles</p>
    
    <!-- Epilogue -->
    
    <!-- Output generated  by GNU Backgammon 1.04.000-mingw 20141021 (http://www.gnu.org/software/gnubg/)  (HTML Export version 1.235) -->
    #168006
    hayleyadanner
    Participant

    I’m literally crying over here.

    I’ve been trying at this for days. Go here, change this, do that is so vague. Not everyone is a coder.

    I have tried adding this code to css, that template to bbpress files on cpanel

    I just want to be able to READ MY FORUM POSTS.
    The main page is okay. Click on a topic, the whole thing is grey, white/ you can see the writing but its as if there is a white overlay over the whole thing.

    I feel like breaking my computer and screaming as this is really stupid.

    http://www.thebestinformationever.com/forums/topic/curly-hair-help/

    #168003
    Robkk
    Moderator

    @gperez-tl

    Do you only get the logout confirmation nonce when bbPress is activated??

    #167995
    Robkk
    Moderator

    You do not need to put the forum index shortcode in a page. And you can add content above the forum by editing the forum archive template if you copied it in a child theme in a folder called bbpress.

    The actual forum index/root page is the one that the forum list button is redirecting to.

Viewing 25 results - 13,376 through 13,400 (of 64,454 total)
Skip to toolbar