Forum Replies Created
-
In reply to: No user password when they register?
MIght not be a Jetpack thing, but if your users do sign in with their wordpress.com account through the single sign on, they do not need a password, they just keep pressing the single sign on button.
Since it is mailpoet, then that does not use an external service if I remember correctly. So no problem with your host sending emails.
You can check right now to see if I am visible in your users section in Users > All Users, just search “deleteme”. See if you can see an approve link or something similar by user in the list.
You can also try to create an account with a separate email that you have currently for your site, with only Jetpack and bbPress activated first, and see if you get your email with your login information. I found the newsletter email in my spam folder, you may need to check there for the login information email.
In reply to: No Forum SettingsWhat is your forum user role?? Check it in Users > All Users in the WordPress backend, search your name to find yourself, or just use the above filters to see only Admin users.
Are you running multisite??
In reply to: No user password when they register?Tried to register. See this message below.
A password will be e-mailed to you.
I just haven’t gotten the email that shows my login information. I did get some newsletter from your site.
Can’t tell if there is some next step that you may have to do that has been added from a plugin like manually approving me, or your server is having an issue sending emails.
In reply to: Pagination for Forums ListingAdd this php function to your child themes functions.php file or in a plugin like functionality to increase the total ammount of forums in the page. It may also be better to just show the Topics by Freshness in the forum root instead by setting it in Settings > Forums.
function rkk_increase_forum_per_page( $args ) { $args['posts_per_page'] = get_option( '_bbp_forums_per_page', 150 ); return $args; } add_filter( 'bbp_before_has_forums_parse_args', 'rkk_increase_forum_per_page' );
In reply to: bbpress floated with 34.000 post, how to delete?At least i could prevent further entries in the two respective foren by using a math captcha and let only registered users to open new themes or respond to older ones
From what I am reading on your post, you had anonymous posting activated and without spam protection even, which is the reason why there are a lot of spam posts on your forums. Having anyone to post on forums even without an account to your site will allow spammers to just wreck havoc. And from visiting your site I can tell most of the posts are from users without an account posting on your forums.
I have de- an reactivated bbpress, un- and reinstalled it, but the messages are still there.
Doing that doesn’t delete your posts.
Since I see that there are a few posts from 2013 here and there, then most of the spam posts seem to come around October, you may need to suggest a nuclear option and possibly just delete all your bbPress forum post data in whole and start over. I am only suggesting this as i can see about 3 legitimate topics in a forum, then everything else was spam. To delete all of bbPress posts and data you have to follow this guide here and run the Reset Forums Tool. While trying to run this, tell me if it stalls up and gives you an error.
If you have a backup of your database dating back before all the spam wrecked havoc, you can also restore that and be fine, but you will possibly lose some new data like new blog posts that you might of have created.
If you do not make regular backups, make sure after the forum data is cleaned up, that you start doing so.
Remember that when you are starting a forum, you will need to have some kind of spam protection in your forums from the start, especially if you are allowing people to post without an account. Also make sure to have some moderators on your site to catch any activity as it happens.
In reply to: No user password when they register?Users should have a password when they register??
Post a link to your site and I will test out registering with it. My username will be called “deleteme” if you decide later to remove the user I registered with.
In reply to: how to add span class bbp-topic-started-inYou may need to refresh any cache if you cannot see any changes appear.
The original code in
loop-single-topic.php
from\wp-content\plugins\bbpress\templates\default\bbpress\loop-single-topic.php
Has this code. Which makes it not show up in single forum pages, so it is only visible in topics created section in your forum profile, forum search, and the topic archive on yoursite.com/topics. You may need to remove the conditional if you want to always have it visible.
<?php if ( !bbp_is_single_forum() || ( bbp_get_topic_forum_id() !== bbp_get_forum_id() ) ) : ?> <?php do_action( 'bbp_theme_before_topic_started_in' ); ?> <span class="bbp-topic-started-in"><?php printf( __( 'in: <a href="%1$s">%2$s</a>', 'bbpress' ), bbp_get_forum_permalink( bbp_get_topic_forum_id() ), bbp_get_forum_title( bbp_get_topic_forum_id() ) ); ?></span> <?php do_action( 'bbp_theme_after_topic_started_in' ); ?> <?php endif; ?>
no problem! 🙂
In reply to: Pagination on post pageIf you have reply threading activated, you do not have pagination. You should have reply post pagination with the default layout.
In reply to: Theme update broken forumGlad you found a solution. You could have created a bbpress.php file your theme to inherit for bbPress pages, but since you do have a singular.php file, what you did works too.
Did you set up your Timezone in Settings > General in the WordPress backend??
In reply to: Pagination on post pageCan you please explain a little more of what exactly you are talking about related to pagination??
Idea : Viewing 40 posts – 1 through 15 (of 300 total.
What you said here confused me, because when you are viewing 40 posts, it should be 1 through 40 not 1 through 15.
Any images you can add to better explain this, will help me a lot.
In reply to: how to add span class bbp-topic-started-inThe file you are looking for that has this code should be part of the templates you can customize if you copy the file
loop-single-topic.php
from the bbPress plugin to your child theme.In reply to: visual editor showing html in postsCommon thing to see if you activated tinymce for bbPress. Some of the html tags bbPress restricts usage from regular participants could also be used for Tinymce. Customize this function to your liking if there are many more html tags not outputting.
add_filter( 'bbp_kses_allowed_tags', 'ntwb_bbpress_custom_kses_allowed_tags' ); function ntwb_bbpress_custom_kses_allowed_tags() { return array( // Links 'a' => array( 'class' => true, 'href' => true, 'title' => true, 'rel' => true, 'class' => true, 'target' => true, ), // Quotes 'blockquote' => array( 'cite' => true, ), // Div 'div' => array( 'class' => true, ), // Span 'span' => array( 'class' => true, 'style' => true, ), // Paragraph 'p' => array( 'class' => true, 'style' => true, ), // Code 'code' => array(), 'pre' => array( 'class' => true, ), // Formatting 'em' => array(), 'strong' => array(), 'del' => array( 'datetime' => true, ), // Lists 'ul' => array(), 'ol' => array( 'start' => true, ), 'li' => array(), // Images 'img' => array( 'class' => true, 'src' => true, 'border' => true, 'alt' => true, 'height' => true, 'width' => true, ), // Tables 'table' => array( 'align' => true, 'bgcolor' => true, 'border' => true, ), 'tbody' => array( 'align' => true, 'valign' => true, ), 'td' => array( 'align' => true, 'valign' => true, ), 'tfoot' => array( 'align' => true, 'valign' => true, ), 'th' => array( 'align' => true, 'valign' => true, ), 'thead' => array( 'align' => true, 'valign' => true, ), 'tr' => array( 'align' => true, 'valign' => true, ) ); }
You may not need to completely turn off the html editor tab now, as it is quite useful for users.
In reply to: Increase pagination doesn’t workWhat you outlined in the photo I think is the reply pagination??
Might check on it, and make sure later though.
In reply to: Very big forum possible?It is not limited to 50 forums, you can create as much as you want.
It is just recommended that you use less than about 50 for your forum archive page. You can use a filter to change the number to what you want.
Add it to your child themes functions.php or in a plugin that can hold custom php code snippets like functionality.
Remember this probably doesn’t do exactly how you want. Because I am not entirely sure why you would want to put a simple input box for the admins to output an image, I am sure there might be some a plugin to output an image profile field for BuddyPress out there. Basically I just gave you some example code that you may need to edit to customize it to your needs.
In reply to: Change from Mingle ForumYou are in the bbPress plugin settings, but not the area I told you where it was.
Maybe you have a plugin that reorder/removes menu items where you cannot see it??
Still not entirely sure how this will rank image will function since I think you are just allowing users to input a custom image url, but here is an example using BuddyPress xprofile fields. It grabs the available field called “Rank” and displays the content after the reply author details.
function rkk_display_rank_image () { $user_rank = xprofile_get_field_data( 'Rank', ( bbp_get_reply_author_id ( bbp_get_reply_id() ) ) ); echo '<div class="bbp-rank-image">'; echo '' . $user_rank . ''; echo '</div>'; } add_action ('bbp_theme_after_reply_author_details', 'rkk_display_rank_image');
In reply to: Avatar SizeYou can customize the
<?php bbp_reply_author_link(); ?>
and add more attributes to it like what is explained in this guide.The functions you found, show the default arguments set for the links.
In reply to: bbpress & disappearing postHopefully soon.
In reply to: bb-smilies doesn’t appears on edit-post pagesbbPress 1x standalone is not going to work with any new WordPress plugins, unless you use custom code to allow it to somehow.
The plugin list labeled Legacy on this site, is for plugins that with bbPress 1x. The plugins section on this site, pulls plugins that work with bbPress on wordpress.org, are plugins that work with the plugin version of bbPress 2.
Your users do not really have to type a code?? They just they could just type regular smilies in text and it would output to the icon.
:) :( :P
Also I just told you, WordPress has smilies and emojis that you can use. The bbPress plugin can use WordPress’s library too. SO you may not need a plugin.
I am guessing you want something like a custom quicktag button that will show a dropdown of the smiles on your site. I can create a ticket for this if you want, and then we can see what the devs think of trying to add this to core.
In reply to: Change from Mingle ForumIf you have the bbPress plugin activated on your WordPress site.
Go to Tools > Forums, then select the Import Forums tab at the top, then in the forum platform dropdown select mingle forum.
no problem 🙂
In reply to: right to left directtionGlad you found a solution.
If you didn’t already, contact the theme author support too, because they might add it easily into their theme.