Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\"'

Viewing 25 results - 9,326 through 9,350 (of 26,880 total)
  • Author
    Search Results
  • #148625

    In reply to: Resizing Avatars

    Rescue Themes
    Participant

    I was able to locate bbp_single_user_details_avatar_size in bbpress/templates/default/bbpress/user-details.php which eventually lead me to the following function that accomplishes what I needed (resizing the avatar):

    
    function my_bbp_change_avatar_size($author_avatar, $topic_id, $size) {
        $author_avatar = '';
        if ($size == 14) {
            $size = 24;
        }
        if ($size == 80) {
            $size = 110;
        }
        $topic_id = bbp_get_topic_id( $topic_id );
        if ( !empty( $topic_id ) ) {
            if ( !bbp_is_topic_anonymous( $topic_id ) ) {
                $author_avatar = get_avatar( bbp_get_topic_author_id( $topic_id ), $size );
            } else {
                $author_avatar = get_avatar( get_post_meta( $topic_id, '_bbp_anonymous_email', true ), $size );
            }
        }
        return $author_avatar;
    }
    
    /* Add priority (default=10) and number of arguments */
    add_filter('bbp_get_topic_author_avatar', 'my_bbp_change_avatar_size', 20, 3);
    add_filter('bbp_get_reply_author_avatar', 'my_bbp_change_avatar_size', 20, 3);
    add_filter('bbp_get_current_user_avatar', 'my_bbp_change_avatar_size', 20, 3);
    

    Increase avatar size in bbpress

    #148613
    Robin W
    Moderator

    ok try

    Deactivate bbpress tweaks
    Dashboard>plugins>bbpress tweaks>deactivate

    Go into widgets
    Dashboard>appearance>widgets

    And look at the bottom of the left hand side. You’ll see an “inactive sidebar”, with your entries on
    Below this is an “inactive widgets”
    Drag all the entries from the inactive sidebar to the inactive widgets area.
    This then allows wordpress to delete the sidebar
    I normally log out and in again at this stage – probably not needed, but I’ve never bothered to check
    Then basically reverse the above
    Re-enable bbpress tweaks
    You see the bbpress sidebar returns
    Drag the entries back from the inactive widgets area to the sidebar

    As soon as you’ve got the site vaguely going again, you need to STOP !!!! YES STOP!!!!!!!!!!

    Then take a breath, and create a test site – you cannot continue to develop your site in live, and you need a child theme. So you’ll need to read.

    Functions files and child themes – explained !


    https://codex.bbpress.org/creating-a-test-site/

    Once you have a test site, you can change things there first and then when you are happy put it into live.

    #148608
    dutchpuzzle
    Participant

    WordPress 3.8.3 running Headway theme 2.0.15
    bbPress Version 2.5.4

    Link: http://www.herefordequestrian.co.uk/forums/

    I tried following your instructions: “In dashboard>pages, go to add new page. Call this ‘Forums’ or whatever you want your menu item to be. Then in the content section, you may want to have some introductory words “welcome to the forum” etc. then add the following bbpress short code [bbp-forum-index]
    Save this page.”……. but it didn’t make any difference, so I deleted the page.

    I can’t work out what template my current pages with sidebar are called.
    I therefore can’t work out how to add the sidebar to the page.
    Can you advise?
    Thanks

    #148601
    Leonyipa
    Participant

    i have participant (bbpress)
    and subscriber (wordpress)

    #148596
    Stephen Edgar
    Keymaster

    What WordPress role does the user have?
    What bbPress role does the user have?

    #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

    #148580
    pazis
    Participant

    Thanks. It was Paid Memberships Pro 1.7.11 causing this.

    https://wordpress.org/support/topic/buddypress-bbpress-conflict-with-paidmembershipspro

    chrissss
    Participant

    I run bbpress 2.54 on wordpress 3.9.1. After activating bbpress I noticed that gallerys inside my blog articles gallery pictures don’t show up anymore. Instead of the pictures I only see a blank line. You can see this here…

    http://linuxundich.de/allgemein/flixtor-popcorn-time-alternative-android-chromecast/

    As soon as I deactivate bbpress the gallerys are back again. Is there a generell problem with gallery plugins and bbpress? Is there a quick way to fix this?

    Thanks for your help!
    Christoph

    #148571

    In reply to: bbPress Mods Wishlist

    Robin W
    Moderator

    yes there’s lots to learn, my css is probably at your php level !

    I found a way to have a search box that is persistent on every level of the bbPress forums. Now I have to get rid of the second search box that is at the top of the forums. I can’t find where that is in the code to remove it.

    You could try just turning off the forum search

    dashboard>settings>forums and look for allow forum wide search

    Is there anyone that comes around regularly that would either donate the time for these couple of tweaks or let me pay them over time?

    you can put an ad on wordpress jobs

    http://jobs.wordpress.net/

    just post it as a project and detail what you want

    But I’d play with the css first, as I think much of what you want is stylable.

    #148567
    Robin W
    Moderator

    no problem, using the wordpress editor will not work, you’ll need to use ftp or cpanel

    see the following

    Functions files and child themes – explained !

    on FTP and notepad++ which will get you the tools.

    then you want to
    ftp the file to your pc
    open it using notepad++
    then save it to your pc as the new filename
    the edit it for the sidebar
    then save it on your pc
    the ftp the file back to your host

    lots to learn, but you’ll find this useful for future as you customise you site

    Stephen Edgar
    Keymaster

    I haven’t used any of those above plugins except BuddyPress of course so I really can’t help you there except to say that ‘bbPress Roles’ are separate to ‘WordPress Roles’ and most likely the ‘Student’ role you refer to above (and the plugins) are all manipulating WordPress’ roles for you and NOT bbPress roles.

    #148559
    Stephen Edgar
    Keymaster

    I have not tried these recently though I still believe both work, that is of course if you want some Ajax topcs bits also 😉

    bbPress – Ajax Replies and bbPress – Ajax Topics

    #148549
    pazis
    Participant

    After upgrading to bbPress 2.5.4, none of my topic contents are being showed anymore! The topic page loads and everything is visible but the topic content and replies! I use WordPress 3.9.1 and here are the list of my active plugins:

    All In One SEO Pack 2.1.7
    BackWPup 3.1.2
    bbPress 2.5.4
    bbPress Enable TinyMCE Visual Tab 1.0.1
    BuddyPress 2.0.1
    Capability Manager Enhanced 1.5.1
    CloudFlare 1.3.14
    Disable Feeds 1.3.1
    Dynamic Widgets 1.5.8
    iQ Block Country 1.1.10
    Membership 3.4.4.1
    myCRED 1.4.7
    Paid Memberships Pro 1.7.11
    Quick Chat 4.13
    Register IP 0.1
    Share Buttons by AddToAny 1.3.3
    Shortcodes Pro 1.1.5
    Shortcodes Ultimate 4.9.0
    Sidebar Login 2.6.0
    Sweet Captcha 3.0.8
    WordPress Google +1 Button – Advanced Plugin, Includes Redirection 1.9
    WordPress Importer 0.6.1
    Wordpress Poll 35.0
    WP-Ban 1.62
    WP Admin No Show 1.4.3
    wpMandrill 1.33
    WP SlimStat 3.6.4

    I tried disabling and enabling bbpress plugin and resubmitting settings, but none fixed the issue. I don’t know how to fix it!

    #148527
    Stephen Edgar
    Keymaster

    Sorry, it’s pretty hard to tell exactly what you mean 🙁

    Could you post some screenshots? That would help with pointers to the issue 🙂

    Also you have a few permalinks ending in -2
    e.g. http://mutriku-gaming.com/wordpress/forums/forum/juegos-2/

    Make sure you do not have any slug conflicts, you might have some pages or forums in the ‘trash’ that you if you empty rhe trash you should again be able to use the link without the -2

    e.g. http://mutriku-gaming.com/wordpress/forums/forum/juegos

    #148525

    In reply to: phpBB Import Error(s)

    Stephen Edgar
    Keymaster

    Forum import – The documentation states that stickies will not be imported, however I after doing the import I have around 20 ‘super-stickies’ which, looking at the old forum, are a mixture of announcements and stickies. I’d rather these weren’t converted to anything, and as far as I’m aware they shouldn’t be (https://bbpress.trac.wordpress.org/ticket/2126)

    The above ticket you reference was the ‘issue’ being created to track the changes and progress of implementing this feature.

    In comment 12 that is where the ticket was to updated to ‘fixed’ and ‘closed’ via changeset r5170. Trac can be a little daunting at first trying to understand everything that goes on in a ticket 😉

    With only your ~20 ‘stcikies’ it shouldn’t take more than a couple of minutes to ‘unstick’ the ones you do not want after your import has finished and the repair tools run.

    I have updated the docs to reflect that also https://codex.bbpress.org/import-forums/phpbb/

    Stickies – is there a way to ignore stickies during the import? They don’t appear to have come through correctly so it would be nice to simply ignore them (as was previously the case).

    How so, could you explaing that a little more please? Do the topics ‘look right’ and are just not ‘stuck’ or something else going on?

    User import – During the import, I (the main WordPress admin user) seem to have had quite a lot of forums, topics and replies linked to my user. I wasn’t a user on the previous phpBB forum at all so I’m not sure why I’ve adopted these posts. Or any posts for that matter.

    If there is a username match the importer will try to match the posts being imported with any current WordPress user, thus if phpBB has a user named ‘admin’ and you use the default the default WordPress username ‘admin’ that will be the cause.

    The best work around for this would be to rename the phpBB username in the database bvefore importing.

    Users – looking at the phpbb data, the amount of imported users seemed to match up, but I wonder if I’ve been assigned posts that were previously changed to the ‘Anonymous User’ that phpBB has at user ID 0… the amount of posts don’t seem to match up with that theory but a ‘majority’ of the posts that have been assigned to me seem to match the logic to an extent (ie, posts that have been moved into a ‘moderators only’ forum for further discussion about actions to be taken).

    You should notice that you now actually have a WordPress username ‘Anonymous’, so any ‘Anonymous’ posts should be attributed to that user.

    Your ‘moderators only’ forum after import you should change the bbPress forum permission to ‘hidden’ and that will make that forum the equiv bbPress ‘moderators only’ forum.

    Repair tools – All the repair tasks seem to work ok, except for two:
    – Recalculate the position of each reply
    – Remap existing users to default forum roles
    These two tasks end up white-screening with no status messages at all.

    What size is the phpBB database your importing? (Approx. Forums, Topics, Posts & Users please 🙂 )

    User Login Conversion – User logins are converted correctly when using the standard wordpress login screen but now when using my custom frontend ajax login – does anyone know if there’s a way to get that to work? A seperate topic has been started about that here: https://bbpress.org/forums/topic/user-login-authentication-migrated-phpbb-users/

    I’ve pretty much still got the same opinion as I wrote last night here.

    User Login – that’s correct – I’m just using the wp-signon method so I guess I’ll need to add some kind of do_action() call or something to trigger the conversion? If you can point me in the right direction, that would be great 🙂

    There is nothing to point you to sorry, when a user logs in for the first time after the import their legacy salt and hash password get’s converted to the native WordPress password format. Without knowing each legacy password their is no way to do this programmatically.

    bbPress’ login forms actually are hooked into the WordPress login forms, so theoretically it shouldn’t be too difficult for either the plugin you are using to add support for bbPress or possibly look for another similar plugin that already supports bbPress.

    Passwords and all their associated algorithms are hard and this an area where I just manage to skate by with the basics, actually doing any of what I mentioned in the previous paragraph is way beyond my skill level and pay grade 😉

    #148506
    penxo
    Participant
    #148503
    penxo
    Participant

    Hi! I have a little problem, my page is http://mutriku-gaming.com/wordpress/forums/ if you enter you will see that name of forums is not a “Foros”(Forums in spanish) is a title of the blog post.

    I have installed a forum-loop.php but I don´t think that’s it.

    Thanks

    #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.

    Robin W
    Moderator

    wordpress is post software and has posts and comments

    bbpress is forum software, so it has forums, topics and replies

    so people will reply to topics, not comment on them !

    so I would

    1. deactivate buddypress
    2. switch to a default theme such as twentytwelve and see if people can now reply to topics, you are only doing this to see if your theme has an issue with replies.
    3. let us know whether you are allowing anonymous posting, or whether you onlt want topics/replies from registered users?

    Also, how do I just let people see the topics and not the forum?

    umm, not sure what you mean, either you have a forum or your have posts and comments, you can’t have forum topics with post comments 🙂

    #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/

    #148490

    In reply to: Edit My Profile link

    Robin W
    Moderator

    Personally I hate the toolbar – it should only be there for admins !

    I switch it off and use a menu item

    Layout and functionality – Examples you can use

    #148483
    Tom Dyer
    Participant

    Hi,

    After reading the importer
    I’ve recently migrated my phpBB forum to bbPress, but I have noted a few issues with the import/repair process. Does anybody have any suggestions as to what’s going wrong with any/all of these:

    Forum import – The documentation states that stickies will not be imported, however I after doing the import I have around 20 ‘super-stickies’ which, looking at the old forum, are a mixture of announcements and stickies. I’d rather these weren’t converted to anything, and as far as I’m aware they shouldn’t be (https://bbpress.trac.wordpress.org/ticket/2126)

    User import – During the import, I (the main WordPress admin user) seem to have had quite a lot of forums, topics and replies linked to my user. I wasn’t a user on the previous phpBB forum at all so I’m not sure why I’ve adopted these posts. Or any posts for that matter.

    Repair tools – All the repair tasks seem to work ok, except for two:
    – Recalculate the position of each reply
    – Remap existing users to default forum roles
    These two tasks end up white-screening with no status messages at all.

    User Login Conversion – User logins are converted correctly when using the standard wordpress login screen but now when using my custom frontend ajax login – does anyone know if there’s a way to get that to work? A seperate topic has been started about that here: http://bbpress.org/forums/topic/user-login-authentication-migrated-phpbb-users/

    Any advice on any of these steps would be very much appreciated.
    Thanks!

    #148482
    dububiscuit
    Participant

    Hi,
    I’m very new to both WordPress and bbPress, so my apologies if this is a very easy problem to resolve!

    Whilst poking about trying figure stuff out in the bbpress/includes/admin/functions.php, I received the following error:

    Parse error: syntax error, unexpected ‘}’ in /home/content/65/5240765/html/wp-content/plugins/bbpress/includes/admin/functions.php on line 303

    I’ve checked through the code to try and find the ‘}’ but couldn’t spot it (there is no line 303 – it only goes up to 294), and tried to fix it by replacing the wrong code with the original code but it still gives the same error. I’m not entirely sure what I’ve done even after extensive google/forum searches, so I’ve copied the code into paste bin in case anyone can help me out.

    http://pastebin.com/X9FsvsR1

    The website doesn’t appear to be broken from the front end in any way, it’s just the back end that’s messed up.

    I’m using WordPress vers 3.9.1 and bbPress vers 2.5.4, the theme is BigFeature.

    Thanks in advance!

    #148465
    K-Path
    Participant

    WordPress 3.9.1
    TwentyTen with some CSS modification
    bbPress 2.5.4

    This what my bbPress looks like now
    http://hcrd.foundation/journal/forums/

    hcrd bbPress screen capture
    This is close to what I want my bbPress installation to look like I didn’t pull the line spaces together in the image.
    http://hcrd.foundation/screen-cap.journal-forum.png

    I may be completely wrong and these settings may all be controlled by the TwentyTen theme and WordPress. In either case I’ll do the work if somebody can just point me to the right information so I can learn.

    bbPress Wishlist

      Make the forum’s Search window persistent, available from within all forums.

      Move the Forum Title and the Search Window so they are parallel and within 20 pixels or less of main menu (white on black menu).

      Make the Categories’ and Forums’ names BOLD and make them 1.00 line or less apart from their descriptions which should NOT be bold.

      Instead of a specific pixel width can the area of the post to the BBS be calibrated in percent or at least be 640px or even better 800px width?

      Finally, why are my category and forum names duplicated?

    #148454
    Stephen Edgar
    Keymaster

    They are separate taxonomies in the WordPress database, with some custom code and templates I am quite sure you could do this.

    Probably a good starting point would be looking at ‘Multiple Taxonomies’ here https://codex.wordpress.org/Function_Reference/WP_Query#Taxonomy_Parameters

Viewing 25 results - 9,326 through 9,350 (of 26,880 total)
Skip to toolbar