Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 6,151 through 6,175 (of 11,598 total)
  • Author
    Search Results
  • #119253
    jjohns12
    Participant

    Hi, Can you help? In bbpress my favorites link returns page not found. http://www.thsotestsite.dev/members/admin/forums/favorites/ the rest of forum works fine.

    The favorites in BuddyPress work fine http://www.thsotestsite.dev/members/admin/activity/favorites/

    And Yes running both Group and site wide forums and are playing nice together for the most part:)

    WordPress: Current version
    BuddyPress: Current version
    bbPress: Current version
    Theme: Frisco and BuddyPress Default Both have same results
    all running on my dev. server (DesktopServer)

    Is this a bug or config problem?

    can anyone give clue how to fix this?

    Thanks
    James

    Gary3000
    Participant

    I also just noticed that over at http://testbp.org/discussion/ the “Forums” sidebar widget there has an additional 2 columns, “Posts” and “Freshness”. How on Earth does one get these fancier widgets?

    Gary3000
    Participant

    Just as the title says, I’m curious to know how the current main page at bbpress.org/forums/ is set up. Ideally, I’d like to have my forums main page set up in exactly the same fashion.

    Am I correct in assumming that it’s done as a Page (“forums” being the slug) with the bbPress shortcode “[bbp-topic-index]” as its content?

    I notice for Latest Topics it lists 28 topics, however in the bbPress Codex listing of shortcodes, it says that particular shortcode only lists 15 of the most recent topics. How does one go about configuring it to show more (or less) than the default of 15?

    The other thing I’m curious about is how one gets the nicer “Forums” sidebar widget. The one on bbpress.org/forums/ is styled with a header containing “Forum” and “Topics” column headers, and then a striped list of the Forums with the associated topic counts. In the current public version of bbPress (2.1.2), the “Forums” widget only shows a straight, plain list of the Forums — no header/columns, and no topic counts. Is the widget used on bbpress.org/forums/ from the current SVN of bbPress, or was it customized specifically for bbPress?

    #119209
    motionworks
    Participant

    I have an older non-plugin version of bbpress and was wondering how I go about updating it? Is there only a plug-in now? If so how do I transfer from the standalone version to the plug-in version?

    Digital Marketing

    Any and all help is appreciated!

    John.

    #119178
    elpix
    Participant

    Hi all,

    I ask your help beacause I’ve already tried everything that I knew before to make a query work in few seconds

    I’m on BP 1.5.5/

    Before, everything was working well, but one day, access to our forum became very very long (170 s average).
    After many tests, I think that it’s a cache problem.

    Here is two queries that make me think that :

    SELECT t.*, g.id AS object_id, g.name AS object_name, g.slug AS object_slug
    FROM wp_bb_topics AS t
    INNER JOIN wp_bb_posts p ON p.topic_id=t.topic_id AND p.post_time=t.topic_start_time
    JOIN wp_bp_groups AS g
    LEFT JOIN wp_bp_groups_groupmeta AS gm ON g.id = gm.group_id
    WHERE (gm.meta_key = 'forum_id' AND gm.meta_value = t.forum_id) AND g.STATUS = 'public' AND t.topic_status = '0'
    ORDER BY t.topic_time
    LIMIT 20

    And the same without the “LIMIT”

    SELECT t.*, g.id AS object_id, g.name AS object_name, g.slug AS object_slug
    FROM wp_bb_topics AS t
    INNER JOIN wp_bb_posts p ON p.topic_id=t.topic_id AND p.post_time=t.topic_start_time
    JOIN wp_bp_groups AS g
    LEFT JOIN wp_bp_groups_groupmeta AS gm ON g.id = gm.group_id
    WHERE (gm.meta_key = 'forum_id' AND gm.meta_value = t.forum_id) AND g.STATUS = 'public' AND t.topic_status = '0'
    ORDER BY t.topic_time

    The first (with LIMIT) take 150 secondes (At the beginning, it was working well).
    But the second (without LIMIT) takes 1.5 secones !!!!

    When I’m in PHPmyADMIN, the “show full processlist” tell “copy to tmp table” during the 150 secondes.

    So my question is :
    Is there a cache limit I’ve reache with my DB (20.000 topics) ?
    Where I’ve to modified (I think in my.cnf), and what is the value to put (I’ve make a lot of test, without good results)?

    Thank you very much !

    Bye

    #119168
    mighty_fox
    Participant

    Hi,

    I have installed BBPress from http://wordpress.org/extend/plugins/bbpress/
    to the latest version.

    Ideally what I want to do is create custom pages which uses BBPress, an example of doing this I found is http://bbpress.org/forums/topic/heres-how-to-show-bbpress-info-inside-wordpress-without-full-integration/page/2/

    If I create a custom template and page from WordPress BBPress functions do not work. Other forums have mentioned including bb-load.php but from the download link from above there is no bb-load.php in the zip file.

    From looking at the second link there suggests that new tables for BBPress would be in the database, however I have no new tables just standard WordPress ones and BBPress posts stored in wp-Posts

    Is this correct?

    I am trying for example to create a page (customized page) where a user can enter their post and then choose what topic etc. they want to post from a drop down box. However I don’t know how to go about this.

    Thanks in advance.

    #119153
    Cpellow
    Participant

    We are using WordPress 3.4.2 and latest BBpress and Twenty eleven them and got it to look like this on our website: http://scotpcg.org/member-area/forums/

    However, we would like it to look like this: http://www.polyclay.co.uk/
    The different forums nicely displayed with different headers so there is a clear distinction.

    Our forum is for members only – so past the first page a member sign up will show up (which is not active as yet). If you can help us with the lay-out we can create a temporary access.

    Many thanks.
    Chris

    #119146
    wpmhweb
    Participant

    I have a forum with the latest bbPress called “Windows 8” and then when I tried to create a page called “Windows 8” and WordPress saves it a duplicate page, because of the forum with the same name. Is there a way to keep forums slugs away from WordPress?

    Thanks,

    #119119
    Shmoo
    Participant

    @zaerl,

    Thanks for your help,
    I’m going to test it.. just a few minutes.

    #119112
    zaerl
    Participant

    The problem here is that bbPress insert a FORCE INDEX (PRIMARY, post_parent) but WPML uses a JOIN in its tables. You can’t do that when you have a JOIN cause the correct syntax in that particular case is FORCE INDEX FOR JOIN. Try to replace the function “function _bbp_has_replies_where( $where, $query )” in wp-content/plugins/bbpress/bbp-includes/bbp-replay-functions.php” with this: https://gist.github.com/3930162

    Keep in mind that it’s not tested, I haven’t a WPML license. I do not know either if my reasoning makes sense at all.

    #119109

    This is a “quirk” we’ve seen before. If you have a minute or two to watch our latest video, we show you a very simple few steps that should fix this in a jiffy.

    http://labzip.com/the-definitive-guide-to-buddypress-bbpress-configuration/

    Cheers,
    Spence

    #119099
    Shmoo
    Participant

    Update:

    I think it’s very strange we can’t touch the defaul $slug with a custom page template!
    This is totally not WordPress like.

    Now i have to offer my page.php (default page template) to bbPress and make sure when i draft a new page inside my Dashboard i use a different (custom) page template to prevent my lay-out from breaking..

    img default slug

    I tested to following:
    Dashboard > New Page > Name it HELP > pick my custom Page Template with the bbPress forums index inside it > Saved it and it works 100%.

    I don’t know if it’s a bug or glitch but this is totally not the way to do so, because the default slug keeps showing up in the breadcrumbs.

    Hope somebody reads this..
    Thanks,

    #119057
    joshuaslate
    Participant

    Hello! I’m helping a friend with his website. He’s trying to make a community for investors. We’re having trouble with the bbPress forums. You can see that http://investorswap.com/board/forum/general-stock-talk/ works, but if you go up a level to http://investorswap.com/board it is showing the category and boards, but they aren’t clickable. I’ve never used bbPress or BuddyPress before this, so I’m pretty lost. Any help would be very appreciated! This is intended to be a site-wide forum and not group specific.

    Using the latest version of WordPress, bbPress, and BuddyPress!

    Thanks!

    #119036
    htz77
    Participant

    I have a custom WP_Query outside the main loop, in my header.php, and also another one in footer.php. On my Forums List page (the top/base level of bbPress that lists all my Forums), the custom WP_Query in both header.php and footer.php, no longer works. It shows another instance of the bbPress Forums List, instead of showing the correct content (as it does on every other page of my site, including all other bbPress pages). My custom WP_Query is
    $args = array(
    'post_type' => 'page',
    'page_id' => 218
    );
    $the_query = new WP_Query( $args );
    while ( $the_query->have_posts() ) : $the_query->the_post();

    the_content();
    endwhile;
    wp_reset_postdata();

    I also tried get_page, which also didn’t work.
    $page_id = 218;
    $page_data = get_page( $page_id );
    $page_content = apply_filters('the_content', $page_data->post_content);
    echo $page_content;

    I tried using a bbPress ShortCode in a WP-Page called “Forums”, and then also without a page, just using bbPress Permalink “Forums”, without a wp-page and shortcode. Same problem either way.

    Why would bbPress conflict with these core WP functions? And why would it happen ONLY on the Forums List page? I also tested this in TwentyEleven, and the problem is there too.

    #119002

    In reply to: Ask for a plugin

    zaerl
    Participant

    Hi there. The plugin is in advanced state of development. I’m testing it in very large (+10,000 auto-generated topics) env in order to ensure that it will scale well. It will be released in a few day as an alpha release on Github. I can publish it now if you want but I prefer to make some more tests.

    I’m not using ck approach cause it generate problems with very large forum. Main functionalities are:

    1. Users can mark an entire forum as read (use an AJAX call)
    2. Users can mark a single topic as read (use an AJAX call)
    3. Every visited topic is marked “read” when accessed via browser
    4. Custom HTML class for unread topics
    5. Custom prefix for unread forums title (“[unread] ” or similar)
    6. Custom prefix for unread topics title
    7. Template functions for checking the state of current forum/topic

    These are the functionalities of the first soon-to-be alpha. I think that in future release I will add something like: custom loop for unread topic (maybe a separate page), count of unread topics, mark a forum as “always read” and other stuff.

    Who is an adventurous can write me at za@zaerl.com, I will send you back the prototype.

    pshudgins
    Participant

    Hello… using pagelines, and have installed bbpress. Forum seems to be working fine, but the alignment of the header text for the columns… e.g., topic, posts, voices, freshness… is off…not aligned horizontally. If you can let me know how to edit the CSS for this particular piece, I’d really appreciate it. Also, possible to change the column header text? If so, how? THANKS http://www.powelltatewptest.com.php5-22.dfw1-1.websitetestlink.com/?forum=gear-swap Also, seems like the topic title is in the wrong place… should be left-aligned, then “started by” should go underneath.. just like this forum. Thoughts on how to fix?

    • This topic was modified 13 years, 2 months ago by pshudgins.
    • This topic was modified 13 years, 2 months ago by pshudgins.
    #118929

    In reply to: Ask for a plugin

    smiga
    Participant

    zaerl any progress on this? I would be happy to test it as soon something gets released. 😉

    #118924
    nchiari
    Participant

    Hi everyone!

    I’m using bbPress (last version, with lastest WP too in a single site) and have the General Forums activated (not the group ones). I activated the option to use the WP WYSIWYG visual editor for the comments, which had a black background and a white text color. Usually it worked very well, but one day (too far ago), the color of the text changed to gray (check the image below).

    I don’t remember changed anything on the code. Maybe it was a plugin update or something like that, but I couldn’t change it back.

    Thanks!

    Example: http://gameshock.vg/foros/topic/juegos-populares-nacionales-y-peronistas

    enter image description here

    #118919
    tri1vu4
    Participant

    Hi ,
    My website is http://kinhdoanhspa.com/Forums
    But i don\’t how to create slidebar for bbpress page .

    On bbpress ( forum ) page , i need have menu acc ctrol panel – such as : Login wildget ( login form ) if haven\’t login , Menu wildget if logined .
    Menu wildget will have Menu

    Add New Topic

    Edit Profile

    Your Favorites
    I need more wildget slidebar Search content on forums .
    I need more Latest Discussions ( newes topic of forum ) below forum .

    #118914
    blaumond
    Participant

    I have a WP blog for which I needed a forum and bbPress was my choice. However, the WP theme I am using for the blog has a get_posts() query on the sidebar to display the 3 latest blog posts. Now after installing the bbPress it shows only the bbPress forum topics, since that is the latest 3 activity on the site. How do I stop bbPress forums topics form showing up as posts in the sidebar?

    #118901

    In reply to: signup

    sethshoultes
    Participant

    This was a test.

    #118898

    In reply to: Forum Root Page Issues

    David
    Participant

    Apologies; I haven’t had a change to test this yet. Home with two sick kids, then got sick myself. I’m going to try to knock this out either tomorrow or Friday.

    #118867
    ThePhat32
    Participant

    I just changed the theme and it seemed to work with my test account. Seems I will have to talk to the theme makers and see if they can fix the issue. Thanks for the heads up 🙂

    #118861
    creditrepair
    Participant

    I do have another question, however.

    I just put in some test forums and topics.

    When I go to http://www…com/forum nothing is there. It just blank.

    However, if I go to http://www…forum/%5Bname of any forum] it will show that forum.

    Why does the home page of the forum “…/forum/” not show all of the forums in the forum?

    Thanks,

    Robbie

    #118856
    ThePhat32
    Participant

    I am using the latest wordpress and latest bbpress.

    I can recreate it. It was the first thing I did before posting here in fact :P. Being a software dev it was step 1. I created a new user account the same as all my users, I made a post on a forum and also tried replying to 1. I then clicked the edit button, it opened the edit form which showed all of the wordpress posts. When I use my Key Master account, I don’t see this, I am able to edit properly. Same goes for my other admins who have been editing there posts

    • This reply was modified 13 years, 2 months ago by ThePhat32.
Viewing 25 results - 6,151 through 6,175 (of 11,598 total)
Skip to toolbar