Forum Replies Created
-
In reply to: Create Categories and Forums Quickly?
Can’t really find anything to change the selected forums to categories. This might be the only thing you have to do though.
In reply to: Unable to install on withOkay glad you found the plugin that was causing the issue. I will try to make a list of plugins that cause issues with bbPress in the near future.
Now I guess you might have to find an alternative to that plugin.
In reply to: Create Categories and Forums Quickly?The BulkPress plugin can create Forums and is able to set and create nonexistent parent posts automatically. All you have to do is set each parent forum to a category though.
In reply to: Change meta/page title for user pagesAll of what is listed is here, only the German language you are using is the 100% finished translation.
https://translate.wordpress.org/projects/wp-plugins/bbpress/stable
Shouldn’t it be Dein Profil for a straight translation of Your Profile which is what bbPress has for profiles??
For custom plugin translations I have to look into it, there use to be a way to have custom plugin translations.
This old code is what I think you could use and test. Edit the existing German language files with something like Poedit. Save them. And Place them in a child theme for example, and put the url in the code below.
function load_bbpress_tr_mofile( $mofile, $domain ) { if ( 'bbpress' == $domain ) { // replace this. :) return 'FULL_PATH_TO_YOUR_FILE'; } return $mofile; } add_filter( 'load_textdomain_mofile', 'load_bbpress_tr_mofile', 10, 2 );
In reply to: Create Categories and Forums Quickly?Okay well there might be a way to bulk create bbPress posts, there are already a bunch of WordPress plugins that do this for blog posts. I will test to see if I can find one that works with custom taxonomies and custom post types.
I don’t think you have to go through that trouble, it would be way easier if bbPress has its own tables but it doesn’t, the posts are in wp_posts and post meta in wp_postmeta.
In reply to: Full width and sidebarThis is what I used before.
li.bbp-topic-voice-count { display: none; } li.bbp-topic-title { width: 65%; }
In reply to: Importing from SMF to bbpressWhat version of SMF are you trying to import from??
In reply to: Unable to install on withIt could always be another plugin.
Leave bbPress and Ithemes Security as the only active plugins to see if the issues persists. If the issues doesn’t show anymore, reactivate your plugins one at a time to see what could be causing the issue.
Do you still have the duplicates??
In reply to: Moderating new subscribersYeah bbPress Moderation is what you are looking for although it seems to be unmaintained. Only thing I can say about this is to make sure you have the plugin set up properly, to make sure it works well.
There is a bbPress role of Spectator which the user cannot post and only view forums. You can later switch them to Participant later in the Users section in the WordPress backend.
In reply to: Create my own FieldsRead this post for help on adding extra custom fields to the topic form.
https://wp-dreams.com/articles/2013/06/adding-custom-fields-bbpress-topic-form/
In reply to: Rss Feed !if you do not have pretty permalinks your url will be different for each post.
Here is an example of feeds for forums
mysite.com/?feed=rss2&post_type=forum
In reply to: Recently edited replies to the topI think using something like this would work for what you want.
function custom_bbp_has_replies() { $args['orderby'] = 'post_modified'; $args['order'] = 'DESC'; return $args; } add_filter('bbp_before_has_replies_parse_args', 'custom_bbp_has_replies' );
In reply to: Rss Feed !Shouldn’t it be there automatically?? just add
/feed
after the url of any forum, topic, and forum and topic archive.In reply to: Importing from WBB4Yeah that makes sense since the original file was for a user with a german/english forum I think.
You may not need this either since the original user had a german forum.
/** * Set languages, add more languages if needed * * @param int $language WBB v4.x numeric forum status * @return string WordPress safe */ public function callback_topic_language( $language = 4 ) { switch ( $language ) { case 4 : $language = 'German'; break; case 5 : default : $language = 'English'; break; } return $language; }
In reply to: Full width and sidebarStep by step might be this
- Install What the File.
- Go to your bbPress page with the sidebar, and with what the file activated you look in your WOrdPress toolbar and see what bbPress template file it is.
- Then find the file in your theme, copy it and rename it to `bbpress.php’ and remove any unwanted code such as the sidebar code.</li>
</ul>Usually in a theme the sidebar code is similar to this, so remove this to remove the sidebar.
<?php get_sidebar(); ?>
In reply to: Create Categories and Forums Quickly?Not really, the only way I can think of is exporting a file after you have created them manually so if you want to use it on another site without retyping the whole thing over again.
In my opinion 70 categories is way to much anyway.
Yay! 🙂
In reply to: Re-arrange display of replies dataYou copy the loop-single-reply.php file in your child theme in a folder called bbpress.
when you look at the code of theme template in your code editor, you will see an tag called
<?php bbp_reply_author_link( array( 'sep' => '<br />', 'show_role' => true ) ); ?>
This peice of code has attributes to display your avatar and user role. You can place similar code around each other to reorder it to the layout you want.
For more information about cusotmizing the reply author link see here.
Also I think you can reorder the reply content to show up first with CSS and just switch it around in the template file.
In reply to: Forums and posts no longer displaying!Since you found out it is your theme, you may need to contact your theme author especially if you are using a paid theme. There might be conflicting code in the theme.
If bbPress worked out of the box before, but doesn’t anymore.
Did you add custom bbPress templates??
Did you add any code to your functions.php file in a child theme??In reply to: Can’t Add Topicstry some Plugin/Theme troubleshooting
You can try increasing memory and see if that works, but only try it after you seen it is not another plugin or your current theme causing the issue and you have also tried some of the additional solutions listed.
In reply to: Private forumI think you need to use Robin’s Plugin
In reply to: Change meta/page title for user pagesFunny thing is that bbPress has listed at least 6 German languages, maybe the one you would want needs to be the German → German (Formal)??
German Swiss German German (Switzerland) German → German (Formal) Swiss German → Swiss German (Formal) German (Switzerland) → German (Switzerland) Informal
Were you restarting the import over and over?? That might be why you have a bunch of duplicates/
I think it is pretty much when 2.6 is done it gets released.
I think the version you want to revert to would be fine.
The import being stuck could be normal, or there could be a post causing all the hold up.