Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 35,176 through 35,200 (of 64,534 total)
  • Author
    Search Results
  • #106810
    aarinjac
    Member

    Has anyone figured out how to get back into the admin panel? I tried to import bbPress via the tools menu and immediately got locked out of wordpress. I have no idea how to get back in and I’m freaking out!

    #109047
    Anointed
    Participant

    @jaredatch

    ‘// Limit search to topics/replies

    add_filter(‘get_search_form’, ‘bbpress_search_limit’, 10, 3);

    function bbpress_search_limit($form, $search_text, $button_text) {

    $onfocus = ” onfocus=”if (this.value == ‘$search_text’) {this.value = ”;}””;

    $onblur = ” onblur=”if (this.value == ”) {this.value = ‘$search_text’;}””;

    $bbpress_form = ‘

    <form method=”get” action=”‘ . get_option(‘home’) . ‘/” >

    <input type=”text” value=”‘. $search_text .'” name=”s”‘. $onfocus . $onblur .’ />

    <input type=”hidden” name=”post_type” value=”topics” />

    <input type=”hidden” name=”post_type” value=”replies” />

    <input type=”submit” value=”‘. $button_text .'” />

    </form>

    ‘;

    if (is_post_type_archive( ‘forums’ , ‘topics’ , ‘replies’ ) || is_singular( ‘forums’ , ‘topics’ , ‘replies’ ))

    return $bbpress_form;

    else

    return $form;

    }’

    From the hip… not tested, but I think you get the idea.

    *I am just guessing on the conditionals for returning bbpress_form and probably would rework that portion entirely.

    #109046
    Anointed
    Participant

    I am really curious to hear what the best approach to styling the different types of output is.

    Does anyone have any good examples of a search results page that returns multiple post-types, yet appears proper?

    I usually just use a function to output the post-type in the css class for each item returned and then rely upon the css for custom styling.

    *I’ve also gone the route of using custom templates for each post-type within the search results but that got really tedious very quick.

    #109085
    Anointed
    Participant

    If posts are being effected as well then it is probably nothing to do with bbpress. I tried, but can’t replicate your problem on any of my own installs.

    I would start by deactivating plugins one at a time and checking to see if the problem goes away. If all plugins are deactivated, and it does not work, then try activating the twentyten theme and see if it still happens.

    Hope it helps, and hope you understand that all we can do is guess if we can’t replicate the problem on our own installs.

    #109050
    Anointed
    Participant

    @David Dean

    That’s a pretty neat plugin you built there.

    #109049
    David Dean
    Member

    Let me help get this going by adding what I know from building the bbPress Topics for Posts plugin:

    1) Yes, it works perfectly even without BuddyPress.

    2) Having a post on one site and the forum on another will probably NOT work. Forums and topics are considered posts themselves, and those are per-blog. Anything is possible, but that would be messy.

    5) This isn’t too hard, but takes a little trickery with the bbp_has_replies_query filter. It’s a feature of the plugin if you want to take a look to see how it’s done.

    #109045
    Jaja..
    Member

    Thank you for the link.

    Well it nice to see something turn up, something is always better as: No Results found

    #109044
    WebEndev
    Member

    If you don’t know of a way… it doesn’t exist then :)

    Thanks!

    #109043

    Currently with bbPress there is no way easy do that, unfortunately – at least not that I’m aware of! :P

    #109042
    WebEndev
    Member

    Hi Jared,

    That will definitely help :)

    I was actually referring to a Forum *only* search, and not sight wide using the site search. Most forums have this feature.

    Thanks

    #109041

    Check out http://gist.github.com/1243500

    As mentioned, you are going to have to do some poking around in order for the results to be returned in an orderly fashion :)

    #107572
    fpons
    Member

    Hi,

    A newer update for bbpress-2.0 has been made, including some bad translation reported.

    Regards, François.

    #109257
    master5o1
    Participant

    Perhaps copy the css file from the bbPress folder and put include it at the bottom of your theme’s css file.

    I can’t remember how to do css includes -_- Something like..

    @include url(/path/style.css);

    That _might_ restore the styling…slightly…

    #109309
    Jaja..
    Member

    I have no idea how to change that.. (PHP isn’t my game)

    I’ve got the same problem. Thats why I think that the bbPress (team) is still working on it.

    I found this inside: (theme) > bbpress > user-details.php

    <?php if ( bbp_is_user_home() || current_user_can( 'edit_users' ) ) : ?>

    After that comes the Edit link but that PHP IF statement isn’t working correct.

    bbPress is still very Glitchy if you ask me.

    Lots of Glitch i don’t understand.

    #108861
    enderandrew
    Participant

    I was running trunk before the 1.5 release, so that may have changed. It wasn’t on by default for me.

    #108860
    3sixty
    Member

    enderandrew, thanks for the suggestion. Unfortunately, Site Tracking is already “on” by default, so I don’t think that’s the source of the problem (at least in terms of my problem – that bp activity stream is not picking up sitewide forum posts).

    #109306
    Jaja..
    Member

    I think it has something to do with your Permalinks structure of WordPress.

    You show the ID numbers and not real slugs. (names and titles of pages and posts)

    But something else that is eyeing me in this bbPress software is that EDIT PROFILE link at the user pages.

    ???

    That edit-link really should only show up if the user is logged in and at his own profile page. Why would you like to show an Edit profile link to everybody else?

    Same as the links that output the Subscribe and Favorite -topics. Not everybody should see what someone else’s Favorite topics are or what topics he-/she has been subscribed too.

    (private info)

    Profile pages should only show, About me, Topic replies and Topics started.

    Everything else should be hidden and only visible to the user of the ID.

    #108859
    enderandrew
    Participant

    An important step is that in the Buddypress components you need to turn on this option:

    Site Tracking: Make BuddyPress aware of new posts and new comments from your site.

    #40124
    Gecks
    Member

    When using internet explorer to view own profile or just view other players profiles it loads up a 404 Error, it works perfectly fine in other browsers i have tested it on other machines and Chrome and firefox work 100% but that dam I.E is causing me alot of hassle.

    Its set up as a wordpress website with bbpress plugin activated any ideas?

    Thanks

    Tom

    #109224
    Ravi
    Participant

    The issue has been solved based on

    Changing default avatar size cropped/used by BuddyPress

    The bbPress avatar has been fetching it from BuddyPress avatar.

    #109040
    Jaja..
    Member

    I would like to know that also..

    Just to test it, maybe i google with Google (site) Search stuff.

    Are there more features that has been disabled because they are still working on them?

    At my forum the Tagged Topics will not get listed by the Tag name when i click on them.

    Lest say i add the word bbPress as a Tag to 5 different topics and after that i click on the Tag ‘bbPress’ is shows ALL topics not only the 5 topics that involve the Tagged (word) ‘bbPress’

    #108076

    I added all missing translations.

    Hopefully the moderator of Glottpress can accept them soon and the files can be integrated into the bbpress-i18n repo of Automattic

    #40123
    demonboy
    Participant

    I have version 2.0 but can’t for the life of me get my theme to be picked up. I have followed the guide here: bbpress.org/forums/topic/bbpress-20-theme-compatibility as best I could but there are some things not well explained. This is what I have done so far:

    1. Copied all the files from /bbpress/bbp-themes/bbp-twentyten/ and placed into the root of my theme (wp-content/themes/mytheme/)

    2. Copied the .js and .css files from the /bbpress/bbp-themes/bbp-twentyten/css/ and /bbpress/bbp-themes/bbp-twentyten/js/ folders into the root of my theme (wp-content/themes/mytheme/)

    3. I also copied the content of style.css from the bbp-twenty-ten theme into my own css file, which also sits in wp-content/themes/mytheme/

    4. I copied the entire contents of functions.php from the bbp-twenty-ten folder to my own theme functions.php, which also sits in the root of my theme folder.

    All that displays is the ‘Forums’ header but no content.

    What am I doing wrong? Have I placed something wrong somewhere? Should I have copied the whole bbp-twentyten folder itself into the root of my theme folder? What is that first page that gets served up when hitting http://www.mywebsite.com/forums/? Is it page-front-forums.php and should that be sitting in the root of my theme as it is currently?

    I’m also confused my the functions.php where it says:

    // Setup the theme path

    $this->dir = $bbp->themes_dir . ‘/bbp-twentyten’;

    // Setup the theme URL

    $this->url = $bbp->themes_url . ‘/bbp-twentyten’;

    Following this, I’ve tried copying bbp-twentyten folder into the root of my theme, but still nothing.

    Yours, quite confused.

    #109287

    In reply to: User Registration

    dmx09
    Participant

    ditto goldmember!

    I found some templates in the plugin folder:

    plugins/bbpress/bbp-themes/bbp-twentyten/

    but – when I copied some of them into my root theme folder & assigned a template name they still don’t display in the template dropdown..

    I’m obviously missing something obvious here!

    #109284

    In reply to: User Registration

    Jaja..
    Member

    You have to create a new Page and select the (User Register) – (User Login) and-/or (User Forgot Pass) page template.

    * You can also find the bbPress Login Widget in your Widgets section for creating a login panel in the sidebar.

Viewing 25 results - 35,176 through 35,200 (of 64,534 total)
Skip to toolbar