Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 11,926 through 11,950 (of 64,454 total)
  • Author
    Search Results
  • #173087
    Stephen Edgar
    Keymaster

    2.6 is incredibly stable, its nearing, and has been, pretty close to being ready for release for quite some time, bbpress.org and wordpress.org are using 2.6 perfectly if that helps.

    #173073
    Pascal Casier
    Moderator

    Hi,
    Check this out: https://bbpress.org/forums/topic/search-option/
    Hope it helps, Pascal

    #173071

    In reply to: Recents topics

    Pascal Casier
    Moderator

    Is that on a public site ? Then a link would be great.
    I need to understand is that is the bbPress search or the WordPress search.

    Pascal.

    #173065

    In reply to: Recents topics

    titis14
    Participant

    Thank you how not to have the search bar ?

    #173061
    Sziban
    Participant

    Thank you Stephen!

    Thank you for detailed answer. Only one more question: It is very important for me that the forum must be very stable and perfect to use by our visitors. Isn’t it hazardous to use the bbPress 2.6-alpha version instead of the stable bbPress 2.5.8 version?

    #173051
    Type Historian
    Participant

    WP 4.4.2, bbPress 2.5.8-5815

    Welcome!

    This problem has persisted for maybe two years with regular updates of WP and bbPress. Now that I really need to move some posts, I’m finally getting around to asking for help…

    A misconfiguration on the server caused a hiccup. Check the server logs, fix the problem, then try again. URL: http://____/wp-admin/edit.php?post_type=reply

    I tried nearly all of the repair tools without success. If there is an error in the php file, how can I fix it?

    Many thanks for your help, Anna

    #173050
    kodacollider
    Participant

    I’m not, I am using a child theme of Twenty Twelve that I’ve been creating.

    I actually got this figured out, on a whim I decided to try your $args[‘type’] = ‘list’; again and for whatever reason this time it worked. I don’t know if I may have just overlooked it the first time, or what.

    My function:

    function bbp_custom_pagination_links( $args ) {
        $args['type'] = 'list';
        return $args;
    }
    add_filter ('bbp_topic_pagination','bbp_custom_pagination_links');

    I will still have to go through and do the same thing for other instances of pagination within bbPress, but that has worked for the topic list. It’s just a matter of styling the list elements with CSS at that point to get them aligned horizontally.

    Thanks for all of your help, I really do appreciate it.

    #173049
    Stephen Edgar
    Keymaster

    Right, clear as mud then ๐Ÿ˜‰ But this does sound like this is the expected behaviour ๐Ÿ™‚

    Trivia: bbPress.org theme here shows both @username and “Display Name” because people used to try and ping me via @Stephen Edgar, rather than @netweb, hence we added both to the template loops ๐Ÿ™‚

    #173048
    Stephen Edgar
    Keymaster

    @ sziban Cool, 1st up, you should use the development version bbPress 2.6-alpha, it has some improvements for anonymous users, you can get it from https://bbpress.org/download/

    Take a look at the phpBB and SMF importers for good examples:
    https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/phpBB.php
    https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/SMF.php

    In particular, the following was added to add support to import topics and replies from “anonymous” users.

    So rather than trying to import each of your legacy anonymous users as WordPress users the changes above will assign each of them to the built in bbPress anonymous user, and assign the “legacy” “nickname” to the imported topic or reply, its kind of cool and I’m pretty sure it will do what you are after.

    Let me know how it goes or any other questions you may have ๐Ÿ™‚

    #173047
    tech55541
    Participant

    Hello,
    I have this code that I used to create a custom BBPress options menu. It works great. The only thing it does not do is close on a mobile device when the options menu is clicked again. Could you please help me add this functionality?

    functions.php code

    /* Custom BBPress admin links menu*/
    function wpmudev_bbp_admin_links_in_menu($retval, $r, $args) {
       if ( is_user_logged_in() ) {
       $menulinks = '<ul id="bbp_custom_links_menu-' . $r["id"] . '" class="bbp_custom_links_menu">';
        $menulinks .= '<li class="parent"><a href="#bbp_custom_links_menu-' . $r["id"] . '">Options</a>';
        $menulinks .= '<ul class="bbp_custom_links_submenu">';
        foreach($r['links'] as $key => $val) {
            $menulinks .= "<li>{$val}</li>";
        }
        $menulinks .= '</ul></li></ul>';
    
        echo $r['before'] . $menulinks . $r['after'];
        }
    }
    add_filter('bbp_get_topic_admin_links', 'wpmudev_bbp_admin_links_in_menu', 10, 3);
    add_filter('bbp_get_reply_admin_links', 'wpmudev_bbp_admin_links_in_menu', 10, 3);
    
    add_action( 'wp_footer', 'overflow_overriding' );
    function overflow_overriding() {
        if ( !is_user_logged_in() ) {
        }else{
        ?>
        <script type="text/javascript">
    		jQuery( document ).ready(function() {
    		   jQuery('.bbp-admin-links:even').css({"position": "absolute", "right": "380px"});
    		});
        </script>
    
         <?php
        }
    }

    Thanks for the help.

    #173045
    Robin W
    Moderator

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

    Then come back

    #173044
    Leg3ndAry
    Participant

    Hello,

    i have the following problem. When i try to enter a topictitle, the topictitle stays empty.

    Wordpress Version: 4.3.1
    BBPress Version: 2.5.8
    PHP 5.5.9
    I hope you can help me.

    #173037
    Sziban
    Participant

    Hello,

    I’m trying to convert my old forum to bbpress (using modified bbpress/includes/admin/converters/Example.php) and it works almost everything except one. In my old forum there are 3 authors category:
    1. registered with name,
    2. not registered with name and
    3. anonymous.
    As far as I know the bbpres able to handle these categories and I can convert and import these data, but not together.
    I can import the registered users with name, with these lines in converter:
    $this->field_map[] = array(
    ‘from_tablename’ => ‘posts’,
    ‘from_fieldname’ => ‘uid’,
    ‘to_type’ => ‘reply’,
    ‘to_fieldname’ => ‘post_author’,
    ‘callback_method’ => ‘callback_userid’
    );
    I can import the NOT registered users with name, with these lines in converter:
    $this->field_map[] = array(
    ‘from_tablename’ => ‘posts’,
    ‘from_fieldname’ => ‘nickname’,
    ‘to_type’ => ‘reply’,
    ‘to_fieldname’ => ‘_bbp_anonymous_name’,
    );
    But unfortunately, if I use both, only the NOT registered users coming through.
    I would be very grateful if someone could help.

    #173005

    Topic: Recents topics

    in forum Themes
    titis14
    Participant

    Hello
    i would like to have exactly the same widget on my site, like putting it in place?
    Thank you

    #173001

    In reply to: language change

    Pascal Casier
    Moderator

    Then it’s completely normal that you get everything in English ! If you want to have your site in Spanish, you should change it to Spanish and bbPress will adapt automatically (if you choose Spanish (Spain) or Spanish (Chile), because the other Spanish are not yet fully translated).

    Pascal.

    #173000

    In reply to: language change

    stussi
    Participant

    my site language is in English right now. and bbpress is version 2.5.8

    #172993
    Pascal Casier
    Moderator

    Unfortunately not.
    Do you have the possibility to switch to a standard wordpress theme ?
    Or deactivate all plugins except bbPress ? Then reactivate one by one
    Pascal.

    #172980
    eoppegaard
    Participant

    I am using BbPress Version 2.5.8 but I think you are right it is never finding the source.

    Where should the source files be placed?

    #172978
    volican
    Participant

    When I use bbpress I notice that on the mobile it is all squished up. To solve this I have removed the freshness column and adjusted the spacing of the info, topic and posts columns. This works on the forums page but when I click on one of the forums the freshness column is removed but the spacing seems to be the same. Can you see what I have done wrong with my css?

    li.bbp-forum-freshness, li.bbp-forum-freshness {
    	display: none;
    }
    
    li.bbp-forum-freshness, li.bbp-topic-freshness {
    	display: none;
    }
    
    li.bbp-forum-info, li.bbp-topic-title { width:50%; }
    
    li.bbp-forum-topic-count, li.bbp-forum-topic-count {
    	text-align: center;
    	width: 30%;
    }
    li.bbp-forum-reply-count, li.bbp-forum-reply-count {
    	text-align: center;
    	width: 20%;
    }
    
    ////// This is the bit that isn't playing nice
    
    li.bbp-forum-info, li.bbp-topic-title { width:50%; }
    
    li.bbp-forum-topic-count, li.bbp-topic-topic-count {
    	text-align: center;
    	width: 30%;
    }
    li.bbp-forum-reply-count, li.bbp-topic-reply-count {
    	text-align: center;
    	width: 20%;
    }

    Many thanks ๐Ÿ™‚

    #172975

    In reply to: Updating my import

    blandow
    Participant

    So I made a fresh forum for testing and the posting was instant. So it looks like 1.8 Millions entries in our wp_posts table is just too big a strain. I want to try to mass delete a lot of the old stuff from years ago, but I don’t want to delete regular WP posts. So what in the SQL is unique to bbpress so I can run the correct query?

    #172949

    In reply to: language change

    Pascal Casier
    Moderator

    Hi,
    bbPress translation files comes automatically and the ‘search’ button is in the translated list:
    value="<?php esc_attr_e( 'Search', 'bbpress' ); ?>"
    But I see you also have ‘topics’, ‘posts’ and ‘freshness’, so nothing is translated.

    Can you please tell me:
    1) in what language locale your WordPress is running in ?
    Dashboard > Settings > General Settings > Site Language

    2) What version of WordPress and bbPress you are using ?

    Pascal.

    #172942
    ikiu91
    Participant

    Hi all,

    I migrated my website on a new server, all is fine with wordpress, it works but i’ve no acces in the forum settings, BBPress don’t see me as admin when i’m connected with the website as admin, i’ve no admin link in my back office.

    My BBPres is up to date; my WP too

    thanks

    Gilles

    #172938

    Topic: bbpress templates

    in forum Themes
    abforex
    Participant

    hello all

    I looked for a long time to find a ready template for bbpress but unfortunately I can not find can any one help me because I like to use bbpress as my forum but the default setting it is very poor and I don’t have experience to modify it by my self so please if you know any ready theme or template which can help me I will appreciate your help

    and to understand what I mean please check this link (http://www.spyka.net/bbpress-themes/businesslike/) I tried also to use it but unfortunately not success maybe some missing files or because it is very old version I don’t know please help

    thank you

    #172937
    abforex
    Participant

    hello all

    I m new in bbpress and I tried to find some solution to add additional button in the text topic for the user to allow him to change his typing color or size as he like but I did not success even I used (TinyMCE Advanced) and lot plugins but without result

    please help and advice me how can do it?

    thinkDrew
    Participant

    @vadim77

    I fixed my issue by using the default wordpress search (not bb search widget) and by adding this snippet into my functions.php. This snippet adds the bbpress hook into the default search and works like a charm (adds topics & replies) to search results. This will also make it much easier styling the search results page consistently (forum results vs blog / page results).

    Thanks to: @undergroundnetwork for your snippet!

    https://bbpress.org/forums/topic/plugin-snippet-hack-to-include-bbpress-topics-in-wordpress-search/

Viewing 25 results - 11,926 through 11,950 (of 64,454 total)
Skip to toolbar