Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 8,201 through 8,225 (of 64,454 total)
  • Author
    Search Results
  • #187260

    In reply to: Forums & Sub Forums

    rogerlridge
    Participant

    Yeah I got it to work thank you, the reason it wasn’t working was because I had a BBPress folder in my main theme folder which was overwriting your plugin’s functions but it’s fixed now thanks again! 😀

    #187256

    In reply to: Forums & Sub Forums

    Robin W
    Moderator

    my plugin should overwrite anything you have done within the bbpress plugins file.

    but of you have amended templates and put these in your theme’s bbpress directory, then these will take preference, so have a look in your theme directory and see if you have any.

    #187252
    melodies
    Participant

    On my forum, the timestamp on the posts are 7 hours in the past.
    When a new post is made, it starts at “7 hours ago” rather than “just now,” “1 minute ago,” etc.

    The general time is set correctly in the WP > Dashboard > settings and all other timestamps displayed across the site are accurate (messages, notifications, etc). Only notifications relating to bbPress are off by 7 hours.

    This same issue can be found in an old thread post (Link below):

    The time zone is off by 7 hours in my bbpress plugin forums

    However, the solution in that post is outdated, since the code layout in has changed, and “line 178 in /wp-content/plugins/bbpress/bbp-includes/bbp-common-functions.php” no longer exists for manual alteration.

    Can you please tell me which file I can edit in bbPress to manually subtract 7 hours from the freshness output timestamp of all future forum posts?

    Thank you.

    #187251

    In reply to: 2 questions

    Robin W
    Moderator

    whilst it is old, I believe it still works fine

    bbPress Moderation

    #187248

    In reply to: 2 questions

    Dave
    Participant

    Along the same lines, does bbPress have an option to hold comments/new topics for approval?

    #187247

    In reply to: Forums & Sub Forums

    rogerlridge
    Participant

    It seems to be exactly what I’m looking for but when I changed it to the other layout, it didn’t change for some reason. Could I have overwritten the settings somehow? Because I have edited the files in the BBPress folder, so is there an action or a hook or a filter that needs to be in place in order for the changes to take effect? Thanks

    #187235

    In reply to: bbpress performance

    https://core.trac.wordpress.org/ticket/41134 seems relevant here.


    @fabian
    If you wanted to take a stab at sprucing bbPress up with its own polyfill for autoload support, I’m happy to help test and implement.

    We should probably open a ticket on our Trac as well.

    #187223
    Robin W
    Moderator

    can’t see that this is anything to do with bbpress – can you explain further

    #187214
    Ilona90
    Participant

    Hello,

    Can somebody please tell me how translation of bbpress works?

    What I did:

    I installed WordPress and set my default language
    I installed bbpress plugin
    I installed Loco translate
    I create the map languages/bbpress on ftp
    I downloaded the .po and .mo and put in the map

    But nothing is working! Can somebody help me please?

    #187213
    Robin W
    Moderator

    just had a quick look at what was in the free version, and looks like the pro version may have what you want – it claims

    Buddpress profile link integration (New in V1.0.4)
    BBpress profile link integration (New in V1.0.4)
    BBpress Online User Statistics (New in V1.0.5)

    maybe worth looking at

    CBX User Online for WordPress

    #187196

    In reply to: bbpress performance

    Fabian
    Participant

    @johnjamesjacoby thats not true, WP has a “polyfill” for autoloading, and actively uses it on every request, even on legacy PHP 5.2. So autoloading is officially supported.

    These are first numbers about the impact of an unconfigured bbPress on a fresh WP server response time:

    PHP 5.6 + opcache : +35 % SRT
    PHP 7.0 + opcache : +28 % SRT
    PHP 7.1 no opcache: +28 % SRT

    As you can see bottleneck is loading and parsing. Note that the speedup of opcache in PHP 7 is about 6x.

    #187169
    Droidism
    Participant

    @rogerlridge you can also see if this plugin does what you want/need; https://wordpress.org/plugins/bbpress-improved-statistics-users-online/

    #187165
    moejonet
    Participant

    I would propose following changes in bbp_update_reply_position in bbpress/replies/functions.php:2128.

    
    function bbp_update_reply_position( $reply_id = 0, $reply_position = 0 ) {
    
    	// Bail if reply_id is empty
    	$reply_id = bbp_get_reply_id( $reply_id );
    	if ( empty( $reply_id ) )
    		return false;
    
    	// If no position was passed, get it from the db and update the menu_order
    	if ( empty( $reply_position ) ) {
    		$reply_position = bbp_get_reply_position_raw( $reply_id, bbp_get_reply_topic_id( $reply_id ) );
    	}
    	
    	$post = get_post($reply_id);
    	
    	if($post->menu_order == $reply_position)
    	    return (int) $reply_position;
    
    	// Update the replies' 'menp_order' with the reply position
    	wp_update_post( array(
    		'ID'         => $reply_id,
    		'menu_order' => $reply_position
    	) );
    
    	return (int) $reply_position;
    }
    
    #187164
    moejonet
    Participant

    There is an infite loop on reply update caused by buddypress activity from bbpress if bbp_thread_replies() is false.

    activity tries to get reply position, in this call position is updated for the reply but we are still in edit_post action so wp_update_post is called recursively until server gives up.

    stacktrace:

    
    var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/functions.php(2143): wp_update_post(Array)
    #2 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/template.php(1757): bbp_update_reply_position(508812, 1)
    #3 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/template.php(487): bbp_get_reply_position(508812, 508811)
    #4 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/extend/buddypress/activity.php(552): bbp_get_reply_url(508812)
    #5 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/extend/buddypress/activity.php(642): BBP_BuddyPress_Activity->reply_create(508812, 508811, 495076, Array, 47710)
    #6 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(298): BBP_BuddyPress_Activity->reply_update(508812, Object(WP_Post))
    #7 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters(NULL, Array)
    #8 /var/www/clients/client1/web17/web/wp-includes/plugin.php(453): WP_Hook->do_action(Array)
    #9 /var/www/clients/client1/web17/web/wp-includes/post.php(3480): do_action('edit_post', 508812, Object(WP_Post))
    #10 /var/www/clients/client1/web17/web/wp-includes/post.php(3591): wp_insert_post(Array, false)
    #11 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/functions.php(2143): wp_update_post(Array)
    #12 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/template.php(1757): bbp_update_reply_position(508812, 1)
    #13 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/template.php(487): bbp_get_reply_position(508812, 508811)
    #14 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/extend/buddypress/activity.php(552): bbp_get_reply_url(508812)
    #15 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/extend/buddypress/activity.php(642): BBP_BuddyPress_Activity->reply_create(508812, 508811, 495076, Array, 47710)
    #16 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(298): BBP_BuddyPress_Activity->reply_update(508812, Object(WP_Post))
    #17 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters(NULL, Array)
    #18 /var/www/clients/client1/web17/web/wp-includes/plugin.php(453): WP_Hook->do_action(Array)
    #19 /var/www/clients/client1/web17/web/wp-includes/post.php(3480): do_action('edit_post', 508812, Object(WP_Post))
    #20 /var/www/clients/client1/web17/web/wp-includes/post.php(3591): wp_insert_post(Array, false)
    #21 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/functions.php(2143): wp_update_post(Array)
    #22 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/template.php(1757): bbp_update_reply_position(508812, 1)
    #23 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/template.php(487): bbp_get_reply_position(508812, 508811)
    #24 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/extend/buddypress/activity.php(552): bbp_get_reply_url(508812)
    #25 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/extend/buddypress/activity.php(642): BBP_BuddyPress_Activity->reply_create(508812, 508811, 495076, Array, 47710)
    #26 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(298): BBP_BuddyPress_Activity->reply_update(508812, Object(WP_Post))
    #27 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters(NULL, Array)
    #28 /var/www/clients/client1/web17/web/wp-includes/plugin.php(453): WP_Hook->do_action(Array)
    #29 /var/www/clients/client1/web17/web/wp-includes/post.php(3480): do_action('edit_post', 508812, Object(WP_Post))
    #30 /var/www/clients/client1/web17/web/wp-content/plugins/bbpress/includes/replies/functions.php(45): wp_insert_post(Array)
    #31 /var/www/clients/client1/web17/web/wp-content/themes/mikmag-child/lib/core/MundrImportForums.php(663): bbp_insert_reply(Array, Array)
    #32 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(298): lib\core\MundrImportForums->post_import_forums_threads('')
    #33 /var/www/clients/client1/web17/web/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters('', Array)
    #34 /var/www/clients/client1/web17/web/wp-includes/plugin.php(453): WP_Hook->do_action(Array)
    #35 /var/www/clients/client1/web17/web/wp-admin/admin-ajax.php(91): do_action('wp_ajax_post_im...')
    
    #187161
    Robin W
    Moderator

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    find
    wp-content/plugins/bbpress/templates/default/bbpress/form-anonymous.php
    Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/form-anonymous.php
    bbPress will now use this template instead of the original
    and you can amend this

    Then you’ll see that line 27 contains the text you want to alter.

    #187160
    davissm
    Participant

    Hi,

    I recently installed bbPress on my site at http://www.focusonfacilitationcop.com/forums/forum/cop-community/

    When clicking on an open topic, the title for email in the reply form is entitled:
    Mail (will not be published) (required):

    How can I change “Mail” to “email”? This is an outdated label and surprised to find it here in current plugin.

    Thanks for your help!

    Best,
    Steve

    #187158
    gilescanter
    Participant

    I have installed bbPress and have the forums set up (N1outdoors.com/n1forums). When someone registers as a new user, I receive the notification that a new user has signed up. However, they never receive the password email. I have tried this on multiple computers/devices in multiple places and cannot get it to work.

    I have seen several posts where this is a problem, but cannot find an answer that works. I am not a developer, but am trying to fix this on our site. Please help. Thank you.

    My wordpress version is 4.8.2

    I am using the following:
    bbPress Version 2.5.14

    Select bbPress – Moderation Tools
    Version 1.0.7 | By Digital Arm

    Select bbPress Login Register Links On Forum Topic Pages
    Version 2.1.5 | By Tomas Zhu | View details

    Margherita Pelonara
    Participant

    Hi there,
    How can I replace “voices” and “replaies” with icons (i.e. Font Awosome), as I can see in WordPress Support Forum?

    -> https://wordpress.org/support/view/all-topics/

    Is there any plugin? Or I need to edit php files (but then what happens after every bbpress update?)? Thanks!

    #187156
    Bharat Karavadra
    Participant

    Hello,

    The issue was sort of resolved by switching off the ‘Embed media’ bbPress setting.

    However, this does not explain why a different URL to that in the reply was being embedded.

    It would be good for the developers to look into this unless there is something obvious I am not seeing.

    #187149
    royurbanmedia
    Participant

    Currently I have a problem with profile URLs in bbPress redirecting to the wrong page if a user has a number in their name that happens to match a page ID.

    What I mean is currently if I click a URL like this: http://www.mywebsite.com/forums/users/myusername

    It will direct me to the forum profile of someone with the username ‘myusername’ as expected.

    However, if I click on a URL like this: http://www.mywebsite.com/forums/users/myusername94

    Instead of directing me to the profile of myusername94 as expected, it actually redirects me to a completely different page which ends up being the page with ID 94, i.e http://www.mywebsite.com?p=94

    I am guessing this may have something to do with permalink settings, which are currently set to Post Name. Is there a way to resolve this issue while still being able to use the same permalink structure?

    #187146
    Indrekkor
    Participant

    I am managing a largeish forum (2M+ replies) and would be interested is anyone using Sphinx Search Engine in their site?

    We are using Sphinx RT index in another part of our website which is built on Yii framework and there we took the approach that site content is replicated into Sphinx from MySQL db.

    So all the SELECT queries are done into Sphinx and MySQL gets bothered only with INSERT, UPDATE, DELETE statements.

    Have not yet started working with this but thinking about taking the same approach with our bbPress forum to get rid of the slowness caused by SELECT SQL_CAL_FOUND_ROWS query.

    In addition the aim would be to also create a blazing fast search alternative.

    Has anyone tried to do something like this or has got any experience with Sphinx Search Engine and bbPress?

    #187144
    vegetarianzen
    Participant

    Hello Team bbpress

    I am using the plugin bbpress. I want to customise that view of forum similar to http://www.veggieboards.com/forum/index.php this link.

    I have created the child theme and add the css folder and archive-forums.php file in the child theme. I am not able to customise plugin using css only because I want to change the structure. If I change plugin core file then future update overwrite my code and when I am place the complete plugin in child then its stop working and page become blank.

    Please give me the solution I am waiting your solutions.

    My bbpress plugin Version: 2.5.14

    Wordpress Version: 4.8.2

    Thanks

    #187141
    Robin W
    Moderator
    #187126

    Topic: Profile limitations

    in forum Plugins
    ercvowners
    Participant

    I am using WP 4.8.2; BuddyPress 2.9.1; BBPress 2.5.14 and Members 2.0.0
    I have unchecked the option for “Anyone can register” because we are a discreet number of Owners in a COA. As Administrator, I create the accounts for Owners and control the Usernames to include unit numbers for identification. Because I don’t have the “anyone can register” field checked, it seems to limit functionality in creating groups, inviting friends, etc. I cannot assign pages to groups and members unless that function is checked, however I do not want other people registering. I also manage parts of the website for “Owner Only” access. Can you help? I want existing Owner/Members to have full functionality with their profiles, but I don’t want to open registration to outsiders.

    #187125
    ebr4him
    Participant

    I’d like to show custom fields based on topic ‘type’.

    So I want to create a custom topic type ‘event’ that has additional fields — starts, ends and location. Although I can create the custom post type (using wp-types plugin) and fields (using Advanced custom fields) but I’m unable to use them in a bbPress forum.

    Is it possible to have multiple custom topic types in a bbPress forum? So basically instead of creating a ‘topic’ inside a forum, I could create an ‘event’ that people would reply to. Or am I approaching this incorrectly and it should be done differently?

Viewing 25 results - 8,201 through 8,225 (of 64,454 total)
Skip to toolbar