Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 13,851 through 13,875 (of 64,535 total)
  • Author
    Search Results
  • #166941

    In reply to: Profanity filter

    Robkk
    Moderator

    I do not use the plugin, I just found it in the WordPress repository.

    The plugin author has been active in the support forums in the past few weeks, so I assume people are using it still and with at least most with the latest version of WordPress.

    You can contact the plugin author in their support forums if you have any concerns with the plugin working with the latest version of WordPress.

    If a bbPress post contains a word that you put in the comment blacklist, the topic or reply will be marked as pending, and will be pending until moderation approval.

    Moderation and BlackListing

    The plugin I linked to just replaces profanity words you list with characters such as ***

    #166940

    In reply to: Profanity filter

    mica123
    Participant

    Thanks very much. I had a look at the wp-content-filter but this is compatible
    to WordPress 4.0.8 and it was last updated more than a year ago. Are you using this
    plugin yourself?

    I read the topic you pointed me to. It is not clear to me if bbPress has its
    own profanity filter?

    Thanks.

    #166939
    Robkk
    Moderator

    Which one did you link me?

    Robin’s plugin for just bbPress fields.

    What I did, which seems to work fine for now…

    Yeah I told you the WordPress code would work. If you want cleaner templates you may nee to use the hook.

    bbp_theme_after_reply_author_details

    I might be saying very stupid things here (gotta learn some way), but I tried changing bbp_theme_before_topic_title to bbp_topic_class which is what my inexperienced self thought would do the trick, but it didn’t.

    Oh, you are trying to make a post class. You can try this to see if it adds a new-topic post class to any new topics. I haven’t tested this though.

    add_filter( 'bbp_get_topic_class','rkk_unread_topic' );
    function rkk_unread_topic($classes) {
    	$offset = 60*60*1; 
    	if ( get_post_time() > date('U') - $offset ) {
    			  $classes[] = 'new-topic';
    		  return $classes;
    	}
    }
    #166938
    Robkk
    Moderator

    Does it actually print the paragraph tags??

    This is for any new topic/reply right??

    You might possibly see if this is a plugin issue, maybe something that modifies Tinymce somehow?
    You can also check to see if it is a theme issue also, or a possible code snippet in a child theme.

    Troubleshooting

    #166935

    In reply to: Profanity filter

    Robkk
    Moderator
    #166933

    Topic: Profanity filter

    in forum Plugins
    mica123
    Participant

    As far as I know bbpress can work with the widely recommended Akismet plugin. Is there a good profanity filter plugin that would work with bbpress?
    Many thanks.

    #166932

    In reply to: Phpbb imort

    Stephen Edgar
    Keymaster

    Sounds like the issue I’ve got documented on the codex here:

    Import Troubleshooting

    #166930
    rebecca-paisley
    Participant

    Nevermind it was a conflict with Askimet and BBpress. This is resolved.

    #166929
    rebecca-paisley
    Participant

    BBPress Version: 2.3.3
    WordPress Version: 4.3.1

    http://www.flasco.org

    The forums are completely private from public view via a membership plugin (WPMUDEV Membership2). However, every time anyone (members) posts into the BBP forums, everything is going to spam. None of it is actually spam though.

    Any idea of why everything would be going to spam?

    I deactivated all plugins related to BBBPress, but that didn’t remedy anything either ..

    #166928
    matthew.stephens
    Participant

    Sounds like this is a plugin conflict. Masking the issue as you mention would not resolve it and potentially create further more serious issues. Given these are two pretty widely installed and reputable plugins, would it not be sensible for bbPress and Yoast to get together and resolve the issue properly please? Otherwise, one or the other will have to go. Thanks.

    #166915
    Robkk
    Moderator

    The custom profile fields, what exactly do they do? I get that I can now add my Twitter handle from profile settings, but it’s not displayed anywhere on the site.

    Yeah you have to manually place the any extra fields you want on the frontend of the user profile and and place the code in the template user-profile.php, that should be in your child theme for easy customization.

    in user-profile.php you will already see an example of the user’s description field being displayed, and you would need to do some of the same procedure.

    <?php if ( bbp_get_displayed_user_field( 'twitter' ) ) : ?>
    
        <p class="bbp-user-twitter">
            <a href="<?php bbp_displayed_user_field( 'twitter' ); ?>" title="<?php bbp_displayed_user_field( 'display_name' ); ?>'s Twitter" rel="nofollow">
                 <?php bbp_displayed_user_field( 'twitter' ); ?>
            </a>
        </p>
    
    <?php endif; ?>

    I will probably put an example for user’s to place the links on their profile templates later on that guide.

    I would love for it to be displayed beneath my avatar and username phpBB-style in topics, or at least on my visible forum profile.

    Yep, there is a way to that too. I can’t remember much but I think it just involves a hook to place the data. There is a plugin Robin made that can basically do that. There is also a different plugin for displaying BuddyPress profile fields. You can dig around the plugins code if you want to see how he did it.

    https://wordpress.org/plugins/bbp-profile-information/

    This doable? Obviously I can’t use the_author_meta() in bbpress, so…

    I think it is possible to just use the WordPress code with bbPress. bbPress is just a plugin of WordPress now.

    Also, instead of adding labels to certain topics. Can I add classes so I can do changes in CSS?

    Yeah you do not have to leave the [status] and just leave the classes there so you can style with just CSS.

    #166913
    Robin W
    Moderator

    If you want to delete everything bbpress datawise and start again then

    Dashboard>tools>forums>reset forums

    #166912

    In reply to: Is there a REST API?

    Robkk
    Moderator

    Try not to bump very old topics at least older than a year, especially ones that are 8 years old!!

    There is an API or an example API in the Jetpack plugin.

    https://plugins.trac.wordpress.org/browser/jetpack/trunk/class.jetpack-bbpress-json-api-compat.php

    There have been users trying to make apps with bbPress.

    WordPress JSON Rest API bbPress and Android

    Also know there has been work to introduce an API into WordPress.

    https://wordpress.org/plugins/json-rest-api/

    And there already have been plugins in development for compatibility between the WP-REst API and bbPress like this one.

    https://github.com/thenbrent/BB-API (Alpha version)

    Any contributions for any work toward any type of bbPress Rest API are welcome and much appreciated.

    #166911
    tkse
    Participant

    This works nicely. Sorry to bug you so much.

    The custom profile fields, what exactly do they do? I get that I can now add my Twitter handle from profile settings, but it’s not displayed anywhere on the site. I would love for it to be displayed beneath my avatar and username phpBB-style in topics, or at least on my visible forum profile. This doable? Obviously I can’t use the_author_meta() in bbpress, so…

    Also, instead of adding labels to certain topics. Can I add classes so I can do changes in CSS?

    Thanks! 🙂

    #166910

    In reply to: Is there a REST API?

    Loc Pham
    Participant

    I’m also looking for the REST API for bbPress but unable to find info on it either.

    #166908
    reminisce32
    Participant

    Thanks for the response. Can you provide the link to convert a vbulletin 3.8? I only see the vBulletin v4.x Importer for bbPress.

    #166907
    Robkk
    Moderator

    Pretty permalinks should work fine in bbPress if you have set up the permalinks to use the post name structure in Settings > Permalinks.

    https://codex.wordpress.org/Settings_Permalinks_Screen

    I don’t think it would be a step backwards, I am not sure all that the vbSEO plugin did SEO wise, but I bet there is a WordPress plugin that works fine with bbPress.

    There are two different vBull converters, vBulletin and vBulletin3. The last one is what you would want to use.

    #166906
    Robkk
    Moderator

    Not really a bbPress related question, but use this.

    ul#menu-secondary-menu {
        float: right;
    }

    Make sure to keep it bbPress related next time.

    #166905

    In reply to: Facebook Meta Data

    Robkk
    Moderator

    It might be that bbPress does not have support for featured images, and the SEO plugins pull from the featured images.

    I think you are the first to mention a feature request for a fallback image in bbPress.

    There have been users that were suggesting a possibility for featured images for forums for forum thumbnails/icons. There is a neat little piece of code to that here.

    http://www.kristarella.com/2013/04/bbpress-forum-icons/

    There might be a way to get the forums featured image to and I guess set it as the child posts (topic) featured image, but right now I am not sure how to do that right now.

    #166904
    Robkk
    Moderator

    Yeah I think you could just use amembers login if it works fine with WordPress. You may need to check if the user registering into amembers registration forms acquire their bbPress forum role to even participate in the forums correctly.

    They are technically logging into your site not just the forums, everything is unified when using bbPress with WordPress. Unless you want everyone to redirect to your forums, or if you want a referer redirect like if a user registers from a bbPress forum page and they should be redirected back where they were previously before registering.

    From posts I see on the amember forum they should integrate nicely. The amember plugin also has some kind of plugin integration with bbPress. If you need any extra help from users setting up with amember with bbPress and WordPress, you may need to contact their support forums as there are more topics about the integration between the software on their site.

    #166903

    In reply to: Adding design to page

    Robkk
    Moderator

    I am not sure using Visual composer, but since bbPress has dynamic pages and not static WordPress pages, I am not sure a page builder will help much.

    If you have a custom bbpress.php file in your theme you can add a banner to all bbPress pages or just the ones of your choice with some conditionals.

    If you are adding the banners using a shortcode you can echo the shortcode like this.

    <?php echo do_shortcode("[shortcode]"); ?>

    Just make sure to edit the bbpress.php file in your child theme and place the shortcode in the template.

    #166901
    Robkk
    Moderator

    I guess double check and make sure the email is the same.

    https://en.gravatar.com/support/gravatar-locations/

    You can also try and see if a plugin/theme is causing the issue.

    Troubleshooting

    #166895
    Robkk
    Moderator

    This guide should be helpful.

    How to change my user avatar?

    #166893
    Robkk
    Moderator

    Give me a minute to finish creating some trac tickets for a mobile layout in bbPress. I am trying not to include everything one single trac ticket.

    The mobile layout I was working on long ago was never really that great from what I can see now. It does take some points from other forum software though, but in just some areas it didn’t stay tidy well enough without causing a mess at 320px.

    Just a sidenote this topic from what I can tell, the user I think enabled threaded replies which doesn’t have a responsive styles in the bbpress plugin. And what is already there for responsive styles for the replies do not work because of some markup bug caused by the threaded replies feature and possibly its walker code.

    #166889
    TKServer
    Participant

    I’m going to build a sports fan site which will have a discussion group/forum area. I’ve got pretty deep WP experience on the admin side, and have written my own themes and plugins in the past in PHP.

    I’m trying to grasp the structure and flow of bbPress. I installed it on a dev server and have been playing around and still not really sure how it is supposed to work. It’s not terribly intuitive to me.

    I create a forum, but it is inside the “forums” so my ugly url is mysite.com/forums/forum/forumname. That’s kind of poo, but fine. After I create the forum I see nowhere to create a new post in the front end. So I create a topic in the back end and try to attach it to a forum, but it will only attach to certain forums and not others. Haven’t figured that out yet.

    How do I simply have one forum with sub topics like this:

    Sports
    –Football
    —football posts go in here
    –Baseball
    —baseball posts go in here
    –Basketball
    —basketball posts go in here

    Any input would be great.

Viewing 25 results - 13,851 through 13,875 (of 64,535 total)
Skip to toolbar