Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 36,301 through 36,325 (of 64,534 total)
  • Author
    Search Results
  • #107640

    You can report bugs here – http://trac.bbpress.org

    #107701

    bbPress search is not good enough and looking at the results it seems fine, nothing is wrong with it.

    It doesn’t return good results as per your expectations but technically its working fine.

    #107705

    If you are using the new bbPress plugin, then your problem is already solved. Users are registered once and they will work both on your shopping cart plugin & forums.

    #107607

    You can contact me at – http://blog.ashfame.com/contact-ashfame/

    #107634
    hlwinkler
    Participant

    +1

    OreilleMalade
    Participant

    I’m considering to install bbPress 2.0 (revision 3380) and start brand new forums on my site THEN to import my former forum when bbPress 2.0 will be offically released (because I guess the importer will work OK at this moment) :

    will it be possible to import some bbPress 1.0.3 content into an already existing bbPress 2.0 forum ?

    Thanks a lot for your help,

    Laurent

    #39373

    Hi all

    Im using wordpress and have an ecwid shopping cart on my site. I really want to add a bbPress forum on the site & have downloaded the plugin.

    I have a question…as Im a complete novice at all this to be honest! Ive been looking for the answer but cannot find it.

    When users use the store, they need to sign in and create an account. Is there a way of integrating the ecwid registation and the bbPress registration? I dont want them to have to register twice. If they buy something then I want them to have access to the forum and vice versa.

    Is there a way that I can do this?

    Any advice much appreciated.

    Elles

    #107493
    Mike1233
    Member

    i have found a bug or whatever in RC1. In the beta 3 all its okay but in the rc1 i choose a forum when i create a topic.

    in beta the new topic its automatcly in right forum but in rc1 i must choose the right in editor. when i choose not the right the post cam in a complete other and false forum-.

    #107688

    In reply to: [2.0/RC1] My Theme

    ratsoid2
    Participant

    Regarding the first issue, I haven’t looked into that and I don’t recommend changes right now, seeing that the last oficial release is still a beta.

    Regarding the second thing, the same principles apply. You can remove the “tags” field from <your theme>/bbpress/loop-topics.php I think, form-topic.php, form-topic-tag.php, form-topic-split.php, etc. Just look into those.

    But I repeat, you shouldn’t change thse files just yet, seeing that the twenty-ten theme of bbpress is not final. For example I have found this: https://bbpress.org/forums/topic/20rc1-loop-authorphp

    Just stick with CSS right now, even if it’s not the ideal case. Who knows, maybe the final twenty-ten theme won’t use tables, just nice divs with css (one can wonder…). If not, I think I’m gonna convert the whole theme in divs with CSS when the final release will be available.

    If you have any more questions, I will gladly respond.

    #107492

    I’ve encountered a little problem. When adding description to a topic-tag, it looks like the shortcode feature is missing a linebreak :-)

    For instance here: http://voipsnak.dk/ip-telefoni/emne-tag/fritzbox-2

    BingoGuy1
    Member

    I was wondering if there was a function or hook I can use to display the topic & forum description on the forum template in the bbpress loop.

    I’d like visitors to go to the forums page, each kind of forum (e.g, general discussion, image posing, inquiry, help, etc.) in the table has the name, the board description, and then the forum meta, then the user clicks on that, and they’re taken to that subpage with a list of all open topics, each topic has a short 1 or 2 sentence bit of the description right there before you click on it.

    So essentially, I’d like each table row to have a short preview of what the subpage is beneath the given name.

    Is there a function or hook to do this? if not, how else can it be done?

    Thanks.

    ~ Jackson

    #107698
    brook79
    Member

    Hi John,

    Thanks for the reply….thats great, any clue as to when the next release is due??

    Cheers again

    Brook

    #107697

    This should be fixed it the next release.

    #107633
    citizenkeith
    Participant

    +1

    #107427
    slithx0r
    Member

    Glad it worked for you also.

    I think it should be implemented in a different way also.

    I just hacked it together because I dont really know the proper way of getting it to work.

    #39357
    #107426
    pimarts
    Participant

    You sir (?), are a genius!

    Thanks a lot for making this work, going to implement it in the live site right away.

    JJ, any way of implementing this in newer versions of RC? Or maybe fixing it in a different way?

    #107425
    pimarts
    Participant

    Thanks a lot for that reply, going to test it out in my beta enviroment right now ;)

    #107424
    slithx0r
    Member

    I actually joined just to post this exact problem.

    I managed to figure it out after reading this!

    You were right when you suggested it could be to do with the permelinks because I was using the exact same custom structure of “/%category%/%postname%/” and had the same problem.

    The solution is either a)

    Use the default link structure or

    B)

    edit function ‘bbp_get_topic_edit_link’ in file

    wp-content/plugins/bbpress/bbp-includes/bbp-topic-template.php

    with this line of code

    $uri .= ‘?edit=1’;

    just before it returns.

    Then do the same for

    wp-content/plugins/bbpress/bbp-includes/bbp-reply-template.php

    with function ‘bbp_get_reply_edit_link’

    So now the edit url should look like

    http://beta.guildwars2community.com/forums/topic/ranger-pets/?edit=1

    I hope this helps!

    anhpt2882
    Member

    Hi Everyone,

    I am newbie in WP, I have just installed and integrate WPMU3.2.1 and BBPress1.0.x. The steps as bellow:

    – Install WPMU on vitural host: http://wordpress-mu/

    – Install BBPress is subdomian: http://wordpress-mu/forum

    – Config bbpress and wp follow guideline.

    After install completed I test on FF3, everything works well:

    – Login in to wordpress and switch to bbpress: the cookies are sync..

    – Logout from bbpress (also clear auth cookies of wp)

    – Login from bbpress (also sync cookies of WP)

    But I meet one issue on IE(GChrome) brower:

    – When I login on WP and Switch to forum then signle-sign-on work ok. When I click logout on BBpress then It does not work.

    – And I cannot login on BBpress. (cookie is not set)

    After debug I found the cause is the cookies are not set.

    function set_auth_cookie( $user_id, $expiration = 0, $expire = 0, $scheme = ‘auth’ ) of Class WP_Auth. (class.wp_auth.php)

    At line 273 of file class.wp_auth.php

    setcookie( $_cookie, $cookie, $expire, $_cookie, $domain, $secure, true );

    Dedault $domain = ‘.wordpress-mu’: with this value the login does not work on IE.

    when I set $domain = null then the Login work.

    Please help me to solve this issue!

    My english is not good, expect everyone to ignore.

    Thanks & Best regards,

    Pham Tuan Anh

    #39354

    Topic: [2.0/RC1] My Theme

    in forum Themes
    ratsoid2
    Participant

    Hello guys,

    Well, after seeing that the final 2.0 is short to come, I took mathers into my own hands so I started working hard on a theme. With this thread, I am willing to share my knowledge. All I ask is to not waste my time by asking questions that are already answered in these threads:

    http://bbpress.org/forums/topic/bbpress-20-theme-compatibility

    http://bbpress.org/forums/topic/bbpress-20-shortcodes

    So, the site I am referring to is http://futezatorii.ro/ and if you happen to be romanian, LUCKY YOU! If not, Google Translate will help you and so will I because I am better than Google.

    Ok, first off, by clicking on the red button on top (Cont Nou), you will see a beautiful register page. This was done using Register Plus and Lightbox Plus, so having said that… it’s a plus. Also the login form and forgotton my password form are all in there. Did I mention they use BBPress Shortcodes? Well, they do.

    By navigating to the forum ( http://futezatorii.ro/forum/ ) you will see a custom logo for the forum. This was done using conditional tags. Also you will see a different kind of front forums because I thought that if I was going to start a new forum, I mind as well make it NEW! so you don’t see any Freshness and Last Poster. This is an old format and I think it sucks. It may be one of the many reasons that forums are not doing so good in these times. Also, you can see the last replies in the widget.

    Going forward at the topics page ( http://futezatorii.ro/subiect/meme/ ) you can see that the New Topic button (Topic Nou) has a nice sliding effect. Basic jQuery shit, but it looks nice. I figured that having the whole new topic form there is just bleh. The same idea is applied to the “new reply form”.

    On the topics view, there’s nothing much there, but I will say this: I removed the tags (why the hell would someone use tags on a topic? Why complicate a thing so much?) and I also disabled adding favorite topics. The forum is fresh and I didn’t thought it was a good idea. Maybe in the future I will look it up again.

    ONWARDS TO THE PROFILE PAGE!

    My profile is here: http://futezatorii.ro/cont/rats/

    You can see that there are a couple of buttons there… well, I added some new fields with Register Plus and called them in user-details. Thus, if someone adds their G+/fb/tw/yt/www link, a nice button will appear. I thought that having a profile with only the “Created topics” and “Subscribed topics” is boring. Having said that, the “Created topics” and “Subscribed topics” has the same sliding effect as the “New Topic/New Reply” form. Kind of buggy now, but I’m lazy. (* – on the bottom of this post I will like to add something about this particular page).

    Now the profile edit page, that you can see in this screenshot (and only in this screenshot because you are evil): http://i.imm.io/7JFn.png you can see the custom fields I was talking about and the upload avatar thingie. Yes, I got that. I used the User Avatar plugin for WP and it works awesome.

    So that’s basically it (but believed me, I worked for weeks for this forum to be as it is now), but I am looking forward for a few things also:

    – as soon as this is resolved: http://bbpress.org/forums/topic/20rc1-loop-authorphp the commenters links will link to their profile (if they have one, if they don’t, tough luck) and (*) it would be great if there would only be a page for an user’s profile.

    – a proper BB Code plugin

    – fiuguring a way to connect some of the plugins with bbpress like: Pure CSS Emoticons, Lighbox Plus (and I think that’s about it)

    – A SEARCH BOX! Please JJJ, I really need this. I know you are wondering how to implement it, and the answer is simple: make the WP Search Box just search in the forums. Why? Because the blog and the forums are two seperate entitites. If I wish to search for a street, I usee google maps and not google images. Those two shouldn’t be mixed!

    If you need any tips and if I can help in any way, I will surely do so. I did not made this thread to spam or something like that (the site is in romanian, so yeah).

    Sorry for any typos, any non-sense – english isn’t my native language and I’m in a rush.

    P.S. There should be a preview button because I AM NOT SCROLLING UP TO SEE ANY MISTAKES.

    OreilleMalade
    Participant

    Hello,

    I tried today to migrate my bbPress 1.0.3 standalone to bbPress 2.0 (revision 3380) but something went wrong.

    Problem is about the importer.

    I followed all instructions (disabled all plugins in both WordPress and bbPress standalone, switched to twenty-ten theme) and started import.

    I didn’t import users as forum is not integrated with WordPress and it’s a very little forum (about 7 or 8 members and about 1000 topics) but maybe I should.

    Anyway… After 3 or 4 minutes, imports stopped. In fact, import stops every 3 or 4 minutes. Sometimes I got this error message :

    Warning: Invalid argument supplied for foreach() in /homez.131/oreillemh/www/forum/bb-includes/functions.bb-forums.php on line 84

    Everytime I clicked to go and after a few stops I had a look at the result.

    Here it is :

    http://www.imagup.com/data/1126800888.html

    As you can see, topics are imported as forums.

    Moreover, same topics are imported many time.

    As a result, I disabled bbPress 2.0 for the moment.

    Could somebody help me ?

    Best Regards,

    Laurent

    PS : I’m using BuddyPress and I really thought BuddyPress 1.5 would integrate bbPress 2.0… I’m a little bit disappointed but I’m sure it will be for next release, right ? ;-)

    #107632
    OreilleMalade
    Participant

    Count me in too.

    #107631
    Dietos
    Member

    thanks, tntc1978! It would be great, i doubt it’s gonna happen in the near future.

    #39352
    ratsoid2
    Participant

    So, this file is missing. I was trying to get the authors posts on the profile page but I saw that bbPress 2.0 already does that. But not really. Looking through content-single-user.php I noticed something was missing… something like

    bbp_get_template_part( ‘bbpress/user’, ‘posts’ );

    which needs:

    <?php bbp_get_template_part( ‘bbpress/loop’, ‘author’ ); ?>

    but there.s no loop-author.php…

    Can someone help? Am I missing something? Maybe half of my brain?, because I really think there’s a conspiracy here!

Viewing 25 results - 36,301 through 36,325 (of 64,534 total)
Skip to toolbar