Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 4,476 through 4,500 (of 11,544 total)
  • Author
    Search Results
  • #148602
    Stephen Edgar
    Keymaster

    It might be a cache issue, can you try another browser or flush your browser cache as I can’t reproduce the issue locally on my test site.

    #148594
    Tom Dyer
    Participant

    @robin-w The new test doesn’t appear to have fixed the problem, I still can’t view a topics page without it returning a big white screen… so I guess this suggests that the post__not_in doesn’t make a difference, right?

    #148588

    In reply to: Widget Questions

    Type Historian
    Participant

    I *need* a plug-in for my bbPress-driven forums site that lists/links topics with the most recent replies [Hottest Topics]. For this purpose, I have tried both the “Recent Replies” widget and the “Recent Topics” widget configured to display/link “Topics with Recent Replies” selected from the drop-down menu.

    First I tried the Recent Replies widget. It worked perfectly for several months, successfully weathering upgrades of both WordPress and bbPress to the latest versions. Suddenly [outta Nowhere!], it broke the visitor experience: Content of the main navigation sidebar following the first “hot topic” disappeared, and a second [variable] sidebar disappeared completely.

    Even worse, admin access to replies went nuts [more below]. When I disabled the “Recent Replies” plug-in, the problem disappeared instantly.

    Next I tried some “third-party” plug-ins that either didn’t work or required coding beyond my experience.

    Then I tried the Recent Topics widget configured to list only “topics with recent replies.” This solution worked [with reservations, more below] for several weeks until July 1. Just as suddenly, this choice created some of the same problems experienced with the “Recent Replies” widget.

    So I’m trying the Recent Replies widget again.

    When I use it now, the visitor front-end works as it should.
    However, admin access to replies has the same problems as before:

    The dashboard link to this function is
    http://forums.typeheritage.com/wp-admin/edit.php?post_type=reply

    When I click it, this is what I see:
    https://dl.dropboxusercontent.com/u/78278455/bbPress/Replies-01.png

    Note that the “Filter” button has disappeared. By selecting June 2014 and clicking the “Apply” button instead, I can view all replies PUBLISHED last month.

    What I CANNOT view:

    ALL replies regardless of publication date or status
    Complete lists of replies published in months before June 2014
    Private replies including my own input in progress
    Drafts
    ____

    In terms prioritizing visitor experience vs admin control, it seems safer to use the Recent Topics widget configured to list “Topics With Recent Replies” selected from the drop-down menu. My complaint with this option is that it lists/links to brand-new topics with NO responses.

    Is there a way to tweak either the Recent Replies or Recent Topics With Replies plug-ins to do the job?

    Many thanks for your help, Anna

    #148587
    thecatholicwoman
    Participant

    I was not the one who had installed them but I am pretty sure that the names are login-logout and
    Custom Login Logo. I am thinking that it has to one of them because the admin bar was there and after I deleted them it is on my admin panel on word press but not on the site itself. I will try to find someone to test for me on the user side. Thanks again.

    #148582
    thecatholicwoman
    Participant

    Robin I have a new issue which is not traditionally for this forum so I understand if you say that i I have move it.

    Last night I deleted two plugins. A logo plugin and a log in/log out plugin because it was causing a pop up that people who tested the site did not like. Well for some reason after deleting them when I returned to the site to test it my admin bar was missing. I did some research on that issue and it said to check the footer.php file to make sure that <?php wp_footer(); ?> is right above the body and it is there so I am not sure. I deactivated most of my plugins until I can figure it out but even with everything but bbpress deactivated the admin bar did not come back. Not sure what to do.

    #148579
    Leonyipa
    Participant

    I created a test account and created a topic, he can move the topic too :/

    #148576
    Stephen Edgar
    Keymaster

    WPML make their own ‘bbPress WPM’ plugin, though it is not publicly available.

    You need to ask them really nicely to get a copy ๐Ÿ˜‰

    If you are using the official ‘bbPress WPML’ plugin is it the latest version?

    With all that said though any issues with the ‘bbPress WPML’ plugin need to raised with the WPML support team.

    #148544
    SeeingBlueS2
    Participant

    First issue I ran into is the example at the bottom of this page is no longer valid, but I did find the correct edits.

    Step by step guide to setting up a bbPress forum – part 3

    Second issue I am currently having is I am unable to find out how to change the “New topic” and “Reply To” backgrounds that show up at the bottom forums and topics.

    Lastly(for now) is that I am unable to change the reply header despite having added this to my css.

    #bbpress-forums div.bbp-reply-header {
    background-color: #111111;
    }

    My forums are located here: http://test.greatarchitect.us/forums/

    Thanks for any help.

    DarioZ
    Participant

    Also I would like to know if there is a way to show only the latest…

    #148524
    Stephen Edgar
    Keymaster

    @fasttimes Do you have any custom phpBB custom mods installed that may change some things in the phpBB database? I just tested my phpBB imports and they all worked fine, no errors for ‘reply_to parents’. In fact phpBB does not have ‘threaded replies’ included by default thus the reason I ask.

    dzung
    Participant

    @leonyipa, thanks for that but I’ve done it already. “in bbPress setting, the default role is โ€œParticipant” I meant I set the auto default role to be Participant.

    So here are steps that I do:
    – In stall, WP and Go to Dashboard-Setting-General – Set New User Default Role to “Subcriber”
    – Install bbPress, go to Dashboard – Setting – Forums – Check the option for Auto Role and set it to “Participant”
    – On front end- I create an account for test!

    – In Dashboard – Users List: The Forum Role of the newly created user is “Participant” – The Site Role value is “Participant” which I expect should be “Subcriber”.

    If I un-check/disable the Auto Role in bbPress setting, then when someone create an account the Site Role value of that user would be “none” and the value for Forum Role would still be “Participant” – I don’t know what wrong!

    #148518

    In reply to: How to add a @username

    Robin W
    Moderator

    to do the second you need to put the following in your functions file:

    //take away the role display
    function hide_role ($args) {
    $args['show_role'] = false ;
    Return $args ;
    }
    add_filter ('bbp_before_get_reply_author_link_parse_args', 'hide_role') ;

    this removes the existing text,

    then you’d need to add some image depending on role, so something like

    add_action( 'bbp_theme_after_reply_author_details', 'add_image' );
    function add_image () {
    $role = bbp_get_user_display_role( bbp_get_reply_author_id( $reply_id ) );
    if ($role == 'keymaster') {
    echo "<img src='/snippet_theme/img/error.gif' title='Error' alt='Error' />"; 
    }
    if ($role == 'participant') {
    etc.
    }
    
    

    This is not tested – sorry but limited time !!

    #148517

    In reply to: Descending sort

    Topher Jamero
    Participant

    Using the most recent version, able to order topics by latest posted topic and not by latest topic activity

    bbpress>includes>topics>template : (line)154

    I didn’t remove it but commented it as I don’t know what to replace with the _bbp_last_active_time to achieve ordering by the latest posted topic.

    #148501
    Robin W
    Moderator

    probably a theme or plugin problem

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    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, switch to a default theme such as twentytwelve, and see if this fixes.

    #148499
    Robin W
    Moderator

    I believe this is an issue for anyone since even non-logged-in users would be able to see this topic if they had the URL for it, which could be generated from a sitemap or something โ€“ yet to be confirmed.

    just re-tested this, and no they get a 404 error or whatever page you send then to in the settings

    #148497
    Robin W
    Moderator

    @trymedo – ok try this version, it should determine if it is the resultant list being queried, or the process of getting to the list that is causing issues. Basically it does your suggested post__not_in.

    private groups tom test

    This is only for Tom, and is just a testing version

    latest live version is here

    https://wordpress.org/plugins/bbp-private-groups/

    #148460
    thecatholicwoman
    Participant

    I just changed it back to forums and I tested and it s working still. I appreciate the help.

    #148447
    celtichero
    Participant

    I started a similar topic on wordpress.org – but I wasn’t sure where the best place would be (here I suppose!)

    I’ve done some Googling here, and I’ve found a few topics that apparantly fix this, but…I’m not seeing the same info in my own site (the database info that theyre referring to isnt there..) I’m sure someone will point me to those older posts ๐Ÿ˜›

    So I want to start with a fresh question – I want to start TOTALLY fresh with BBPRess, so I deleted the forums and whatnot and then uninstalled BBPress…later I reinstalled it but on the main dashboard I see this in one of the little info boxes on the right hand side: “Right now in Forums” and then it shows a few forums and topics, etc, that don’t exist…I want to remove those. Is there any way to do that?

    I tried looking in the database through PHPMyAdmin and I don’t see anything named “bb_” to delete, so what’s the next step? :/

    Thanks SO much in advance.

    I’m using the latest version of WP and BBPress, btw and the twenty fourteen theme, if any of that helps.

    #148444
    thecatholicwoman
    Participant

    I downloaded and activated bbp tweaks. Went into the widgets section and dragged items into the side bar and added the requested URLs where needed but the side bar isn’t showing up. I went under bbp tweaks and changed the wrap around to all of the available files by switching and saving and then testing the forum but nothing shows up. The plug in is still currently active.

    #148411
    thecatholicwoman
    Participant

    I am following your advice and reactivating the plugins one by one and testing the forum after each one

    #148396
    thecatholicwoman
    Participant

    I added a test topic and it shows up but the main link for the forum won’t allow me to view it. Thanks again for the help

    #148394
    Robin W
    Moderator

    Ok, you are certainly not stupid, and we’ll work you through to a resolution ๐Ÿ™‚

    ok we have 4 elements in bbpress
    1. A forum that is a type called category – this contains other forums
    2. A forum that is a type called forum – this will contains topics and replies

    These forum types are set in dashboard>forums and on the top right hand side

    3. a topic – this will belong to a forum
    4. a reply – this will belong to a topic

    Can you confirm that you’ve set up a topic in any of the forums.

    If not go into Dashboard>topics>new topic and create a test topic.

    If your forums are all just forums, then without topics, they have nothing to list.

    If you think you have created a topic go into dashboard>topics and see if you can see topics in there, and which forums they belong to

    #148373
    Robin W
    Moderator

    Ok, thanks and yes we can fix that.

    1. the code is missing ‘);’ by mistake, it should read

    function mycustom_breadcrumb_options() {
        // Home - default = true
        $args['include_home']    = false;
        // Forum root - default = true
        $args['include_root']    = false;
        // Current - default = true
        $args['include_current'] = true;
     
        return $args;
    }
     
    add_filter('bbp_before_get_breadcrumb_parse_args', 'mycustom_breadcrumb_options');
    

    The extra ‘);’ is right at the end

    I’ve fixed the documentation

    2. as stated in https://codex.bbpress.org/functions-files-and-child-themes-explained/

    you should not be adding code to the end of a main theme’s functions, but should be creating child theme. By all means leave it there and test that it works, but then create a child theme and move it there or you risk losing the change on an update. I’ll try and make this even clearer in the documentation – it is a first version !

    Hope that helps you, and please come back with any further issues ! ๐Ÿ™‚

    Jamie Marsland
    Participant

    When using shortcodes for topic index the pagination breaks

    Tested on 2 separate sites..the following one with 2014 theme

    http://www.pootle-band.co.uk/support/

    Any ideas?

    Jamie

    #148285
    ajshanahan
    Participant

    Hello all – I know that the issue of user capabilities has been covered before but I’m stuck

    First off:
    http://www.manvfat.com/talk
    WordPress 3.9.1 running BuddyBoss 3.2.0 theme.
    BBPress 2.5.4
    GD BBpress Toolbox 3.1.3

    I have used GD BBpress Toolbox to allow the “Add Media” button to show up for all logged in users. Fine.

    However, the Participant role cannot actually upload an image – it tries to upload gets nearly to the end and then throws an error message:

    “An error occured in the upload. Please try again later.”

    After experimentation (I changed one test user to Moderator from Participant – and this allowed the image to be uploaded) it appears to be down to the fact that Participants do not have the capability to upload media.

    Using this plugin http://wordpress.org/plugins/capsman/ I am able to assign that capability to Participants but it still fails. My *guess* is that this is because the capability is not actually being saved, but I don’t know why or how to change it.

    Does anyone know how I can allow the Participant role to upload files – and thus be able to add images inline?

    Many thanks in advance for your help!

Viewing 25 results - 4,476 through 4,500 (of 11,544 total)
Skip to toolbar