Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 15,126 through 15,150 (of 64,454 total)
  • Author
    Search Results
  • alcavit
    Participant

    Hi,

    I just run a small forum and am looking to move it to bbpress. It is currently on PHPbb 3.1.3. I have everything entered in correct I am sure, but all I get when I import is the replies… No users, categories, topics, etc… just replies.

    Let me know if you have any suggestions please.


    Repair any missing information: Continue
    Conversion Complete
    No reply_to parents to convert
    Converting replies (100 - 199)
    Converting replies (0 - 99)
    No tags to convert
    No super stickies to stick
    No stickies to stick
    No topics to convert
    No forum parents to convert
    No forums to convert
    No passwords to clear
    No users to convert
    Starting Conversion

    #162729
    stevenwb
    Participant

    Hi, i have just launched a new site that has a bbPress Forum. I am using Wishlist member as it has premium products within it. When WLM is activated, the first (original) post of a topic doesn’t show. If I disable WLM it shows. I note that some people were having the same issue with S2 Member a while ago. Can anyone provide some clues? Thanks

    itsmeitsb
    Participant

    Using the Avada theme for my website and have a Fusion Sliders that cap the top of my pages. I have the rest of the layout for my bbpress working great after some help from others here…

    But how do I get bbpress to pull the Fusion Slider and attach it to the top of the page above the posts/replies when New Topics are created?

    I know that I can go in to topics and manually do it once the topics are created, but want to set it up where it automatically attaches when anyone creates a New Topic.
    I’m sure there’s probably something I can put in the file that creates the new “page” but I need a little help/direction in doing that.

    (Worst case/last resort: How to just do an image instead?)

    #162722
    Robkk
    Moderator

    @sayedwp

    The setup current user error is a bug in WordPress.

    https://core.trac.wordpress.org/ticket/24169


    @jookkoo

    The groups issue is known bug and the trac ticket for it is here.

    https://bbpress.trac.wordpress.org/ticket/2782

    OH my god, why the plugin author don’t fix this issue.
    But most of all need to say thank you again.

    It is an issue with two different plugins, bbPress and BuddyPress.

    the fix seems to be slated for bbPress 2.6

    #162716
    Robkk
    Moderator

    The Groups error might be a known issue too.

    I think that is this ticket

    https://bbpress.trac.wordpress.org/ticket/2782

    #162715
    Robkk
    Moderator

    read this trac ticket , and follow some of the links to the duplicates

    https://bbpress.trac.wordpress.org/ticket/2804

    There seems to be an issue in WordPress.

    https://core.trac.wordpress.org/ticket/24169

    #162713
    wplove3268
    Participant

    I also found that when, as Keymaster, I went to Edit a particular topic or reply, the Edit field displayed no text and I was not able to save any changes. When I commented out this particular snippet form derricksmith01’s solution the problem dissappeared.

    function buddyboss_bbpress_form_reply_content($retval){
    	global $bp;
    	if (end($bp->action_variables) == 'edit' && in_array('topic', $bp->action_variables) && in_array('reply', $bp->action_variables)) {
    		$post = get_post( bbpress()->current_reply_id );
    		return esc_textarea( $post->post_content );
    	}
    }
    
    add_filter('bbp_get_form_reply_content','buddyboss_bbpress_form_reply_content', 10, 1);
    ns
    Participant

    Hello.

    I’d like to solve problem.
    Would anyone answer to my problem?

    Firstly, the conditions of WordPress, bbPress, design theme, plugin, and function.php are below.
    Wordpresss: Latest version
    bbPress: Latest version
    design theme: Original building
    plugin: introduced “bbPress – Sort topic replies”.
    The settings of this plugin are “Global:Descending”, “No Parent:Default”, and “Always show lead Topic:Yes”.
    function.php: Below code exists.

    add_filter('bbp_before_has_replies_parse_args', 'change_reply_order');
    function change_reply_order() {
    	$args['order'] = 'DESC';
    	return $args;
    }
    
    add_filter('bbp_show_lead_topic', 'custom_bbp_show_lead_topic' );
    function custom_bbp_show_lead_topic( $show_lead ) {
      $show_lead[] = 'true';
      return $show_lead;
    }

    Then, here is main topic.
    The function of bbPress itself is that after the user replies to the parent topic in topic page, next screen shows the last page(the page of max number) if the pagination shows.
    With the setting of “bbPress – Sort topic replies” plugin is under “Global:Descending”, the redirection which I expect is to go to the first page.
    I think that this solution isn’t https://bbpress.org/forums/topic/new-replies-redirect-to-last-page/

    I’ve searched and tried to solve the problem, however I can’t find the solution.
    I wonder my current settings or ways might be wrong.

    Thanks.

    #162707

    Getting 3 more notices

    Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in /Applications/MAMP/htdocs/supernova/wp-includes/functions.php on line 3560
    
    Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 1.7.) in /Applications/MAMP/htdocs/supernova/wp-includes/functions.php on line 3560
    
    Warning: Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/supernova/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php:28) in /Applications/MAMP/htdocs/supernova/wp-includes/pluggable.php on line 1196
    #162706

    Same Issue, I am using the latest version of bbpress and buddypress.

    Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in /Applications/MAMP/htdocs/supernova/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php on line 28

    #162705
    tinaolsson
    Participant

    I have been working as a research paper writer in one of the leading research paper writing service for the past 5 years and in the past month a forum has been created for our website. In that forum, our my management has wished to change the theme. But,they don’t like the available themes. so,please tell me when the new themes will be get released for the bbpress forums.

    #162696
    Robkk
    Moderator

    Adding menu links like that is quite difficult unless you manually create the menu in HTML and just not worry about the WordPress menu configuration.

    I suggest maybe creating a copy of the login widget and add whatever links you want for the suer to the bbPress login Widget.

    This explains it quite briefly.

    Layout and functionality – Examples you can use

    If you need help or an example plugin to create this please reply back.

    #162695
    Robkk
    Moderator

    @muchman13 and @dreambot

    Guys this is an old topic

    The theme was probably for bbPress v1 so not for the bbPress 2 plugin

    the guy doesn’t even use WordPress, that is just a static site hosted on I think Github

    #162693

    In reply to: @mentions feature

    Robkk
    Moderator

    @jturet

    I don’t know , suggest you hire a developer if you really want this functionality.

    but by default bbPress and BuddyPress do not use the visual editors so Id say just use the default text editor.

    #162692

    In reply to: bbPress 2.5.5

    Robkk
    Moderator

    @littleapplebigpear

    To create a topic you choose the forum you want to create a topic in from the left forums list.

    then you scroll down to the topic form.

    to fix your issue.

    #bbpress-forums .reply,
    #bbpress-forums .reply:hover {
      color: #000000 !important;
    }
    #162691

    In reply to: bbPress 2.5.5

    littleapplebigpear
    Participant

    hello, sorry to budge into this convo.. but i don’t know how to start a new topic.. lol

    I cant seem to find a solution to this:
    my bbpress only show the comments of the topic creator but unable to show the comments of others who comment on that topic.. please help 🙁

    Here is what i am referring about(notice the blank replies other than the topic creator):
    http://sgreview.sg/forums/topic/hai-di-lao-hot-pot/#post-110

    #162689
    jookkoo
    Participant

    Hello.
    My site in wp-config.php i uses define(‘WP_DEBUG’, true) and it warning as below:

    Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in /home/xxx/xxx/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php on line 28

    Please help
    Thank you

    #162680

    In reply to: New Replies on top

    Robin W
    Moderator

    try adding this to your functions file

    add_filter('bbp_has_replies_query', 'modify_replies_query');
    
    function modify_replies_query($bbp_r) {
    $bbp_r = 'ASC';
    return $bbp_r;
    }
    
    

    Functions files and child themes – explained !

    #162679

    In reply to: Broken Breadcrumbs

    Robin W
    Moderator

    ok, just because there are the same symptoms, doesn’t mean that the solution is the same !

    have you installed

    https://wordpress.org/plugins/bbpress-genesis-extend/

    @mercime
    Moderator

    #162670
    Kennon1st
    Participant

    I’ve been working hard at setting up a site for my podcast and things had been going swimmingly, but while looking around at some RSS feed import widgets and such today, somehow I seem to no longer have working BBpress forums. It doesn’t seem like it would be related, but who knows?

    The forums still show in my dashboard, and I was able to create a forum page by hand and get it to show the index with shortcode, but when I click on any of the forum links, it gives me a page not found error. It seems to do so even if I swap to one of the bundled 201x themes.

    The RSS widget I was testing out is RSS Multi Import 3.15 and I’m running WordPress 4.2.2 with the Generate Press theme 1.2.9.8 and BBpress 2.5.7. Website is http://www.whitebookpodcast.com.

    I’m a quite a newb to delving in to WordPress stuff, so I have to admit that I’m at a loss. Any thoughts on possibilities?

    Rachel Biel
    Participant

    I have several issues on my site, including buddypress/bbpress and would like to hire someone who can problem solve possible plugin conflicts, etc. Where is a good place to go to find people who are available, not crazy expensive, and who can quickly fix what is wrong. Is there a job board somewhere?

    My site: http://www.tafalist.com/

    #162666
    Robin W
    Moderator

    suggest you look on/raise in

    https://bbpress.trac.wordpress.org/

    #162664
    Shmoo
    Participant

    That’s why I installed it.. Testing the code and by the time my forum is done bbPress 2.6 will be released I hope.
    But still, a missing core stylesheet?

    Some developer who has worked last on the code should’ve mentioned it don’t you think, maybe the developers have some fancy tool where they test/fork the alpha and beta versions with?
    I just downloaded the latest version (trunk) of the trac website.

    https://bbpress.trac.wordpress.org/browser/trunk ( bottom – download .zip )

    BenM
    Participant

    Hi,

    Lots of plugins make this message appear :

    
    Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in /srv/wp-includes/functions.php on line 3560

    How could we correct this, it’s very annoying because even my functions (not related to bbpress) causes this !

    For example, this code display bbpress error :

    if (!current_user_can('update_plugins')) {
     	add_action('admin_init', create_function(false,"remove_action('admin_notices', 'update_nag', 3);"));
     }
Viewing 25 results - 15,126 through 15,150 (of 64,454 total)
Skip to toolbar