Forum Replies Created
-
In reply to: Display this plugin before the username on replies
if you could im sure that will help other users even the developer.
In reply to: avatars in topic list viewyou can use this PHP function
function rkk_topic_av() { echo bbp_get_topic_author_link( array( 'size' => '32' , 'type' => 'avatar')); } add_action('bbp_theme_before_topic_title','rkk_topic_av');
here is some custom CSS you can use.
li.bbp-topic-title .avatar-32 { margin-right: 5px; }
then to remove the small one you can copy loop-single-topic.php into your child theme into a folder called bbpress.
look for
<span class="bbp-topic-started-by"><?php printf( __( 'Started by: %1$s', 'bbpress' ), bbp_get_topic_author_link( array( 'sie' => '14' ) ) ); ?></span>
change it to.
<span class="bbp-topic-started-by"><?php printf( __( 'Started by: %1$s', 'bbpress' ), bbp_get_topic_author_link( array( 'type' => 'name' ) ) ); ?></span>
In reply to: Display this plugin before the username on repliesthe plugin is still fresh it was uploaded to the WordPress repository 5 days ago.
making the online status location configurable seems to be on the developers to-do list.
i did see that the plugin author did reply back though.
and you did figure how to show the green/red icon , so if you could tell him how you did it to help with future development of the plugin.
In reply to: No Forum menu options in dashboard controlscontact the plugin author about this, so that maybe compatibility would work in the future.
In reply to: BBpress post edit causes multiple activity entriesthis should be a direct path to the activity.php file that you would need to edit
/wp-content/plugins/bbpress/includes/extend/buddypress/activity.php
follow all the comments in here https://bbpress.trac.wordpress.org/ticket/2690
and you should see dans fix for the patch to make it work.
@netweb has more expertise on helping you with this keep contacting him on slack.
In reply to: Forum issuethats weird contact jetpack support it shouldnt be causing an issue.
In reply to: Weird freshness bugsyour issue very well might be the same as the trac tickets you posted
but i cant confirm.
i suggest you contact the bbPress plugin developers in slack.
In reply to: BBpress post edit causes multiple activity entriesyou manually edit the plugin , or you use some software to apply the patch.
but you shouldnt do that, i didnt read all of the trac ticket and it says it is still having issues.
i guess wait for the patch to be fixed in a future release.
In reply to: importing from phpBBsorry i made a typo
i meant to say
All i can recommend now is put all your data back from aMember all to your phpbb installation and just import phpbb cleanly into bbPress.
In reply to: @mentions featurebbPress i think will have @mentions in a future release, but for now you can use BuddPress’s own scripts for bbPress using this function.
add it to your child theme functions.php or 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' );
In reply to: unique forum topic iconsthis tutorial might help you.
In reply to: Block/Ignore Users?its old but there is this
In reply to: Removing Spam usersif you want use this plugin and provide use some information on how it does for your installation.
it requires Akismet, and basically it rescans all your topics and replies for spam.
the settings should be in tools > bbpress spam cleaner.
https://github.com/lenrsmith/bbpress-spam-cleaner
another tool that might help is wanguard.
In reply to: topic-reply-count: starting at "1"i say use
<?php bbp_topic_reply_count() ?>
and use math with it.this code and where i think you want to modify it should be in loop-single-topic.php
make sure you copy it to your child theme into a folder called bbpress so an update doesnt lose your data.
In reply to: importing from phpBBI dont know what to tell you??
do you want to still use the aMember plugin with bbPress and WordPress??
or you want to leave aMember??
All i can recommend now is put all your data back in aMember and just import phpbb cleanly into bbPress.
In reply to: Migrating from PHP-Fusion to WP/BP/bbPThere is not a finished PHPfusion importer from what i can see.
You might need to hire a developer to finish the existing PHP-Fusion importer for bbPress.
post a job here http://jobs.wordpress.net/
All else you can contact @netweb but im sure he will be very busy.
contact him on slack
In reply to: Import "Progress" image brokeni will look into the image issue.
did you import okay??
or are you waiting for the image to be fixed first??
In reply to: Weird freshness bugsStructure shouldn’t be causing an issue.
But now to my observations about freshness. I think it’s a caching problem.
do you have cache on for logged in users?? it is usually recommended to not have cache for logged in users.
use this CSS
#bbpress-forums ul.bbp-reply-revision-log img.avatar, #bbpress-forums ul.bbp-topic-revision-log img.avatar, #bbpress-forums div.bbp-template-notice img.avatar { display: none!important; }
In reply to: Search only works with single wordare you expecting an advanced search that would be similar to goole
like say i search this
shark + attack – sharkweek ??
you might need to use a search plugin to make the default search more advanced if you want it that way.
In reply to: BBpress post edit causes multiple activity entriesYou can wait til the patch is added to core in a future release.
or you can hotfix the issue with the patch here
In reply to: Misalignment/Margin Problemgreat! glad you solved your own issue.
In reply to: Topic / Forum Info Widgetthis is pretty much it , no styles though.
https://wordpress.org/plugins/bbpress-info-widgets/screenshots/
In reply to: Tittleif your talking about the category layout that default phpbb usually has.
Then use this file
https://github.com/robkk/bbPress-Hierarchical-Forum-and-Category-Layout
download the zip.
take the loop-forums.php file and put it into your child theme in a folder called bbpress
https://wordpress.org/plugins/bbp-style-pack/
also has a file like this but i think you have to manually install this too.