Forum Replies Created
-
In reply to: Can admin unsubscribe a user from a private forum?
the only way i think is to manually switch to the users account and manually unsubscribe.
this plugin might help to switch to the users account.
https://wordpress.org/plugins/user-switching/
other than that i dont think there is a way to unsubscribe particular users from the backend.
In reply to: 2 plugins i needed1.
this sounds kind of like custom development , but i think it would require maybe adding featured images support to topics. Placing the featured image template tag from WordPress and put it near the topic title maybe with a hook. Then use this plugin https://wordpress.org/plugins/get-the-image/ to catch any attachment in the post and have it as its featured image.
like i said this is some custom development so im not completely sure how it would turn out , but post a job at http://jobs.wordpress.net/ and maybe someone else will develop this for you.
2.
there is a few plugins that add this kind of functionality but i think a paid plugin like userpro will have this type of thing for sure.
In reply to: First topic text colori thought it was because you closed the topic but no your theme is adding some weird CSS to the first topic.
see if this CSS fixes your issue,
#bbpress-forums #top ul:first-child > li > a { color: #b84444; }
In reply to: automatically insert RSS linksi found this gist here , and it might be useful.
https://gist.github.com/trishasalas/9818135
plop this into your child theme functions.php or a functionality plugin
add_action( 'bbp_template_before_replies_loop', 'bbpress_rss' ); function bbpress_rss() { $url = "http" . (($_SERVER['SERVER_PORT']==443) ? "s://" : "://") . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; echo ' <a href="' . $url . 'feed">Subscribe via RSS</a>'; }
EDIT: @netweb thats sweet!!
In reply to: Change Profile Avatar Pagethats part of the extended profile feature in BuddyPress.
go to buddypress.org/support/
id say look at the bbPress breadcrumbs code and copy that and add it to your custom breadcrumbs.
its in bbpress>includes>common>
then search breadcrumbs in an editor like notepad++
In reply to: changing the message on bbp_topic_pagination_countyou probably can replace it with a post count tag that outputs the number of replies in a topic for example.
i think this is it.
<?php bbp_topic_post_count ?>
then output some text after that.
In reply to: Image captions not displaying in forum postsbbPress doesnt output shortcodes use something like this
you really shouldn’t edit core code…i hope you havent messed something up and now are getting a domino effect of issues.
you should also contact wp user avatar plugin support just in case too.
i gotta say email me , so i can double check your setup
im mostly going to ask how you set up your forum and see if i can duplicate the issue.
In reply to: Forum Headersmy only idea is using a bunch of if statements in a bbPress forum templates i guess.
what are you using for a header ?? a banner image??
In reply to: Spread out Forum titleits hard to understand what you mean by spread.
try to explain a little more with more details.
In reply to: Participant role can't edit own posts after updatecreate me an admin account , so i can see what could cause it , i will email you when i enter the wp-admin and when i leave.
In reply to: Hide Private Forums from domain../forumsyou can hide them with CSS
.forum-archive .status-private { display:none; }
In reply to: Users IP addresses showing frontendit should only be seen by keymasters.
test it out create a dummy participant user and switch to them and see if you see it anymore.
In reply to: broken widget / shortcodecan you post an image so i can identify what you mean by descriptions and buttons and please explain how it should be corrected.
In reply to: Weird freshness bugsI’m using a different forum structure (a forum index, subforums, etc. – a traditional phpBB layout
what are you using exactly??
In reply to: bbPress and security (wp-admin etc)im not sure antispam bee is compatible with bbPress though, there is a plugin for bbPress that is inspired by antispam bee though.
https://wordpress.org/plugins/bbpress-antispam/
maybe you should manually approve users using this plugin too
In reply to: New Topic Form Shortcode Issuewhat are you trying to do with the shortcode?
it should work if you just place [bbp-topic-form] in a page or a sidebar widget like blask studio tinymce widget.
In reply to: Want to modify column in forum post viewvoice count shows how many users are in a particular topic.
for topics
you can edit the
loop-single-topic.php
file by copying it into your child theme and changing the voice count number code to whatever php tag you have from a plugin that has a specific template tag to show a posts like count.change
<?php bbp_topic_voice_count(); ?>
with what you have.to edit the label voice in the bbPress header you edit
loop-topics.php
and change<?php _e( 'Voices', 'bbpress' ); ?>
and change it<?php _e( 'Likes', 'bbpress' ); ?>
for forums
its close to the same instead look for
loop-forums.php
andloop-single-forum.php
and the php code would be similar but instead of
topic_
look forforum_
In reply to: Change ../forums/forum/ ?you can edit the slugs in back-end in settings>forums
change the forum root slug to boards
change the forum slug to forumsIn reply to: Simplify Options theme troubleuse FTP and copy page.php and rename it to bbpress.php , then remove all the unwanted code like the read more buttn .
This usually fixes most theme problems.
need anymore help with this reply back , and i will give you a more detailed explaination.
In reply to: Badges next to topic titlesthis plugin looks like it should do it for you.
In reply to: blurred avatarit is most likely that you tried to make avatars bigger with CSS when they were originally sized to be smaller in the PHP code hence why you would see them blurry because you are basically stretching a small image.
link to the blurred avatars to double check though on your site.
In reply to: Replies not showing problempost a link to your website so i can check it out.
In reply to: How to show only the latest revision in log?last patch says 19months so i wouldnt touch it.
maybe using a custom last edit log using the two template tags below would work
https://codex.wordpress.org/Function_Reference/the_modified_date
https://codex.wordpress.org/Function_Reference/the_modified_author