Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 30,001 through 30,025 (of 64,518 total)
  • Author
    Search Results
  • #117476
    ERmito
    Participant

    Pls help pls look on http://www.ermito.eu/spolem/

    I’m did update and all layout destroyed

    I’m using last version bbpress and wordpress
    theme is solutation from paralle

    Plllsss help

    #117473
    fagiano1973
    Participant

    Hy. I DO NOT want to use child theme! i hate it.

    I need to do a little modify to the topic title. Example show it on “bold” style instead of “not bold” style. Yeah i know… when update version i need to repet the css modify or lost it so is better to use child theme… NO THANKS.

    SO… on suorce code of my bbpress (plugin) page i found “<a class="bbp-forum-title" ……"
    GOOD bbp-forum-title is "my man" … the question is WHERE (DEVIL) I FOUN IT?????? IN which
    (cursed) CSS file???

    Thank you.

    PS. BuddyPress 1.6.1 + WordPress 3.4.1 + bbpress (plugin) 2.1.2

    #117472
    Garindan
    Participant

    I can either get the theme/wordpress to allow my page to take precedence, or change the bbpress breadcrumbs ‘root’ to point to my page instead of the bbpress base page.

    Any idea’s how I can do that? Many thanks!

    Melindrea
    Participant

    Sorry, work swallowed my soul (again < .<)

    Alright, the problem is that the id of the primary container (the main content) is "container" on bbpress, and "primary" on your page.

    Take a backup of all the files, change to in the forum pages. In the forum CSS, replace #container with #primary

    That ought to do it, and good luck.

    #117468
    Pedro Maia
    Participant

    I’m looking for this too. I found a shortcode that do this, but I’m not sure if it’s the same of this forum. The shortcode is: [bbp-topic-index]

    #117467

    Topic: Unable To Edit

    in forum Themes
    alihs707
    Participant

    I have Genesis theme, and i used the Genesis tweak for better integration into the theme. Now I want to add a navigation bar just like this install of bbpress where i could show the links, register etc… but cannot get it done. I need help..

    I am using the Twenty Ten theme (bbpress theme)
    enter image description here

    #117466
    Garindan
    Participant

    I have the same problem. The forums base slug is ‘forums’ as default and so is my page, but my custom WP page is not taking precedence. The bbpress one is, which is causing problems as I can’t set page options, sidebar etc etc. Any idea’s?

    jatinsapra
    Member

    I am having same problem and the link @terence.milbourn shared now throws 404 Error. Any help please ?

    #117458
    jurasiks
    Participant

    All links on http://bbpress.org/download/legacy/ are broken.

    #117454
    imjscn
    Participant

    I’ve done the following steps:

    1. Checked Allow BuddyPress Groups to have their own forums  
    2. Created a Group Forum
    3. Selected Group Forum  is the parent for all group forums
    4. In Buddypress,unchecked Discussion Forums component.
    5. In Group / Admim / Forum, created a new forum.
    

    Upon completion of creating a new forum in group, I got redirect to Group Forum directory under bbpress page instead of group Forum tab. Under the group Forum tab, it shows This group does not currently have any forums.
    I need some help to get things set up right. Thanks!

    #117453
    hummvee
    Participant

    bbpress is the best thing, thanks for the open source, free, forums. bbpress underwent complete revamping, have the spam content and users been addressed?
    does akismet help?
    another thing does bbpress build indexes? so that a scan could be run and entries could be somehow be flagged!
    love bbpress, looking forward to some fix for this problem, thanks JJJ, BG and others!

    #117452
    Starejosel
    Participant
    #117451
    jezza101
    Participant

    I looked into this myself, but I couldn’t find enough documentation to get started. I’m the kind of dev who can get stuff to work if given enough time and decent code examples. Hopefully as more bbpress 2.0 plugins are released there will be more to learn from.

    I would agree that this is such a core feature as users surely use this to monitor activity. There is a shortcode which lists out new posts, you can see it on my site here. A list of new posts does go some of the way to help users monitor activity. There is also the RSS feed which is what I use to monitor all posts that are made.

    I wouldn’t want to second guess JJJ but from the gist of his posts I get that he is very pro 3rd party involvement. In a number of cases his response has been to say if you want a feature enough then why not get to work on it and add it (obviously easier said than done as most users don’t have the skills!). Does the fact its commercial make a difference? I don’t know, I shouldn’t think so. Commercial WordPress plugins have been around for a while and are widely used.

    #117449
    counterfoxx
    Participant

    Hi,

    I have installed BBPress, in my current registration page I have the code [bbp-register] which works and lets a user register. However the only fields here are to choose a username and enter email, where an password is automatically sent. What I need is to have an password field which the user enters, rather than having a generated one. I would also like other custom fields such as gender and age.

    The form is located in form-user-register.php

    Its fine to add the extra input boxes here and display, but I don’t know how these would get stored and saved.

    Any help on how to make the custom fields save and which files to look at would be extremely helpful.

    Thanks in advance!

    #117448
    frippen
    Participant

    Versions of WP, BBP and AWPCP?

    Made a clean install of all in their latest releases, and it failed.

    #117446
    Lanod
    Member

    Sounds like the same issue I had – try resetting your permalinks – that worked for me.

    See https://bbpress.org/forums/topic/forum-non-existent/ for more info.

    #117439
    imjscn
    Participant

    Apology if I am spoiling your thread, but I do have a question about bbpress post parent, maybe our question is related to the same answer, so, let me go on… In WP, if we want to find a post parent, we do
    $post=get_post($id)
    $parent_id= $post->post_parent
    In bbpress, there is a fundtion to do the job

    function bbp_get_reply_topic_id( $reply_id = 0 ) {
    
        // Assume there is no topic id
        $topic_id = 0;
    
        // Check that reply_id is valid
        if ( $reply_id = bbp_get_reply_id( $reply_id ) )
    
            // Get topic_id from reply
            if ( $topic_id = get_post_meta( $reply_id, '_bbp_topic_id', true ) )
    
                // Validate the topic_id
                $topic_id = bbp_get_topic_id( $topic_id );
    
        return apply_filters( 'bbp_get_reply_topic_id', (int) $topic_id, $reply_id );
    }
     My question is-- why bbpress does not use WP's post\_parent, instead, it saves parent\_id in child's meta, make no use of native WP post table? The parent may got lost somewhere in the middle of the additional out of system steps.
    
    #117437
    maf2874
    Participant

    hi – using wp 3.3.1 BBP – 2.0.2 i’m running into problems when editing replies. when i save it loses it’s parent association as the content of the TOPIC pulldown field usually says (no topic) –

    enter image description here

    we have many many topics but they dont default when in the edit screen.
    is this a BBPress bug and/or has this been fixed in the newer releases?

    (i believe we lose the original author reference also.)

    thanks!

    #117436
    regiscassidy
    Member

    I’m really surprised no recent plugin exists that will allow users to subscribe to a forum, not just topics. I have a small membership site so email flooding is not really an issue. I want my members to be able to subscribe to a Forum (say called Recipes) so that they will receive an email whenever a new topic is created in that forum. Has anyone out there implemented such a thing?

    I looked into BuddyPress groups, but that’s way more complicated than I need things to be. I want a nice simple bbPress forum w/ the option to subscribe to forums.

    Thanks in advance,
    Regis

    Marj Wyatt
    Member

    forgot to subscribe for follow ups.

    Marj Wyatt
    Member

    I’ve inherited a site that used to run bbpress. Apparently it was overrun with spammers in the 2009 timeframe and, even though the previous admin removed bbpress and stopped using it, there are 36,486 rows in the wp_users table, with only 4.290 that actually have roles on the site. Looking over the users with no roles through wp-admin, I can see these IDs are truly bogus.

    There does not appear to be consistency of meta_keys in wp_usermeta for users with no roles and users WITH roles on the site. With 1,825 pages of users, scrolling through and deleting them that way would/could take hours so I want to write a SQl statement that will drop all users without roles from the database, just to clean things up.

    Has anyone done this before? How can I structure a SQL query that will isolate and remove all IDs and the associated meta data for users with no site role?

    Thank you so much, in advance, for any ideas or suggestions that are helpful.

    I asked the same question at wordpress.org forum and was directed to ask here. The link from that thread is:
    http://wordpress.org/support/topic/removing-bbpress-spam-users-with-no-active-site-role-with-sql

    #117431
    kowalski
    Participant

    i m using both and everything is fine.

    #117429
    kendallewis
    Member

    I have bbpress installed and I have configured the settings. I want it to display on my ‘discussion page’ of my wordpress. How do I get it there?

    #117428
    kendallewis
    Member

    I am trying to do the exact same thing. I have installed bbpress but cannot find where it is. I would like to install it on my “discussion page” of my wordpress. Anyone please help or provide direction to an installation tutorial?

    #117426

    In reply to: I CAN'T START

    kendallewis
    Member

    I am in the same boat…I have installed bbpress but do not know how to get it to display on my “discussion page.” Could someone please help us?

    • This reply was modified 13 years, 8 months ago by kendallewis.
Viewing 25 results - 30,001 through 30,025 (of 64,518 total)
Skip to toolbar