Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 15,676 through 15,700 (of 26,891 total)
  • Author
    Search Results
  • pimarts
    Participant

    That’s the risk when you run software that didn’t have a proper release yet ;)

    Proper documentation will come in time, I have no doubt about that.

    If you were running the plugin that’s in the wordpress repository at the moment (beta2b or something) you might want to change that with the one in trac (https://bbpress.trac.wordpress.org/browser/branches/plugin) that has some fixes in it.

    I don’t know if they’ll fix your problem though. I never had to add any code to my functions.php to make it work and while I do have a message in my dashboard “Theme does not natively support bbPress”, it works pretty good :)

    #106681

    In reply to: Swedish for 2.0 plugin

    Why not go the official way? https://translate.wordpress.org/projects/bbpress/plugin

    Here it looks like the plugin is 100% translated in swedish :-)

    https://translate.wordpress.org/projects/bbpress/plugin/sv/default

    #107472

    Without doing some ender the hood trickery, it’s going to be hard to include all results and satisfy the majority of uses.

    bbPress already does some of this to prevent things like rouge comment forms appearing where maybe they shouldn’t. I haven’t been able to come up with a working solution that I think satisfies what 80% of the people using bbPress will want, namely because the WordPress core search function makes what we want to do, a little difficult.

    The other thing that you’re noticing is that all search results look like blog posts. That’s because that’s how the search.php in almost all WordPress themes is coded to look. bbPress can’t really intercept every possible query and scan the post_type for topic/reply, and then inject something different, on every singe possible page load. Well, it could, but I suspect the performance hit would be fairly costly and it probably wouldn’t scale well into millions of entries.

    So, we’re kinda stuck.

    In the meantime, you can append:

    ?ts=whatever

    to search topics, and

    ?rs=whatever

    to search replies in a specific topic, so I do have some logic built in to allow for this… but, it does need some massaging before it’s what I would consider to be ‘correct.’

    #39181

    So 2.0 beta has been downloaded over 15k times, which is awesome. Feedback has been coming in steadily, and I’ve been holding an official RC because of a few odds and ends that are taking some time to figure out. Hoping to get some feedback on a few specific things:

    Page Templates

    The way WordPress works, page templates can work automagically if the template name matches a page slug. This is really convenient as it automatically acts like a page template without setting it, but can get in the way if you want to use a specific page slug and not have bbPress take it over. Example:

    page-user-register.php

    If you made a WordPress page with the unique slug ‘user-register’ WordPress would automatically use that template file for that page. So far I’ve purposely picked unlikely template names so they wouldn’t collide with existing slugs. But, if that same file was renamed to:

    page-register.php

    …all it would take is making a “Register” page and bbPress would automatically have a sign-up page with no shortcodes and no more work. The adverse to that convenience is if you want to customize your sign-up page beyond what bbPress provides, you’re looking at a totally custom theme.

    This works with any template file in the root folder of a theme, so there are lots of possibilities. My goal is to satisfy the majority, so I’m thinking of heading in this direction and renaming the template files.

    Multisite

    At the moment, multisite integration works great, if you want to have individual bbPress forums with their own authorized users per forum. If you want to have all users have access to all forums in a multisite install, you’re currently out of luck. With multisite there are endless configuration options, and I see the use case for all of them.

    Which do you prefer as the default? Users can access all forums, or users can only access forums for which they have a role on that specific site?

    Search

    Right now there is no interface for searching the bbPress 2.0 integrated forums. The original implementation got negative reviews because search results were site wide, showing blog entries, topics, and replies.

    It’s currently possible to filter search results by post type (topic/reply) but most WordPress themes assume the search results will come from posts or pages, and as such aren’t styled to look like forum results, which is really confusing to the person performing the search. It’s also confusing to have multiple search boxes, or to need to pick what results you’re looking for.

    How do you think it should work? Should forum results appear in your existing blog search? Should they be separated? Should there be some kind of ‘smart search’ that knows where the request came from, and only shows results based on the type of content you are looking at (blog/forum/other)?

    Settings

    The WordPress mantra is decisions over options, but creating something as large as a discussion forum within WordPress is going to come with at least a few settings. I think our settings page is starting to get out of hand. Should we break the one page up into a few, or leave it as 1 page with all options?

    That’s what’s on my mind. If you’ve been using 2.0 for the past few weeks, your input would be much appreciated so these last few ends can be tied up and we can let this ship sail. :)

    #39180

    First off, I’m sorry to start a new thread here. I commented on one here: http://bbpress.org/forums/topic/about-search-field-in-bbpress-20-beta-3 but unfortunately it got closed, so I can’t comment on it.

    John James Jacoby told me:

    This has been covered in these forums a few times already, which may or may not be an indicator of how little the search functionality gets used. :)

    http://bbpress.trac.wordpress.org/ticket/1575

    But since I actually commented on a thread regarding the issue, it should tell John, that I actually did a search, and I had actually sought for about 30 minutes before writing the question. And a googlesearch also shows me, that it’s the only place linking to the tracticket: http://bbpress.trac.wordpress.org/ticket/1575

    Having said that. When I paste the code it just generates an error and the code in the trac ticket should be this instead:

    function my_add_bbp_to_search( $post_type ) {
    $post_type['exclude_from_search'] = false;

    return $post_type;
    }
    add_filter( 'bbp_register_forum_post_type', 'my_add_bbp_to_search' );
    add_filter( 'bbp_register_topic_post_type', 'my_add_bbp_to_search' );
    add_filter( 'bbp_register_reply_post_type', 'my_add_bbp_to_search' );

    Unfortunately I haven’t figured how to solve these two issues:

    – have pages in search results (I always only get one page shown)

    – show both forumposts and blogposts in search results.

    So any thoughts on these issues would be great.

    sovery
    Participant

    OK, I created a regular ole WP page and put the shortcode for showing the forum index in that regular ole WP page. Hit publish. I can see it. Great!

    Is there a way to get it so it doesn’t have the WP sidebar and looks more like a forum usually looks? Not like it’s inside WordPress, in other words? I am thinking this may be where implementing “forum themes” comes in? If you have a link explaining this, I’d sure love to see it. Thank you so much, again, for taking a moment to help the clueless. :-)

    One thing I notice, too, is that there are references everywhere to the “bbPress admin” area and I only see an area in WP’s normal “settings” area and it doesn’t have anything like “bbPress integration” or any options like that. ?? I do see a message on my WP dashboard, “Theme does NOT natively support bbPress.”

    #105509
    pimarts
    Participant

    The plugin version of bbpress is integrated with WordPress out of the box, so you could give that a try?

    #100409
    pimarts
    Participant

    The plugin version of bbpress is integrated with WordPress out of the box, so you could give that a try?

    #105508
    MikeBWD
    Member

    Shame they are not comparable, Should we should keep separate hosting for Word press and bbPress.

    I was looking to commission these together with a membership plugin.

    Is it possible with paid professional help or not worth the effort and I should look at another system?

    Thanks

    #100408
    MikeBWD
    Member

    Shame they are not comparable, Should we should keep separate hosting for Word press and bbPress.

    I was looking to commission these together with a membership plugin.

    Is it possible with paid professional help or not worth the effort and I should look at another system?

    Thanks

    #105507
    _ck_
    Participant

    Check wp-config.php for any lines that define a $wp-> object setting.

    They will break wordpress 3.1 or higher and give a $wp->add_query_var error.

    For example:

    $wp->cookiedomain = '.example.com';

    Will work in 3.0 and below but break WP 3.1 and 3.2

    You’ll have to research for the replacement define setting as an alternative to $wp->

    For example, the modern replacement for the above line is

    define(COOKIE_DOMAIN,'.example.com');

    #100407
    _ck_
    Participant

    Check wp-config.php for any lines that define a $wp-> object setting.

    They will break wordpress 3.1 or higher and give a $wp->add_query_var error.

    For example:

    $wp->cookiedomain = '.example.com';

    Will work in 3.0 and below but break WP 3.1 and 3.2

    You’ll have to research for the replacement define setting as an alternative to $wp->

    For example, the modern replacement for the above line is

    define(COOKIE_DOMAIN,'.example.com');

    optimyzed
    Member

    I have successfully installed the bbPress 2.0 plugin on a WordPress 2.3.1 site. I can see the Forums, Topics, etc. on the admin menus, and I have created a forum. However, when I try to view the forum using the provided link (http://server.tld/forums/forum/family-talk/) or just trying to use the http://server.tld/forums URL, results in a not-found condition. Any thoughts?

    Thanks!

    PS – I did a few forums searches. I agree with the guy who said a quick how-to would be very useful! (What to do after install…)

    #107133
    kizinko
    Member

    The WordPress one. I just figured out how to fix the dashboard without the forum. I deleted the bp-forums.php file from the main BuddyPress directory. Now my site is working (without a forum) and the dashboard works too. No idea why…

    I would like to know if there is a way to modify this file to get the forums to work with BuddyPress.

    Any ideas?

    #107132

    When you say ‘dashboard’ do you mean the bbPress one, or the WordPress one?

    #107048

    This has been covered in these forums a few times already, which may or may not be an indicator of how little the search functionality gets used. :)

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

    @manager2 – Update to a newer beta, it has Akismet baked in. It uses the existing WordPress Akismet plugin and the same API key.

    pimarts
    Participant

    Did you install the beta in the WordPress repository? Or the RC1 from the trac?

    I’m not sure, but I think only the latter has the Akismet intergration.

    manager2
    Member

    I want security in posts not comments, for WordPress I have the math plugin that stops comments, put bbpress plugin behaves separate.

    Anyway, maybe I do not understand well, I have Akismet on and doesn’t stop bots posting everyday on bb forum.

    This is my website if you want to check: fotografbucuresti.ro

    Or could I refuse posts with links? Just not working submit button if links, no other complication with error messages or guidance to the user.

    master5o1
    Participant

    Doesn’t bbPress 2.0 have integration with the Akismet plugin for WordPress, which would then be allowed to check and mark the spam comments?

    manager2
    Member

    I am referring to bbpress plugin for WordPress

    None of the security plugins work for bbpress plugin of WordPress

    Please help, I cannot stop spam!!!!

    #107047

    I too miss the ability to search across the entire WordPress installation. Any news on this? A forum without search capability isn’t much use. Unless you would want users to keep making new threads to already answered questions :-)

    #107242
    master5o1
    Participant

    anointed will enjoy 0.4.1 in that it has the option to have manual bar insertion.

    It also means that the deletion JavaScript isn’t necessary to show as there any place it is at should be the desired place, so manual insertion doesn’t insert that JavaScript.

    I had a minor derp moment on the subversion in that I made a mistake with 0.4.0, so made it 0.4.1 really quickly -_-

    Should be good.

    https://wordpress.org/extend/plugins/bbpress-post-toolbar/

    Now i’m going to have a small break and give some attention to my girlfriend :)

    #107240
    master5o1
    Participant

    Look in toolbar.css in the plugin folder. #post-toolbar

    https://plugins.trac.wordpress.org/browser/bbpress-post-toolbar/trunk/toolbar.css

    Rev. Voodoo
    Member

    Bah, had it working after upgrading to 3.2, now it’s broken again.

    https://wordpress.org/support/topic/plugin-bbpress-bbpress-fails-when-facebook-like-plugin-is-working?replies=21

    Looks like it’s on the SFC end of things tho… I think

Viewing 25 results - 15,676 through 15,700 (of 26,891 total)
Skip to toolbar