Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 6,201 through 6,225 (of 64,513 total)
  • Author
    Search Results
  • #199903
    nfusionco
    Participant

    Debug log included:

    [12-Apr-2019 22:13:19 UTC] PHP Fatal error:  Uncaught Error: Cannot pass parameter 1 by reference in /var/www/vhosts/mydomain.com/dev.mydomain.com/wp-content/plugins/bbpress/includes/admin/parser.php:1485
    Stack trace:
    #0 /var/www/vhosts/mydomain.com/dev.mydomain.com/wp-content/plugins/bbpress/includes/admin/parser.php(1508): BBCode->Internal_GenerateOutput(1)
    #1 /var/www/vhosts/mydomain.com/dev.mydomain.com/wp-content/plugins/bbpress/includes/admin/parser.php(1891): BBCode->Internal_RewindToClass(Array)
    #2 /var/www/vhosts/mydomain.com/dev.mydomain.com/wp-content/plugins/bbpress/includes/admin/parser.php(2068): BBCode->Internal_ParseStartTagToken()
    #3 /var/www/vhosts/mydomain.com/dev.mydomain.com/wp-content/plugins/bbpress/includes/admin/classes/class-bbp-converter-base.php(1211): BBCode->Parse('[list=1][*]quee...')
    #4 /var/www/vhosts/mydomain.com/dev.mydomain.com/wp-content/plugins/bbpress/includes/admin/converters/vBulletin3.php(752): BBP_Converter_Base->callback_html('[list=1][*]quee...')
    #5 /var/www/vhosts/mydomain.com/dev.mydomain.com/ in /var/www/vhosts/mydomain.com/dev.mydomain.com/wp-content/plugins/bbpress/includes/admin/parser.php on line 1485
    #199902
    nfusionco
    Participant

    Installed bbPress (2.7RC) to test and I like the improved dashboard for information but still having the import issue – though now I’m informed that it reaches step 6:

    Step 6. No forum subscriptions to import
    and just doesn’t move past that point. As a note there are no other plugins activated at all in my wordpress install – this is brand new and i’m starting out with the bbPress plugin since it’s the largest potential issue.

    nfusionco
    Participant

    I’m trying to import an old vBulletin (3.8.3) forum to a new bbPress (2.5.14) setupon WordPress 5.1.1 and the initial import looks great. It imports the users (~13k) says something about deleting their WordPress password, then a moment later it seems to hang and no matter how long I leave it we never progress.

    Calculating forum hierarchy (0 - 99)
    Converting forums (0 - 99)
    Delete users WordPress default passwords (12700 - 12799)
    Delete users WordPress default passwords (12600 - 12699)
    Delete users WordPress default passwords (12500 - 12599)
    Delete users WordPress default passwords (12400 - 12499)
    Delete users WordPress default passwords (12300 - 12399)

    Looking at the forum sections shows that it’s created the 22 forums and correctly set some of them as categories, they also show how many topics and replies are in each one correctly –

    — Random Thoughts - Topics: 3,119 Replies: 54,698

    But only 27 topics across the entire forum are imported. It’s the same 27 topics every time as well. To the point that if I stop the import, and hit the start button again, it imports these same 27 topics once more now showing 54. Is there an error log I can find that might show me why it’s hanging up? The bit above with the Calculating Hierarchy is the last update I ever get in the window. I added the lines to turn on debug logging in WordPress but nothing every shows up.

    define( 'WP_DEBUG', true ); // turn on debug mode
    if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
    	define( 'WP_DEBUG_LOG', true ); // log to wp-content/debug.log
    }
    #199889
    lflier
    Participant

    Late to the party, but instructions for enabling the TinyMCE editor are here. Instructions for styling the content inside the editor are here. TinyMCE is not Gutenberg. But it’s simple and reasonably user-friendly.

    #199887
    lflier
    Participant

    One of the problems I’ve encountered in trying to use the TinyMCE editor in bbPress is styling the text inside the editor itself. The default fonts are serif, but suppose you want sans?

    Attempting to override the font-family in the usual way — by modifying your theme’s CSS file — fails because the editor window of TinyMCE is in it’s own tiny little world as far as CSS is concerned.

    In order to get TinyMCE to use your own stylesheet, you have to pass it as an argument when the editor is called. Here’s how to do it in bbPress.

    function bbp_enable_visual_editor( $args = array() ) {
        $args['tinymce'] = array( 
                'content_css' => '/wp-content/themes/mytheme/css/tinymce-editor.css',
            );
        return $args;
    }
    add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );

    In the example above, “tinymce-editor.css” is the CSS file you want the editor to use. It is located in a folder entitled “CSS”, which is located in your theme folder “mytheme”. The code above can be copied and pasted into your functions.php file.

    Other options for the editor can be found here. Notice that the value for “tinymce” can be an array. That’s what we’re doing above.

    Additional arguments to pass in the array for the TinyMCE editor can be found here.

    I hope this helps someone. The documentation for styling the editor text could be improved. I banged my head on this problem for years until I stumbled on the solution elsewhere.

    #199882
    Robin W
    Moderator

    bbpress does not have fixed separators – it has default ones.

    you can change simply by putting this in your child theme functions file or using code snippets plugin

    function custom_bbp_sub_forum_list() {
      $args['separator'] = 'whatever you want' ;
      return $args;
    }
     add_filter('bbp_after_list_forums_parse_args', 'custom_bbp_sub_forum_list' );
    

    You also seem to be confused by templates. Theme and plugin templates are exactly that and designed to be changed if wanted. With bbpress you simply follow

    Step by step guide to setting up a bbPress forum – part 3

    #199867
    timsilva_
    Participant

    Is there any good way to convert a bbPress database to static/archived html files? I was going to try to make the WP2Static work for this, but if there’s a bbPress-specific plugin or something that already exists for this, I’d much rather use that. I looked around of course and couldn’t find anything.

    Thanks!
    Tim

    #199850

    In reply to: Cannot delete bbpress

    Amit Meena
    Participant

    use this steps to delete bbpress

    1. Log into your WordPress back-end.
    2. Go to Plugins > Installed Plugins .
    3. Scroll down until you see bbPress and click Deactivate.
    4. After the page reloads , scroll back down to the bbPress plugin , now click the red Delete link.
    5. You will now see a screen to confirm your deletion of the bbPress plugin, if you are sure you want to remove bbPress from your installation, hit the OK. button.
    6. bbPress is now uninstalled from your site.

    #199847
    Amit Meena
    Participant

    hello robin please check out this https://colorlib.com/out/jollyany-demo this is greate theme for bbpress

    #199829

    In reply to: Shortcodes not working

    Robin W
    Moderator

    so have you installed bbpress ?? installing buddypress doesn’t get you bbpress, you have to install it as well

    #199828
    atcreat
    Participant

    I created a site using buddypress. The shortcodes like [bbp-login], [bbp-register], [bbp-lost-pass] not working. It just shows the shortcode. I tested it with the theme Twenty Seventeen and NO other plugin installed. WordPress 5.1.1, PHP 7.3 (tested also with 5.6 and 7.2), and Buddypress 4.2.0.
    You can see it here: https://bbpress.at-creation.ch/login/
    Thanks for your help.

    #199823
    narola
    Participant

    Topics and Replier are not linked after importing the bbpress forum data from one WP site to another already live WP site using wordpress default importer. (tools -> import).

    Imported properly in backend but on frontend topics and replies are not linked.

    Forum repair option event did not worked. This makes topics and replies count zero on frontend.

    Need solution ASAP.

    Thanks

    Jackson Bird
    Participant

    Can you recommend a plug-in to create a pop-up in BBPress for a new topic instead of an inline form?

    Jackson Bird
    Participant

    How can I correct the error message “Error: Topic ID is missing” in my forum site created with a bbPress plugin?

    #199781
    arhatron
    Participant

    I need a forum. Two days ago, I installed wordpress 4.9.10, ok. Then installed bbPress, ok. Then installed GD bbPress Attachments, ok. Everything went so easy.

    Today I installed 5.1.1, ok. But bbPress not working. I created a “category”, a “forum”, a “topic”, all returns “Oops! That page can’t be found.”

    1 Install wordpress: database name, username, password…
    2 admin / Plubins / Add New: (1)find bbPress, (2)install it, (3)activate
    Nothing else has beed done.

    Why 4.9.10 works, but 5.1.1 not?

    royk1234
    Participant

    when bbPress page is loaded, screen changes to 4800 pixels width regardless of screen width (happens also on mobile!)

    See the horizontal scroll bar at the bottom of this page?: http://דירוג-אשראי.co.il/%d7%a4%d7%95%d7%a8%d7%95%d7%9e%d7%99%d7%9d/

    This only happes on bbPress pages, not on Posts or other site pages: http://דירוג-אשראי.co.il

    #199772
    ckriegel
    Participant

    Hi, i met this issue, and for future ppl who would face the same problem, here is a simple fix that worked for me : http://zzlatev.com/bbpress-404-header-in-users-profiles/

    it’s an issue with 404 being catched and not letting bbpress show the profile page, evenif it exists. You can add this in the theme function file :

    function bbp_fix_users_404_headers() {
        if ( ! function_exists( 'bbpress' ) ) return;       
        $bbp = bbpress();
    
        if ( !empty( $bbp->displayed_user ) && is_404() ) {
            global $wp_query;
            $wp_query->is_404 = false;
            status_header( 200 );
        }
    }
    add_action( 'wp', 'bbp_fix_users_404_headers' );
    budget101
    Participant

    @lucio – I had the same issue, I wanted my topic list to appear above my subforums, here is the easy fix.

    go to> wp-content>plugins>bbpress>templates>default>bbpress

    Find content-single-forum.php

    select lines 28-32:

    
    		<?php if ( bbp_has_forums() ) : ?>
    
    			<?php bbp_get_template_part( 'loop', 'forums' ); ?>
    
    		<?php endif; ?>

    Find these lines:

    		<?php if ( bbp_has_forums() ) : ?>
    
    			<?php bbp_get_template_part( 'loop', 'forums' ); ?>
    
    		<?php endif; ?>

    Paste the 3 lines selected above UNDERNEATH those lines (Line #50)

    #199767
    Robin W
    Moderator

    ok, that is beyond free help, but in essence you’ll need to amend templates for

    loop-single-forum
    loop-single-topics

    see

    Step by step guide to setting up a bbPress forum – part 3

    item 3

    #199762
    royk1234
    Participant

    Hi,

    I’m using Responsive theme by CyberChimps. Site orientation is RTL.

    Forum pages load on some mobiles (i.e. Galaxy) extremely wide, something like 10 times the size of the actual screen.

    The issue also appears when I use 12 on my Tabletop chrome.

    This happens only on bbPress pages. Rest of site loads fine (correct width).

    here is a link to an example page (Sprry, Site is in hebrew): http://xn—-0hcafem1af3kek.co.il/%D7%A4%D7%95%D7%A8%D7%95%D7%9E%D7%99%D7%9D/%D7%A0%D7%95%D7%A9%D7%90/%D7%93%D7%99%D7%A8%D7%95%D7%92-%D7%90%D7%A9%D7%A8%D7%90%D7%99-%D7%90%D7%99%D7%A9%D7%99-%D7%9C%D7%A6%D7%95%D7%A8%D7%9A-%D7%A7%D7%91%D7%9C%D7%94-%D7%9C%D7%A2%D7%91%D7%95%D7%93%D7%94/

    Another site that I have which is NOT RTL loads bbPress pages w/o any error(correct width).

    Any help is appreciated.

    Roy

    #199757
    fatman007
    Participant

    WordPress 5.1.1 running Twenty Seventeen theme.
    BuddyPress Version 4.2.0
    https://discovered.club – The Main Club
    f1-club.discovered.club – Just the F1 Club
    social-club.discovered.club – Just the Social Club

    Hi all. I’m getting adventurous here!
    I have three WP sites running on a domain and two sub-domains. Instead of running three separate bbPress installations, I want to use an installation with Membership 2 running on it for the main site but have two groups set up, one for F1 and one for Social Club.

    I want however, to display the widget in the side-bar with Groups and Members on all three sites running from the main site? Possible?

    Ps. I had a multisite installation before but scrapped it as it was a disaster! Don’t want to go back there if I can help it…
    Thanks in advance
    Gerard

    david081
    Participant

    hi i had created a forum with the bbPress plugin on my block, but then i still want something displaying the latest topic in forum on my front page. I have to look for some plugins to do the job but it is really difficult to find a good one.
    it will be a nice thing to me if you can really help thanks!

    #199687
    bobmarleykingg
    Participant

    Log into your WordPress back-end.
    Go to Tools > Forums > Reset Forums.
    Check the “Are you sure you want to do this?” checkbox.
    Optional: You may also want to check Delete imported users? …
    Click Reset bbPress.

    #199647

    In reply to: Designing site

    Robin W
    Moderator

    you asked

    Can you give me a CSS document that handles everything on bbPress so that I can decide how I want everything to look

    the link above tells you where it is and how to alter it.

    I’m not sure how that doesn’t answer the request 🙂

    .

    Bimufa
    Participant

    Please support me.
    I have installed Social Locker plugin | BizPanda and install bbpress plugin.
    However, after installing bbpress plugin, Social Locker plugin | My BizPanda has failed to lock the content anymore so I have to remove bbpress. After uninstalling bbpress plugin, social locker works normally.
    Please show me how to fix it.

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