Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 2,576 through 2,600 (of 11,571 total)
  • Author
    Search Results
  • Robin W
    Moderator

    suspect it is a theme or plugin issue#

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #177424
    thegarnet
    Participant

    Robkk,

    I am already using
    * WordPress 4.6
    * bbPress 2.5.10
    * BuddyPress 2.6.2

    It seems all these are the latest at this time.

    #177384

    In reply to: SMF to bbpress

    Stephen Edgar
    Keymaster

    Strange, I’ll try to take a look at this next week @moedan9

    When I do look at it though I’ll be using SMF 2.0.11 as it is the latest release.

    #177377
    Robkk
    Moderator

    So you are trying to configure BuddyPress with its own inbuilt bbPress v1 forums? I think the bbPress v1 in BuddyPress (BP Forums) has issues in the last few major version of BuddyPress.

    Why not look into just using the latest version of bbPress v2 and BuddyPress and use BuddyPress’ groups feature with bbPress.

    https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/

    #177329
    senatorman
    Participant

    I understand that there is no support for older versions phpbb 3.0.x and that this feature only have to work with the latest versions. But iám not happy with that.

    I have a huge (+1000K posts) phpbb 3.0.x forum with a lot of extra custom contributions and will stop with phpbb becausse phpbb is not populair anymore. support is bad and there is no evolution.

    To update a huge forum to phpbb3.1 it is a lot of strugling and not easy to do.
    Now i’ve to do it, and hope there are not data lost.

    Is there a old plugin available to import pbp3.0.x with is working fine with huge database?
    The last version of the import has problems and lost the relation between post and owner.

    #177315
    Stephen Edgar
    Keymaster

    Try also having the user flush/clean their browser cache.

    You can also test things by creating a test user yourself and making sure everything works as expected

    #177276
    Robin W
    Moderator

    The two ‘test’ items below are easier, as they just use blockquote so you can add this to your css

    #bbpress-forums blockquote {
      color: green;
    }

    I presume that you don’t want to change the class in the other plugin?

    #177275
    mmirlach
    Participant

    Hi, I’m using bbpress on my upcoming videogame website:
    http://20160719.gaming-universe.de/guf/topic/testtest/#post-6864

    As you can see, the template uses information from the WP theme style.css.
    This is overall a good thing but the blockquote function looks off.
    I’m also using a couple of plugins so I feel that I might be able to change that via a CSS function but don’t understand CSS very well.

    When looking at the code, the blockquote seems to use a specific class from one of my plugins:
    blockquote class=”d4pbbc-quote”

    Can anyone point me to where I can change the CSS for the blockquote attribute?

    Thanks, Matthias

    #177274
    Robin W
    Moderator

    ok, can as a test you try disabling Askimet and seeing if that fixes – I am trying to work out where the problem is occurring.

    Robin W
    Moderator

    ok, I can’t see why it isn’t working, although I still have the top menu as well as the side one in my test site.

    How did you turn off the top menu in your setup? I can’t instantly see how to do that

    auludag
    Participant

    and more info: i am using the latest version of WordPress and bbpress.

    forum link (turkish) http://kadinlarkosku.com/kadinlarkosku-forum/

    Robin W
    Moderator

    Just tested, and it works fine on twentyfourteen on my test site.

    Any chance of a link to your site?

    mlwilkerson
    Participant

    I’m seeing the same thing as originally reported by @mfiguerasma.

    I first noticed it when my non-admin user (TestUser) *suddenly* could no longer see a topic that he had formerly been able to see. In my case, I am using sub-forums. (See: https://bbpress.trac.wordpress.org/ticket/2191#comment:17 )

    I have a BP Group called GroupH.
    The group forum root is a type=category group called “Group Forums”
    Subforum1-GroupH is under the forum “GroupH”.

    GroupH is the group forum, i.e the one you see in a the drop-down in the settings where you select which forum is associated with the BP Group.

    So, it’s:

    Group Forums
    GroupH
    Subforum1-GroupH
    Topic1-Subforum1-GroupH

    All of the forums and subforums have a Visibility setting of Private (in the admin settings screens).

    So Topic1-Subforum1-GroupH was accessible by my TestUser one minute and then wasn’t the next minute. I knew that I hadn’t changed the visibility settings on my forums or anything else, but I realized that what I had done (thinking it was merely “for good measure”) was to run:
    Tools->bbPress->Recalculate private and hidden forums

    I recreated my original scenario, verified that TestUser could access Topic1-Subforum1-GroupH, and then used Updraft to take snapshots of my database before running “Recalculate private and hidden forums” calculate again. Sure enough, after that “repair”, it was broken again.

    So I debugged it. This repair tool kicks off bbp_repair_forum_visibility() which updates two options in the options table:
    _bbp_private_forums
    _bbp_hidden_forums

    These are pre-calculated, cached, lists of forums.

    If the forum_id for GroupH appears in _bbp_hidden_forums, then TestUser won’t be able to access Topic1-Subforum1-GroupH. Before running this “repair”, the forum_id for GroupH does not appear in that list. After the repair it does.

    So, how is the forum_id for GroupH getting into this list of hidden forums when the post_status on the forum is most definitely private? (Verified by looking at its row in the posts table)

    It’s getting there precisely by the means @mfiguerasma showed.

    When the query is being run to get a list of all “hidden” forums, in order to create _bbp_hidden_forums, it invokes the pre_get_posts filter. bbPress uses that filter bbp_pre_get_posts_normalize_forum_visibility() to change the query_vars.

    Notice what’s happening here:

    (1) The WP_Query is saying “I am trying to find a list of *hidden* forums” (I have my own reasons for why I want a list of hidden forums.)

    (2) But bbp_pre_get_posts_normalize_forum_visibility() seems to be second-guessing. I receives query_vars with post_type=hidden, but then the way its logic works is to say: “What are various post statuses that this user has permission to see. Ah, this user can see both hidden and private ones, so I’ll update the query_vars to include post_types of both hidden and private.”

    I think the logic of bbp_pre_get_posts_normalize_forum_visibility() is exactly backwards. It’s trying to include all of the post_types that the user can access. But that’s not why it has been invoked. It’s been invoked in the process of simply creating a list of hidden forums for _bbp_hidden_forums and its messing that up by including the private post_status.

    (3) So what the WP_Query gets back is a list of forum_ids for all hidden *and private* groups. And that’s the list that ultimately gets stored in _bbp_hidden_forums.

    So this “repair” actually breaks my forums.

    If you simply remove this bbPress filter before doing the repair, it seems to produce the correct result. My TestUser can access Topic1-Subforum1-GroupH both before and after the repair when we remove the filter:
    remove_action(‘pre_get_posts’,’bbp_pre_get_posts_normalize_forum_visibility’,4);

    #177189

    In reply to: Errors creating forum

    Robin W
    Moderator

    The second fatal error is related to your plugin social-networks-auto-poster-facebook-twitter-g

    suggest you deactivate this as a test and see if all the errors go away

    then come back

    #177180

    In reply to: return to index

    flashwolf
    Participant

    yes i go back to my theme

    i can’t post a link here for a lot of reason
    first, this web site is adult ( elegant but adult) ( perhaps in private but i prefer to say you before)
    and second to use the forum you must be member and i have block the invitation

    perhaps you can give me an other plug of forum who work with buddypress to do the test
    thx

    #177177

    In reply to: return to index

    Robin W
    Moderator

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and buddypress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #177125
    Stephen Edgar
    Keymaster

    I’d suggest taking this plugin for a test drive

    https://github.com/r-a-y/bbp-quote/blob/master/bbp-quote.php

    subrat4dc
    Participant

    I have again tested and check the sticky and pagination count by keeping sticky and super sticky for newer posts and also repaired the counts, this time i have observed the correct count.

    Now, my question is, is it possible to make the sticky post visible as sticky or super sticky for a particular duration which can be set through admin panel and after completing the duration that particular post with sticky or super sticky type will convert to normal type?

    Need suggestions.

    #177114
    brookeashley
    Participant

    Hi there,
    I am using WordPress 4.6, a Genesis child theme, and the latest BBPress. I have set up BBPress and it’s all working well. The only issue is that when I click on a username in the forum the link doesn’t go to the profile page. It goes to a page with all of that users WordPress posts on it.

    I don’t seem to have a profile page that I have access to anywhere. Do I need to set up a profile plugin of some kind? How do I control what url those links go to?

    Any help would be great!

    Thank you!

    #177101
    maryt66
    Participant

    Thanks all for your answers – very helpful. It looks like you are trying to move towards accessibility. I’ll be happy to help with testing if my client decides to go ahead.

    #177090
    Stephen Edgar
    Keymaster

    Your theme developers will need to be a little more specific than “bbPress code has some problems”.

    If bbPress’ code didn’t change and you updated your theme and now bbPress doesn’t work, then this is not a bPress issue, it is a issue with your theme and what changed in the latest theme update.

    I suggest you contact the theme developers again, link them here to this post of mine, if there is a bbPress issue, I’m happy to work with the theme author to fix bbPress if that is the case.

    Robkk
    Moderator

    Just so you guys know there is a plugin for bbPress that could do what you guys want.

    It is fairly new, so consider testing it out and if you come across any issues contact the developer in their support forum.

    https://wordpress.org/plugins/bbp-anonymous-subscriptions/

    #177081

    In reply to: Super Sticky topics

    crosstherubicon
    Participant

    I am on WP 4.5.3 and the latest version of bbPress, just installed it yesterday

    #177076
    Robin W
    Moderator

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #177073
    greggish
    Participant

    Do any of the mods or developers have an ETA on when v2.6 might reach beta or perhaps latest stable release?

    From the July 13th blog post:

    Speaking of bbPress 2.6, we’re working on refactoring per-forum moderators now, and we’ll have a beta ready for everyone to try shortly!

    bbPress 2.5.10 – Security Release

Viewing 25 results - 2,576 through 2,600 (of 11,571 total)
Skip to toolbar