Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 6,776 through 6,800 (of 11,598 total)
  • Author
    Search Results
  • #110629

    Interesting. Will test some things. Can you create a ticket over at bbpress.trac.wordpress.org to remind me?

    #40805
    zofar143x
    Member

    Is there a way to alter the permalink structure of bbpress in order to make the permalinks the same as the structure that is being displayed in the breadcrumbs? It has been discussed over here:

    BBpress is not a search engine friendly forum

    However, the recommended plugin “Nicer Permalinks” doesn’t work with 2.1. Is there any other way to change it?

    Just to clarify, currently when viewing a topic it’s being displayed in the breadcrumbs like this:

    Home › forum › General › This is a test post

    but the actual link is:

    url.com/forum/topic/this-is-a-test-post

    I would like the URL to be:

    url.com/forum/general/this-is-a-test-post

    ps: “general” is the name of one of the forums

    #110405
    Andre
    Participant

    There’s not an easy way to do it yet because there isn’t a shortcode to display the latest topics. I’m sure there’s a way to code it, but I haven’t looked into how to do that.

    Also, bbpress.org doesn’t uses bbpress 2.x yet.

    #40803
    surrealalien
    Member

    This is about this site, more than bbpress itself, but I cant add comments to any Plugins on here. A number of plugins are either not working with the latest version of bbpress, or im unable to download at all. Some plugins have comments that are a week or 3 old – so how come I cant post comments?

    #40799
    kevinvaughn
    Member

    Hello,

    Does anyone know if there is an easy way to export a forum (all topics, replies and users if necessary) and import it into another bbPress site – essentially move the forum to another site?

    I am using the letest version of bbPress plugin on both sites.

    Thanks in advance for any help…

    #40797
    honski
    Member

    Hi!

    I want to get the forum appear on the front page of my blog. I have installed it successfully to a sub directory. I don’t care about the blog, I just want to use the forum.

    How can I get it to show up on the front page (root of WordPress installation)?

    Thanks!

    EDIT: I’m using the latest plugin version.

    #40784

    You posted, I listened.

    Version 2 of bbPress’s theme compatibility is now in the 2.1 plugin branch of code for your perusal. This second iteration removes the need to add current_theme_support() to your theme, and totally automates the process.

    If your child or parent theme contains the template files that bbPress looks for, bbPress will use them. If not, bbPress will fall back on it’s default templates and styling. No more logic necessary.

    Please test it. It’s new code with a new approach, so I’d like to get some fresh eyes on things right away to avoid a long beta period like 2.0 had.

    Cheers!

    #110404
    dmoz
    Member

    I couldn’t find any clear documentation on how to setup WP pages to work with bbPress, so I’m at a loss on how to use a page called “Forums” to show latest topics with a “list of forums” sidebar (instead of “Forums” displaying the forums archive).

    Any ideas?

    #40770
    spabav
    Member

    After a couple of weeks testing bbpress and several other forum solutions, we are really hesitating in running bbpress as our forum.

    From what we see the bbpress plugin, while not as feature-rich as stand-alone bulletin boards like vbulletin, phpbb or xenForo, does one thing outstandingly well, which is the integration into wordpress.

    For that reason alone, it would be worth giving it a try.

    Unfortunately – and here comes our biggest issue – it looks like the bbpress plugin is currently not given full (or any) attention from WordPress.

    My question is very simple:

    How many developers / coders are writing code of the bbpress plugin currently ?

    Is @johnjamesjacoby the only one?

    Is there anybody else “officially assigned/paid by wordpress” to work on the bbpress plugin and documentation or/and support ?

    John is doing an excellent job, on all his help he gives especially in the bbpress forum. But since the community is small and John is also working on the buddypress project, we are really worried to put our eggs in a “one-man-show plugin” basket.

    Please tell me that I got this wrong and that there are at least several people currently working on the bbpress plugin and documentation.

    Would be great if anybody could shed some light on this.

    mesayre
    Member

    Hey @WhiteRau – here’s what I’ve found on the subject so far.

    According to this:

    https://wordpress.org/support/topic/how-to-change-plugins-load-order

    It should be completely possible to make bbPress load first using the priority value in the add_action() call. So if you can figure out which function(s) you want to be sure load first, you can enter a low value (lower than 10) and it should work. I don’t have time to test it now, but if you’re curious, I doubt it could hurt anything to give it a try.

    Good luck!

    Mike

    #110345
    woodwardmatt
    Member

    Hey JJJ, I’ve just checked the user_nicename within the database and this is formatted the same i.e. “FirstName LastName” including the space.

    This user was created manually initially (and the user profile worked). Since then I have installed a commercial membership plugin that may have had its hand at work here (although it really shouldn’t have).

    I’ve done some further testing and have been able to see that the user_nicename formatting is changed when using a update function of the membership plugin. This is obviously the cause of the issue here.

    Is there anywhere that the expected formatting of the user_nicename property is detailed so that I can refer the plugin author to it? Seems the fault lies with their coding.

    Thanks for your input & help!

    #109332
    johnsona
    Member

    Thinking to start new forum and testing it within my local server but found this modification trouble also, can anyone provide solution.

    So my forum and site will go alive soon. thanks!

    #106161
    WhiteRau
    Member

    okay. this is an addendum to my previous post, something was nagging at me and it has to do with the way bbPress’ functions enqueue the stylesheets.

    you are going to have problems. i forgot a CRITICAL MODIFICATION. and it may ONLY apply to CHILD THEMES. i haven’t finished testing it on standalone themes, but put it in your watch folder…

    if you look at the bbPress’ functions, near the middle, there is a section that enqueues stylesheets. i’m not sure why this is there because, in essence, it COMPLETELY OVERRIDES any style changes you make to your child theme’s CSS. what it does is load ANOTHER copy of the parent-style’s stylesheet with a version number tacked on. this forces a precedence over your own style.css, essentially making the newly loaded CSS sheet last-defined. and we know what that means.

    so. the fix:

    1) find this line in your functions.php file (the one you have the merged bbPress functions.php code in):

    wp_enqueue_style( ‘twentyten’, get_template_directory_uri() . ‘/style.css’, ”, $this->version, ‘screen’ );

    it’s on line 149 of the original functions(2).php file from my post above, so to make it easy to find, you can do some quick math to find the relevant line number in your (merged) functions.php file. (hope that made sense…)

    2) comment it out by simply adding ‘//’ in front of it.

    3) reload. your style.css sheet will now be dominant and the css/bbPress.css file will act in a better support role, as it should.

    i understand the long-view logic of why this function does what it does, but at a non-galaxy-class-developer level, it makes for massive headaches… and you still have the fun headaches with the bbPress tags…

    hope this was also useful. it will save you going bald.

    WR!

    #40726
    labas
    Member

    Hello, I am using latest BBpress as a plugin for WordPress 3.2.1.
    I want to enable lithuanian language for BBpress, created necessary folder and uploaded language file, but i can’t find bb-config.php file. There is no such file at all… What should I do? Thank you.

    WhiteRau
    Member

    i’m adding bbPress to our WP blog, followed the instructions in the Theme Compatibility sticky and appended all the functions from bbPress/functions.php into myTheme/functions.php. as soon as i reloaded the page, i got a critical fault error. can’t find the required class. since i copied all the files across as instructed, shouldn’t the file be locatable? i’m not sure where to even begin with this. i thought integration would be relatively simple, i’m sure its something simple i’m overlooking.

    please help me out so i can get cranking. i’ve already blown away the theme i built because i didn’t know bbPress’ cute little update ‘feature’, so i’m anxious to get back on track.

    should mention, using latest of WordPress and bbPress.

    thank you very much

    WR!

    #110144

    I deleted it because I tested it myself and couldn’t duplicate it, so I knew it wouldn’t matter. :) Thanks anyways for posting though. The mystery continues.

    #110089
    Andre
    Participant

    I’ll see if I have the same problem on my test installation.

    #40612
    citizenkeith
    Participant

    I’m trying to import one of my standalone forums to the plugin. I use bbpress 1.1 and latest bbpress plugin. I ran the importer and got this error:

    Fatal error: Cannot redeclare class BPDB in /home/forum/bb-includes/backpress/class.bpdb.php on line 39

    I found this thread:

    http://bbpress.org/forums/topic/where-is-the-importer

    Following scribu’s lead, I added this to my bb-config:

    define('BB_DATABASE_CLASS', 'BPDB');

    define('BB_DATABASE_CLASS_INCLUDE', false);

    I got the same errors that he did:

    Warning: Missing argument 2 for BPDB::__construct(), called in .../forum-svn/bb-settings.php on line 197 and defined in .../plugins/bbpress/bbp-admin/importers/bbpress.php on line 29

    Warning: Missing argument 3 for BPDB::__construct(), called in …/forum-svn/bb-settings.php on line 197 and defined in …/plugins/bbpress/bbp-admin/importers/bbpress.php on line 29

    Warning: Missing argument 4 for BPDB::__construct(), called in …/forum-svn/bb-settings.php on line 197 and defined in …/plugins/bbpress/bbp-admin/importers/bbpress.php on line 29

    Fatal error: Cannot redeclare bb_cache_users() (previously declared in …/plugins/bbpress/bbp-admin/importers/bbpress.php:103) in …/forum-svn/bb-includes/functions.bb-users.php on line 39

    When I went back to the importer I see “It looks like you attempted to convert your bbPress standalone previously and got interrupted.” I chose “Continue Previous Import” and still get the error. I went back to bb-config and removed the items that I had added. Now I get this error:

    Fatal error: Cannot redeclare class BPDB in /forums/bb-includes/backpress/class.bpdb.php on line 39

    I believe I tried deep integration at one point and abandoned it. I was running the bbPress Integration plugin, not sure if that has anything to do with it:

    http://wordpress.org/extend/plugins/bbpress-integration/

    Any ideas? I’d be happy to let a developer (JJJ) take a look at things if they’d like to troubleshoot it.

    #110244

    Not exactly a problem with the tool, bu could be running out of memory. Will look into it and run some more tests.

    #40584
    Arturo
    Participant

    hi, i’m switching my standalone installation with bbpress plugin… i need the forums list like the one on testbp.org or bbpress.org but i don’t know the file to edit…

    ATM i’ve:

    Forum title

    Forum description

    Leave a comment to Forum title

    i need only:

    Forum title

    Forum description

    thanks for the help…

    #110228
    shooo
    Member

    Thank you for your answer,

    But I can’t integrate the widget as I wish in my design.

    Indeed, I can’t integrate the excerpt of the replies, I can’t properly control the CSS and I can’t (of course) include the latest comments in the last forums’ replies.

    I started by looking at the widget code by default, but I can’t decrypt properly.

    query_posts is very simple and I usually use it in my templates; is much more customizable.

    #100814

    In reply to: Where is the importer?

    citizenkeith
    Participant

    I’m getting the same errors that scribu described. I added his code to the config file, and I’m still getting that error.

    bbpress 1.1 and latest bbpress plugin (as of today).

    Standard integration, all plugins off and themes set to default.

    #105914

    In reply to: Where is the importer?

    citizenkeith
    Participant

    I’m getting the same errors that scribu described. I added his code to the config file, and I’m still getting that error.

    bbpress 1.1 and latest bbpress plugin (as of today).

    Standard integration, all plugins off and themes set to default.

    #110022
    Gautam Gupta
    Participant

    You all may try out a plugin made by @kristarellahttp://kristarella.com/snaps/bbpress-thesis.zip and see if it works. (I haven’t tested it out myself)

    #40558
    niqlaz
    Member

    I installed Buddypress. Everything works great.

    I also installed the group forum in the buddypress settings panel. But than i realized it isn’t realy a public forum.

    So i installed the wide one (bbpress 2.0) actived the plugin, i can make forums, topics, reply in the dashboard. but i cannot view them on the website.

    I can go to a recent topic but i only see the Title of the topic and the message. I don’t see icons, no forum table, nothing. (see link below)

    http://www.joeristallaert.be/comm/forums/forum/testing-new-forum/

    Do i need to create pages? if so, what kind of content/code i need to insert.

    I also don’t understand the settings : Archive Slugs and single slugs. what do in need to fill in, in those fields.

    I tried changing permalinks, but i can’t otherwise my full buddypress won’t work.

    btw It should work with my Theme. Because the official Demo of this theme bbpress is integrated.

    Thank you.

Viewing 25 results - 6,776 through 6,800 (of 11,598 total)
Skip to toolbar