Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 13,751 through 13,775 (of 64,493 total)
  • Author
    Search Results
  • #167090
    Robkk
    Moderator

    @samuelstraka

    In the WordPress backend you will see these new menu items when activating bbPress.

    Forums
    -All Forums
    -New Forum
    -Forum Moderators (in 2.6)
    Topics
    -All Topics
    -New Topic
    -Topic Tags
    Replies
    -All Replies
    -New Reply
    Tools
    -Forums
    Settings
    -Forums

    I am sorry but the Czech language is incomplete right now. It will be much appreciated if you do help use in creating a new czech translation for bbPress. If you want create a new topic on this site and I will try to help you the best I can in creating the translation file.

    https://translate.wordpress.org/projects/wp-plugins/bbpress/stable/cs/default


    @kari1

    Sorry Polish language file for bbPress is incomplete also, would love if you helped create the file. If you want create a new topic and I will try to help you the best I can in creating the language file.

    https://translate.wordpress.org/projects/wp-plugins/bbpress/stable/pl/default

    #167088
    Akawey
    Participant

    Okay, this seems to be an old issue but I’m having the same problem now.
    How about having a shortcode that just does it?
    I didn’t see a bbpress ‘users’ shortcode amongst those listed in the documentation.

    Or is there another fix to this problem…

    @joopstringer
    where do I add the code you suggested?

    I’m setting up a site and only my admin user page comes up, all others are 404 pages.
    Any help please?

    #167086
    Robkk
    Moderator

    It is just a conflicting piece of javascript somewhere in the file. If they already have a fix somewhere in that file for comment threading then something similar may need to be done to bbPress reply threading since both their scripts are very similar.

    Try this custom php code snippet. Place it in your child themes functions.php file or in a functionality plugin.

    add_action( 'wp_print_scripts', 'rkk_reply_threading_divi' );
    
    function rkk_reply_threading_divi() {
    
        if( function_exists( 'is_bbpress' ) && bbp_is_single_topic() && bbp_thread_replies() ) {
            wp_dequeue_script( 'divi-custom-script' );
        }
    }
    #167072
    nikhilnaik
    Participant

    Hello all,

    I wanted to seek help in modifying the following piece of code. I have a site with buddypress groups inside which I have bbpress forums for the respective groups. I want the users of the group to be automatically subscribed to the forums within that group. I tried the following code:

    add_filter( 'bbp_get_user_subscribe_link', 'invert_get_user_subscribe_link', 10, 4 ); //invert forum subscription
    add_filter( 'bbp_is_user_subscribed_to_forum', 'invert_is_user_subscribed_to_forum', 10, 4 ); //invert forum subscription
    add_filter( 'bbp_get_forum_subscribers', 'invert_get_forum_subscribers' ); //invert forum subscription
    add_filter( 'bbp_is_user_subscribed', 'invert_is_user_subscribed', 10, 4 ); //invert forum subscription
    
    function invert_is_user_subscribed($retval, $user_id, $object_id, $subscribed_ids) {
    	if (get_post_type( $object_id ) == bbp_get_forum_post_type())
    		return !$retval;
    	else	
    		return $retval;
    }
    
    function strContains($needle, $haystack) {
    	if (strpos($haystack, $needle) !== false) {
    		return true;
    	} else {
    		return false;
    	}
    }
    
    function invert_get_user_subscribe_link ($html, $r, $user_id, $topic_id) {
    	if (strContains( "bbp_unsubscribe", $html )) {
    		$html = str_replace("bbp_unsubscribe", "bbp_subscribe", $html);
    	} else {
    		$html = str_replace("bbp_subscribe", "bbp_unsubscribe", $html);
    	}
    	return $html;
    }
    
    function invert_get_forum_subscribers( $users ) {
    	$args = array('fields' => 'id');
    	$all_users = get_users($args);
    	$send_to_users    = array_diff($all_users, $users);
    	return $send_to_users;
    }
    
    function invert_is_user_subscribed_to_forum( $retval, $user_id, $forum_id, $subscribed_ids ) {
    	return !$retval;
    }
    

    But there is a problem. Using the following code leads to the user getting subscribed to all the forums of all the groups (even those which they aren’t a part of). I just want them to be automatically subscribed to those forum topics created inside the group which they are a part of. Kindly help me in getting this right.

    Thanks!

    #167070
    redshoee
    Participant

    Hi,
    you can try to disable all the plugin but bbpress.
    I had the same problem as yours but when I disable the WPML Multilingual CMS ,then the button is appeared

    #167068
    tylerkroff
    Participant

    I’ve switched between about 5 different themes, trying to install bbpress with each one. Each time, the result is the same. I get a message saying that bbpress was installed, but when I try to go back to the WordPress dashboard, I just get a completely white page. I can’t even navigate back to delete bbpress, so I have to do it manually through FTP.

    Right now I am using the Genesis Framework theme, but the same problem has happened with the default themes (Twenty Twelve, Twenty Thirteen, etc.)

    Any ideas what it might be?

    My website is http://www.poorpilots.com/

    I am using the latest version of WordPress.

    #167064

    In reply to: Sidebar Help

    wesphily
    Participant

    Nimva just informed me that they never intended for their theme to work with bbpress. Also, they don’t support it. Guess I’ll be hunting for a new theme.

    #167062
    wpfundi
    Participant

    WP version: 4.3.1 multisite
    BuddyPress version: 2.3.3
    bbPress version: 2.5.8

    I have been trying to migrate BuddyPress legacy forums to bbPress following the instructions on this link https://codex.buddypress.org/getting-started/guides/migrating-from-old-forums-to-bbpress-2/

    But the migration/import is not going well, after the process:

    1) Topics are missing
    2) Replies are missing

    And during the process I can see “No topics to convert”, No replies to convert.

    When I check the database I can see wp_bb_topics etc.

    What am I doing wrong?

    Thank you in advance.

    #167057
    RLsARc
    Participant

    got an issue regarding Stephen Edgar – Netweb – bbPress – Custom Role Names (Link)

    I change Keymaster role name to Administrator. The plugin works fine w/ logged in users but logged off users still views as Keymaster role name.

    Hoping for answers. Thanks!

    #167054

    In reply to: Sidebar Help

    wesphily
    Participant

    This is the response I got from Nimva:

    Your code source and current page template might be generated using BBPress templates not by Nimva page templates. Try to edit that Forums page and see if it is possible change the current page template to Default page template under Page Attributes -> Templates. See if that does anything

    I think what they are asking me to do is create a page and put the forum index shortcode in it. Then they want me to try to adjust the page template to see if a sidebar shows up. This might work, but it would only work for the main index page. I don’t think this would work for every category/topic/ect.. unless I create shortcode pages for all of them.

    Can you all please advise?

    #167040
    thrivehau
    Participant

    I’m trying to follow https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/ step 6, and every time I make a “forums page” the permalink becomes “forums-2” and I can’t edit it to just “forums”, like there’s already a link with that “forums” even though I don’t have a “forums” page already.

    When I delete the forums-related pages, the mydomain.com/forums is still there.

    I tried the method 2 from the codex, but I do not like it as the Home > forums is there and when I click on forums, it takes me to a blank page.

    How do I fix this permalink issue?

    #167038
    nikhilnaik
    Participant

    Hello All,

    I am using a buddypress+bbpress intergrated site, hence the bbpress profiles are disabled. Only buddypress profiles are made visible because of which I can’t figure out which user is subscribed to which forum. Is there a function or a shortcode using which I can display on the user dashboard the topics/forums he is subscribed to?

    Thanks.

    #167036
    Robkk
    Moderator

    Hi Rob, it is my theme’s style sheet with changed colour code and it’s not styling.

    Did you try adding !important to see if that would work??

    The index was fine – I assume because I filled in description and it’s filled out. Specific board indexes don’t fill to 100% nor do thread pages without much written in the posts.

    Yes. Sorry my mistake. It might be that bbPress is inheriting different templates for archive and single pages. Try to check that by installing the What the File plugin and see what template is being inherited from the forum archive and single topic pages and see if it is different.

    #167035

    In reply to: Sidebar Help

    Robkk
    Moderator

    Do you want full width forums and just the sidebar placed under the forums??

    If you do remove this part of the CSS code.

    .bbpress .sidebar {
      width: 0;
      display: none;
    }

    i can tell you are also using a full width template from your theme, and of course that will hide the sidebar.

    #167031
    Robkk
    Moderator

    It is in loop-single-topic.php and loop-single-forum.php.

    In the files you will see something similar to this. In this example I am editing the loop-single-topic.php file.

    <span class="bbp-topic-freshness-author">
        <?php bbp_author_link( array( 'post_id' => bbp_get_topic_last_active_id(), 'size' => 14 ) ); ?></span>

    Change it to something like this. You see I just added the extra attribute. 'type' => 'avatar'

    <span class="bbp-topic-freshness-author">
    	<?php bbp_author_link( array( 
                    'post_id' => bbp_get_topic_last_active_id(), 
                    'size' => 14 , 
                    'type' => 'avatar'
                    ) );
           ?>
    </span>

    bbp_author_link

    #167030
    Robkk
    Moderator

    You can create a bbpress.php file in your theme to avoid issues like that.

    Getting Started in Modifying the Main bbPress Template

    #167028

    In reply to: Sidebar Help

    wesphily
    Participant

    Robkk,

    Thanks for that. It fixed the space issue. Now I have to figure out how to get a sidebar working.
    I have been trying to do this by going to the page labelled “forums” that has the index shortcode in it and then adding a sidebar that I have created. I then added widgets to that sidebar. I have also tried content aware and bbpress wp tweak. I still can’t get a sidebar to show on the bbpress page. I can get it to show on any other page.

    #167026
    aaron2310
    Participant

    I’ve been editing the Single.php page recently and when I went back to the forum page I found that the forum was displaying some of the changes I’d made to single.php. It looks like it’s taking that as its template rather than index.php. Can I change this?

    http://www.battle-bridge.co.uk/forums/

    #167023
    myndphunkie
    Participant

    Hi Guys,

    Having issues removing the author name in the freshness column.

    The author shows up under the topic column (Started by: <author>), and it also shows up on the freshness column (<avatar> <author>).

    I want to remove the last part.

    I have copied loop-forums.php and loop-single.php into my <theme>\bbpress\ folder and am assuming I need to modify one of these?

    Thanks In Advance

    #167022
    mica123
    Participant

    @dannyfoo I came across your screenshot above. I would be very interested to know how you managed to load the login form at the top of the page? I am not looking for the login to be on the same line as the search box. I would just like to know how to position the Login, Register and Lost password buttons at the top of the forum index page (and possible all the bbpress pages).
    Many thanks.

    #167017
    Kari1
    Participant

    is there a polish language pack for bbPress 2.6 too?

    #167016
    samuelstraka
    Participant

    I thought that when I click to Forum there was submenu with one choice Seetings.
    bbPress 2.6 alpha is installed and activated by manual installation but I don’t use it now on our web because I don’t want to use it in English. I will find Czech translation or I will try to translate it …

    #167014
    Robkk
    Moderator

    Did you try some troubleshooting first? Check to see if it works fine in a default theme. If it still does not work in a default theme, try to see if a plugin could be causing the issue also by doing the listed steps for troubleshooting a plugin issue.

    Plugin/Theme updates could cause an issue to pop up without it previously being there before.

    Troubleshooting

    #167013
    Robkk
    Moderator

    The enable tinymce visual tab plugin just uses the exact same code in here.

    Enable Visual Editor

    I do not think cache could cause an issue like this.

    It is something that slipped my mind, but it is most likely that paragraph tags are considered restricted HTML for some reason.

    Use and edit this function in the plugin below to your liking.

    https://gist.github.com/ntwb/7797990

    You will most likely need to add this to make it work for participants.

    //paragraph
    'p'          => array(
    	'class'    => true,
    ),

    Admins/Keymasters can post unrestricted HTML because they have the capability to do so.

Viewing 25 results - 13,751 through 13,775 (of 64,493 total)
Skip to toolbar