Forum Replies Created
-
In reply to: Topics and replys exists and dont at the same time!
Try some troubleshooting, and also link to your site to a forum where the error occurs. Also tell me your WordPress and bbPress versions are.
In reply to: My Topic Isn’t Showing In This ForumThere is a 2 link limit on these forums, these links include links in images.
Is this the topic you are talking about??
In reply to: features like vbullWhat kind of features are you looking for? BuddyPress can handle most of the social network aspects that vBull does.
Since you said layout are you looking for something similar to this??
In reply to: Tool bar missing Register?Not really a bbPress issue, but you can follow this if there is not a register link by default.
http://www.wpbeginner.com/wp-tutorials/how-to-add-custom-shortcut-links-to-wordpress-toolbar/
In reply to: Getting only one commentthe
bbpress.php
template looks fine to me.There might be other custom functions for bbPress somewhere though? or cache?
Try some troubleshooting. See if it is a plugin issue, issue is only present in your custom theme, and maybe run the repair tools to recalculate.
In reply to: Can’t modify a post forum (users nor admin)That’s great!! I really just guessed and all though haha 🙂 .
I am going to become an alcoholic getting all these donated beers haha 😉 .
In reply to: Limit tags to a pre-defined list?That might be custom development, you may need to hire a developer to create this for you.
In reply to: List subscribers of a forum@casiepa Thanks for creating a plugin to solve this problem for users. It is greatly appreciated. I have a few questions though.
How do I use it??
The setting are confusing me a little bit, and it doesn’t seem to show the subscriptions, but I do not really know where to manage them in the plugin. I just see a list of users with a button that says `[has role]’. I also do not think your plugin works for sub-forums/child forums of categories.
How does it work exactly??
I try to set it up, but I am still confused. Also there are a few errors while activating it with debug set to true in my wp-config.php file.
define('WP_DEBUG', true);
In reply to: Add “Agree to Terms” in Reply & Topic Creation FormsThis might be custom development since it is the reply/topic forms. You may need to hire a developer to create this kind of functionality for you.
If you basically using this as spam protection you can use this.
https://wordpress.org/plugins/bbpress-no-captcha-recaptcha/
You can also just link to your terms and condtions in the reply form too.
For registration/login forms you can use this plugin.
https://wordpress.org/plugins/agreeable/
You could possible hook the above plugin to work for reply/topic forms somehow though.
In reply to: bbPress URL Rewrite shenanigansGlad you got it to work. 🙂
In reply to: edit topic input displays full HTMLThis kind of looks normal since when you edit the topic all you see is the Text editor which will show the html tags.
Also did you copy and paste the content of the whole topic page as an test, or was it just like that??
Are you using this plugin??
https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/
In reply to: Can’t modify a post forum (users nor admin)I tried the theme and plugins with bbPress and I didn’t come across any issues.
I am kind of thinking it could be the index.php in your url causing the issue, but I am not really sure.
https://codex.wordpress.org/Using_Permalinks#PATHINFO:_.22Almost_Pretty.22
Since I am not 100% sure, you can try some troubleshooting to see if you can find the solution to your problem.
yeah I can’t get it to work either.
I think you could also just use the plugin bbPress Topics for posts for this kind of functionality though.
Install a plugin like Reveal IDs, and when you go to Forums > All Forums in the WordPress backend you will see all the forum IDs next to each forum.
There are other ways of getting a posts ID, but this is the easiest way.
In reply to: Integrate bbPress with Social builderLink to the plugin you are talking about. I am having a tough time finding the WordPress plugin.
In reply to: How to stop “tag” page opening in sidebar?Are you using the Divi theme too?? Divi has quite a few issues running with bbPress installed.
In reply to: Change font sizeThis is the default font-size in the bbPress stylesheet. You can overwrite the statment or install a plugin like bbp style pack which I think would take care of this for you.
#bbpress-forums { background: 0 0; clear: both; margin-bottom: 20px; overflow: hidden; font-size: 12px; }
In reply to: Inserting Forum Element on Front PageIn reply to: Alternative to “You must be logged in…”You can copy the
form-topic.php
into your theme/child theme into a folder called bbpress to customize the file used on your site.You can scroll all the way to the bottom of the file, and replace the current message
<div id="no-topic-<?php bbp_topic_id(); ?>" class="bbp-no-topic"> <div class="bbp-template-notice"> <p>You must be <a href="<?php echo site_url('/wp-login.php') ?>">logged in</a> or <a href="<?php echo site_url('/wp-login.php?action=register') ?>">registered</a> to create new topics.</p> </div> </div>
In reply to: Showing Profile InformationIn BBpress each user has the ability to edit their profile users/USER/edit/
Here they can add their name, their website link and their bio by default. However, this information is never actually displayed on their profile. Why is this?The bio should show.
https://bbpress.org/forums/profile/robkk/
As for most of the other fields, not sure really. I know though they are just going off of WordPress’s profile fields, and whatever is added to that though. I don’t know why the devs haven’t put at least website there. Maybe it is easy for spammers to take advantage of that?? First Name and Last Name could make good choices to display on the users profile too.
I will probably make a suggestion to the devs later to add more profile data to the user’s profile.
You can of course display the data in the profile by editing a template or installing a plugin.
Copy
user-profile.php
from the bbPress templates in the plugin to your child theme in a folder called bbpress.Just surround the code with conditionals to only display the information when the user has inputted any information.
You have something like this for first name.
<?php if ( bbp_get_displayed_user_field( 'first_name' ) ) : ?> <p class="bbp-user-fname"><?php bbp_displayed_user_field( 'first_name' ); ?></p> <?php endif; ?>
YOu can also use the plugin, to display the current fields and also custom fields.
In reply to: Merge Topics ProblemTry some troubleshooting especially what is listed for plugins. Deactivate every plugin except bbPress to see if the topics can merge correctly. Activate BuddyPress right after to see if topics merge correctly in groups and normal forums. Next, activate every other plugin one at a time to see what could be causing an issue.
If you still cannot merge topics with only bbPress activated, try the other possible solutions listed like trying a default theme to see if that fixes your issue.
In reply to: Quotes brokenYeah you need to contact them if that plugin is not working right.
In reply to: Quotes brokenYou need a plugin to use quotes with bbPress. The best plugin with quotes is GD bbPress tools.
In reply to: Wrong Freshness for Scheduled TopicsIf the topic has any new replies to it, the Fresness time changes when any new replies are posted. Freshness time is basically tells you the time when the Last Post was posted, not the published date.
To see the published date, go into the topic and toward the top-left of the topic by the labels Author and Posts you should see the published date.
But if the topic did have no replies, and also shows the wrong time, then I might need to report as a bug/do testing to duplicate the issue.