Forum Replies Created
-
In reply to: Forum not working correctly
try these two plugins and see if they fix your issue.
http://www.rewweb.co.uk/bbpress-wp4-fix/
http://www.rewweb.co.uk/bbpress-wp4-fix2/In reply to: reply threading not workingIn reply to: reply threading not workingShowing the comment your are replying to next to the reply to: text bbPress does not do that. That sounds like some custom development go to http://jobs.wordpress.net/ and post a job.
as for reply threading , i guess not threading??
see if its a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Then come back
In reply to: Template in Extras Directory for Search Resultscreate a copy of page.php rename it to bbpress.php and put a conditional tag into the code.
i think use
bbp_is_search()
In reply to: Login fails for Chromeare you still having the issue??
In reply to: Notice error uopn activation of bbpresswhat version of bbPress / BuddyPress / WordPress are you using?
In reply to: need help with strange sticky behaviourIf you have a sticky topic for a specific forum when you go to the specific forum you will see the sticky topic at the top.
when you create a super sticky topic the topic with show on all forums.
when you go to the forum archive and have it show topics by fresheness it i think it shows all topics by freshness sticky or not.
if that doesnt help you , link to the weird sticky topic so i can check on the issue.
@mentions is not part of bbPress yet.
but for now you can use the @mentions feature from BuddyPress and use on forums with this code.
copy this into your child themes functions.php or use a functionality plugin.
function custom_bbpress_maybe_load_mentions_scripts( $retval = false ) { if ( function_exists( 'bbpress' ) && is_bbpress() ) { $retval = true; } return $retval; } add_filter( 'bp_activity_maybe_load_mentions_scripts', 'custom_bbpress_maybe_load_mentions_scripts' );
and i think you would get an email notification from BuddyPress anytime you get @mentioned
for multiple users you can just separate it with a space.
In reply to: Need help with my full width Forum.glad you solved your own issue.
In reply to: Avatar issue inside topicsyeah it looks fine to me to , if the issue persists reply back
In reply to: bbp-register next step checkoutThis sounds like some custom development.
I suggest you hire a developer , go post a job at http://jobs.wordpress.net/
In reply to: How to display users on bbPressThere is a way using the wp user query
https://codex.wordpress.org/Class_Reference/WP_User_Query
plugins like BuddyPress have this type of feature too.
bbPress does not have a feature/shortcode like this, but if you use BuddyPress , bbPress is compatible with it.
In reply to: Hover or other topic preview?you did hover over the topic title right??
In reply to: Hover or other topic preview?copy the original file from the plugin and copy it to your child theme.
the file should be like this in your child theme
wp-content > themes > (your child theme name) > bbpress
In reply to: Hover or other topic preview?oh i forgot , it should be in loop-single-topic.php
copy that into a child theme and put it in a folder called bbpress
In reply to: avatars in topic list viewI’m still hungup on getting the overflow figured out.
link to your site and i could help with that.
It appears they have the avatar somehow wrapped in a span, and the span has the overflow assigned to it.
i dont think you need a span for it , i could add it into the code but im sure it will be fine with just a
float:left;
what is that ? Is that bbPress forum ?
that was not a bbPress forum, its something else.
In reply to: Hook to bbpress notificationsthis is for the subscription emails sent to users when they subscribe to topics/forums
not the little notice text above a topic
In reply to: importing from phpBBthats great!!
In reply to: importing from phpBBi got my fingers crossed
In reply to: Hover or other topic preview?only thing i can think of is changing this
<?php do_action( 'bbp_theme_before_topic_title' ); ?> <a class="bbp-topic-permalink" href="<?php bbp_topic_permalink(); ?>"><?php bbp_topic_title(); ?></a> <?php do_action( 'bbp_theme_after_topic_title' ); ?>
to this
<?php do_action( 'bbp_theme_before_topic_title' ); ?> <a class="bbp-topic-permalink" title="<?php bbp_topic_excerpt?>" href="<?php bbp_topic_permalink(); ?>"><?php bbp_topic_title(); ?></a> <?php do_action( 'bbp_theme_after_topic_title' ); ?>
In reply to: Display this plugin before the username on repliesthe way you did it requires BuddyPress especially the activities part of it.
still neat though, i like how you used the wifi signal for the online status icon.
i think that is loop-single-reply.php
copy that into your child theme in a folder called bbPress before you make any changes to it.
In reply to: Request: Votingit looks like the automatic configuring will be soon in its next release.
In reply to: avatars in topic list view1.
change the size to a 48
put this into your child themes functions.php file or a functionality plugin
function rkk_topic_av() { echo bbp_get_topic_author_link( array( 'size' => '48' , 'type' => 'avatar')); } add_action('bbp_theme_before_topic_title','rkk_topic_av');
then use this CSS
put this into anywhere you can put custom CSS
a child themes style.css
jetpacks custom css module
any standalone custom css plugin.li.bbp-topic-title .avatar-48 { float: left; margin-right: 5px; }
2. i guess use the text-overflow property in CSS
here is an example.
http://www.w3schools.com/cssref/tryit.asp?filename=trycss3_text-overflow
In reply to: Display this plugin before the username on repliesremove the http:// when you go past 2 links.