Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 8,501 through 8,525 (of 64,454 total)
  • Author
    Search Results
  • #186059
    only4gamers
    Participant

    i installed bbpress few days ago and didn’t use anything till now because its showing this error from first day

    This page isn’t working

    only4gamers.ml is currently unable to handle this request.
    HTTP ERROR 500

    i tried to fix this problem myself but i cant. please tell me how to solve this problem ?

    forum link
    http://only4gamers.ml/forums/forum/upcoming-games-2/

    #186058
    bennynet
    Participant

    WP : 4.8
    BBpress : 2.5.13

    Website : Only on private access (I use a test version of my website for all upgrade before to mupgrade by official website)

    After the upgrade (from 2.5.12 version) my sidebar has disappeared on my forums…

    What can I do?

    Thanks for your support to fix it.

    Benoit

    #186057
    chemdata
    Participant

    Runamuck were you able to resolve your problem as I am having a similar one and haven’t found answer yet. In my case the BBpress toolbar is visible in Chrome but not in MSIE. If you were able to resolve could you let us know how? Thank you.

    #186056
    michent1
    Participant

    I ended up having to dig this snippet backup for a new project and made some tweaks.


    @struth
    Updated to only output if user is logged in.

    
    	/**
    	 * Generate BBpress Edit Profile Link in a shortcode
    	 *
    	 * @param $atts, text|class
    	 * @example [bbp_edit_profile text="Edit My Profile" class"my-link-style"]
    	 * @return string|void
    	 *
    	 */
    	function bbp_edit_profile_link( $atts ) {
    		
    		//If user isn't logged in, return nothing
    		if(!is_user_logged_in()) {
    			return;
    		} else {
    			
    			extract( shortcode_atts( array(
    				                         'text'  => "",  // default value if none supplied
    				                         'class' => "" //Style class for link
    			                         ), $atts ) );
    			
    			if ( $text ) {
    				$current_user = wp_get_current_user();
    				$user         = $current_user->user_login;
    				
    				return '<a class="' . $class . '" href="/forums/users/' . $user . '/edit">' . $text . '</a>';
    				
    			}
    		}
    	}
    	
    	add_shortcode( 'bbp_edit_profile', 'bbp_edit_profile_link' );
    
    #186054
    kariellen35
    Participant

    I haven’t found any re-direct options in bbpress or buddypress, so my guess is that they should not have anything blocking it… but plugins sometimes conflict for other reasons. I would suggest using bbp style pack. It has it’s own login redirect plus a whole lot of other re-design features that I use a lot of. I am having a bit of trouble with the redirect but am working to get it resolved now. I have changed a couple of things that may be causing a conflict, but the redirect feature it offers is my preference. I’d suggest trying out the style pack plugin instead of using those other two since it is made for bbpress so it’s sure to be much more compatible.

    #186049
    scoremedia
    Participant

    Hi!

    Im using buddypress and wordpress in general with bbPress. I want to know if somebody knows a way to give ALL forums a set of default topics. So for every new buddypress group if there is a new forum they already have a basic set of topics. Anyone know how to achieve this without setting it up yourself everytime a new group is added or a new forum is being created.

    #186041

    Topic: Missing Toolbar

    in forum Installation
    chemdata
    Participant

    Wordpress version: 4.8.1
    BBPress version: 2.5.13-6410.
    Theme: Vantage
    Toolbar is missing in bbpress for new posts and comments when using MSIE version 11.0.9600 but it is visible with Chrome.

    Any ideas. Thanks.

    #186040
    lulukala
    Participant

    Am I not tagging this right? Heeeelp. I want to build my site with wordpress+bbpress but if I can’t get this answer I’ll need to find another solution.

    #186039
    Robin W
    Moderator

    ok, I’ve been kicking this around for the last 3 hours!!

    Capabilities are spread all over the files in bbpress, so it’s taken a while to get to something.

    But I’ve learnt some good stuff along the way !!

    This is close to a perfect solution, and seems workable

    add_filter ('bbp_register_forum_post_type', 'rew_change') ; 
    
    function rew_change () {
    	$rew = array(
    				'labels'              => bbp_get_forum_post_type_labels(),
    				'rewrite'             => bbp_get_forum_post_type_rewrite(),
    				'supports'            => bbp_get_forum_post_type_supports(),
    				'description'         => __( 'bbPress Forums', 'bbpress' ),
    				'capabilities'        => bbp_get_topic_caps(),
    				'capability_type'     => array( 'forum', 'forums' ),
    				'menu_position'       => 555555,
    				'has_archive'         => bbp_get_root_slug(),
    				'exclude_from_search' => true,
    				'show_in_nav_menus'   => true,
    				'public'              => true,
    				'show_ui'             => current_user_can( 'moderate' ),
    				'can_export'          => true,
    				'hierarchical'        => false,
    				'query_var'           => true,
    				'menu_icon'           => ''
    			) ;
    	return apply_filters( 'rew_change', $rew );
    }
    
    add_filter( 'bbp_get_caps_for_role', 'rew_moderator', 10, 2);
    
    function rew_moderator ($caps, $role) {
    	if ($role == bbp_get_moderator_role() ) {
    		$caps['edit_others_forums'] = true ;
    		$caps['delete_forums'] = true ;
    		$caps['delete_others_forums'] = true ;
    		$caps['publish_forums'] = true ;
    		$caps['read_private_forums'] = true ;
    		$caps['read_hidden_forums'] = true ;
    		$caps['edit_forums'] = true ;
    				
    	}
    
    return $caps ;
    	
    }

    The line

    'capabilities' => bbp_get_topic_caps(),

    should say

    'capabilities' => bbp_get_forum_caps(),

    and my 2nd filter should then make that work, but for whatever reason it doesn’t.

    But as it gives the topic permissions which for a moderator are what you want for forums, it should be fine.

    #186038
    JC
    Participant

    Hello all, I’m using WordPress 8.0 and bbPress2.5.13.

    I have added this function to add the visual tab to the editor:

    function enable_visual_editor( $args = array() ) {
        $args['tinymce'] = true;
        return $args;
    }
    add_filter( 'bbp_after_get_the_content_parse_args', 'enable_visual_editor' );

    When I signed in as admin is everything OK, the editor tab is selected by default and I can start to type. However, when I do as a participant no tabs are selected and I have to select one of them in order to start to type. This is not intuitive at all for participants that want to write a post in the forum and eventually they will leave.

    Why is happening that? Can anyone give me support? Thank you in advance 🙂

    #186035
    Robin W
    Moderator

    you need to get bbpress to use the correct theme template

    see

    Step by step guide to setting up a bbPress forum – Part 1

    item 8

    #186034
    Robin W
    Moderator

    bbp capabilities are allocated against bbpress roles, so suspect that it would be easier to add forums to the moderator role

    I think the capability you need to add is

    bbp_forums_admin

    so set to user to moderator and add the above capability to preferably the moderator role but could be the editor role

    #186029
    Milan Petrovic
    Participant

    My plugin GD bbPress Toolbox Pro has tons of new bbPress related features, including options to set custom sender email and name.

    You can check it out here: https://plugins.dev4press.com/gd-bbpress-toolbox/ and if you want to test it, send the demo request here: https://www.dev4press.com/request-demo/.

    #186028
    highgatecreative
    Participant

    Hi,
    I’m developing a site for a client (Worpdress 4.8.1) and I’m using bbPress 2.6-beta-2 to handle forums. The client’s main administrative account uses the WordPress role “Editor” and the bbPress role “Keymaster.” I want my client to keep most of the Keymaster capabilities, but I want to remove the Forum Settings page from their admin dashboard menu. I’m wondering if this can be done with the hide_menu() function.
    For native wordpress pages, the function looks something like this:
    remove_submenu_page( ‘<filename>.php’, ‘<filename>.php’ );
    Can this work with the bbPress Settings page, and if so, which filename should appear in the function?

    Peace,
    Angela

    #186018
    Robin W
    Moderator

    @mrapino

    I wish a plugin developer would chime in here, but that doesn’t seem likely.

    I’m not sure how often they visit, but looks like you done some great stuff here.

    I’ve made a note of this thread and I’ll post a trac ticket (bug report) shortly

    Can you just confirm what version of bbpress you are using, and if not bbPress 2.6 Release Candidate 3, can you just check that the code is not improved in this – you’ll do this much faster than me.

    gavinsims
    Participant

    Hi all,
    I wonder if it’s possible, if not already, that when I post a blog post on my WP site, it’ll automatically add a post in my bbPress forum? I found a plugin which is 4 years old, but can’t find anything anywhere. If this something others may want? Or is there a way to do this now?
    Thanks all

    #186003
    Gilbert
    Participant

    Wordpress 4.8.1 bbpress 2.5.13
    hello,
    This is a multisite, site 1, admin is https://swissinformatics.org. bbpress is activated on https://magazine.swissinformatics.org. so bbpress sends mail to noreply@magazine.swissinformatics.org. WRONG, no mailer for this mail. In WordPress settings of the magazine subsite, the address is sidm@swissinformatics.org. noreply@swissinformatics.org also exists.
    I looked everywhere in bbpres and wordpress settings. WHERE can I change this noreply address?
    Thank you very much

    #186001

    In reply to: group forum slug

    Robin W
    Moderator

    silly question, but why not just change it in

    Dashboard>settings>forums>etc.

    and you are using a buddypress hook, not a bbpress one – bbpress is bbp_init and all your code refers to buddypress.

    #185997
    mrapino
    Participant

    Hey there … I got mine working.

    There is a file in the bbPress plugin folder

    plugins > bbpress > templates > default > js > reply.js

    On line 18, there is a line of code that is throwing a JavaScript error every time the “reply” link is clicked.

    reply.parentNode.insertBefore(respond);

    I basically commented this line of code out, and threaded replies are working again.

    I have no idea if this line is needed, but it got rid of the error, and there are no new errors to speak of.

    I wish a plugin developer would chime in here, but that doesn’t seem likely.

    I hope this helps you.

    If anyone else reading this know what this line does, and why it was causing the error, please let us know.

    #185996
    annlouise99
    Participant

    Hi,

    I have bbpress installed and for some reason the favorite option won’t work. The favorite tab is there, but when you click “Favorite” it simply change to “0” – the option of “un-favorite” as I believe it should. The favorite stream won’t populate after either.

    Any help would be appreciated!

    Thanks!

    Ann

    #185993
    Georgio
    Participant

    Hi,
    I am trying to change the group forum slug. E.g.
    from
    ‘mysite.com/groups/mygroup/forum’
    to
    ‘mysite.com/groups/mygroup/discussion’

    I am using this code:

    function gi_rename_group_slug() {
      global $bp;		
      if (isset($bp->groups->current_group->slug) && $bp->groups->current_group->slug == $bp->current_item) {
        $bp->bp_options_nav[$bp->groups->current_group->slug]['forum']['slug'] = 'discussion';
      }
    }
    add_action('bp_init', 'gi_rename_group_slug');

    Unfortunately, nothing happens. What is the error? Thanks in advance.
    —-
    WP 4.8
    bbpress 2.5.12

    #185991
    Robin W
    Moderator

    It’s all tied up with the theme’s page code

    This all gets very code oriented, hence suggestion to go to theme provider

    however if you’re a bit into code try

    Getting Started in Modifying the Main bbPress Template

    sapstudent
    Participant

    Hi Team,

    Here is my situation. I have bbpress installed in my site(sapstudent.com/community). I am displaying it under ‘Community’ page using following two short codes.
    [bbp-forum-index]
    [bbp-topic-index]

    Here SAP HANA, SAP Data Services & SAP BO Business Intelligence are categories, everything else are forums.

    Now when I click on lets say ‘SAP HANA'(https://www.sapstudent.com/community/forum/sap-hana), it only displays forums under this category, however I would like to have recent topics below forums section as I have in ‘Community’ page.

    The other issue I have is, if I use both [bbp-forum-index], [bbp-topic-index] shortcodes on my main forum page, I am getting two search boxes(one above forum list and other one above topics list). To avoid this, I have disabled ‘Allow forum wide search’.Ideally how can I disable seachbox for [bbp-topic-index] shortcode, so that I will have only one search box on my main page which is above forum list.

    #185984
    cobitts15
    Participant

    Okay so I copied the code from my page.php and made a bbpress.php

    <?php get_header(); ?>
    	<div class="content">
    		<!-- Sidebar With Content Section-->
    		<?php 
    			$ultimate_kickoff_wrapper = 'container';
    			$ultimate_kickoff_theme_option = get_option('ultimate_kickoff_admin_option', array());
    			if(isset($ultimate_kickoff_theme_option['enable-boxed-style']) && $ultimate_kickoff_theme_option['enable-boxed-style'] == 'wide-style'){
    				$ultimate_kickoff_wrapper = 'container-fluid';
    			}else{
    				$ultimate_kickoff_wrapper = 'container';
    			}
    			if( !empty($ultimate_kickoff_content_raw) ){ 
    				echo '<div class="vc-wrapper '.esc_attr($ultimate_kickoff_wrapper).'">';
    				while ( have_posts() ){ the_post();
    					if( has_shortcode( get_the_content(), 'vc_row' ) ) {
    						echo ultimate_kickoff_content_filter(get_the_content(), true); 
    					}
    				}
    				echo '</div>';
    				
    				echo '<div class="pagebuilder-wrapper">';
    				ultimate_kickoff_show_page_builder($ultimate_kickoff_content_raw);
    				echo '</div>';
    				
    				
    			}else{
    				echo '<div class="'.esc_attr($ultimate_kickoff_wrapper).'">';
    					$default['show-title'] = 'enable';
    					$default['show-content'] = 'enable'; 
    					echo ultimate_kickoff_get_default_content_item($default);
    				echo '</div>';
    			}
    		
    		?>
    	</div><!-- content -->
    <?php get_footer(); ?>

    My theme options aren’t showing when I try to edit the forum.

    #185981
    Robin W
    Moderator

    ok, you’ll need to be using the right template – see

    Step by step guide to setting up a bbPress forum – Part 1

    item 8

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