Forum Replies Created
-
In reply to: How to add a sidebar
looks like you’ve succeeded – do you still need help?
In reply to: Adding Widgets and Sidebars to all forum pageslooks like you’ve succeeded – do you still need help?
In reply to: Crash Victimyou will need to define what ‘all things have failed.’ means
Is you site at all accessible?
In reply to: Avatar freshnessno, normal behaviour is to both show the avatar and have a link that is clickable and goes to profile.
you definitely have something affecting this
are you certain that you have tested with a vanilla theme and no other plugins?
In reply to: Create new topic in indexgood point !
I’ve just released bbp style pack version 3.6.0
if you go into
dashboard>settings>bbp style pack>forum dispay and check item 5 Add “Create New Topic” link O(and change text if you wish)
it will add a link at the top and a form at the bottom.
Sorry – about to go on holiday so haven’t time to style this as a button !
In reply to: Only show forum with contentThis is probably a bit circular ie if you don’t show forums with no content, then no-one will know they exist to create content on them, so they will always not show !!
If you intend to create content later on, then just make them hidden and only admins and moderators will see them, and then change to public when you are ready.
If I have misunderstood, come back and explain more about what you are trying to achieve
In reply to: Avatar freshnessok, I can’t see why on a default theme with no other plugins it should not work.
I am currently suspecting wplms is turning it off.
In any event, clicking the freshness profile just goes to the home page, so something is affecting your site.
In reply to: Added plug-in, blew up sitelooks like an issue with the plugin bbp-messages rather than bbpress.
Probably that you had that plugin active without bbpress being active at a guess
In reply to: Remove brackets from email subject lineif you giuve me an example of a bbpress one I’ll chase this down
In reply to: Remove brackets from email subject linethe register one comes from wordpress, and this may help that issue
http://www.wpbeginner.com/plugins/how-to-send-a-custom-welcome-email-to-new-users-in-wordpress/
In reply to: Can not open ForumIt could be 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 twentyfifteen, and see if this fixes.
Then come back
In reply to: Can not open Forumok, if you go into
dashboard>users>all users
and under the heading ‘Users’ you’ll see things like
All (19) | Administrator (20) etc.
Look for ‘keymaster’ and click this and check that the profile you are using is listed here. Only keymasters get to see forums.
In reply to: Sorting answers inside of topicsnot sure if this does that
if not would be worth contacting the author to see if he would add it
In reply to: Can not open Forum@mouslat – can you confirm that all is ok apart from you not seeing ‘forum’ in dashboard. You can see ‘topics’ and ‘replies’ in dashboard – yes ?
In reply to: PHP 7.1 Fatal Errortry
in bbpress 2.5.12 change line 1800 from
if ( empty( $post_stati ) ) { $post_stati = (array) bbp_get_public_status_id();
In reply to: Question about creating forumsbbpress has separate roles, so if for the wordpress roles you set the user to ‘no role for this site’ and for bbpress you set as say ‘participant’ then it should work, but you will need to test as I don’t know your site’s exact configuration
In reply to: Avatar freshnessok, without a link to a live site, not sure I can help further
In reply to: Iimprovementsok, without a link to a live site, not sure I can help further
In reply to: Just a few bbPress Questions1.
I’m wanting to move the Edit/Move/Split/Post bar down
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-reply.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/loop-single-forum.php
bbPress will now use this template instead of the original
and you can amend thisthen around line 29
<?php do_action( 'bbp_theme_before_reply_admin_links' ); ?> <?php bbp_reply_admin_links(); ?> <?php do_action( 'bbp_theme_after_reply_admin_links' ); ?>
this is the bit you are wanting to move.
2.
Is there a way to have the join date underneath their photo beside the post?
yes it can be done, but would need some coding.
Same template, around line 57 you’ll find
<?php do_action( 'bbp_theme_after_reply_author_details' ); ?>
That’s where you want to add the join date, either as a hook to the action above, or as additional code.
I suspect you’ll want to pick up the date from the wp_posts table user_registered field.
using bbp_get_reply_author_id() should get you the user, and
https://codex.wordpress.org/Function_Reference/get_userdata
should give you how to use it, with say
<?php $user_info = get_userdata(bbp_get_reply_author_id() ); $registered = $user_info->user_registered; echo $registered?>
probably being close to what you want, but you’ll probably need to do some date stuff to display how you want
https://www.w3schools.com/php/php_ref_date.asp but possibly a strtotime() function
Hopefully that’s enough to get you somewhere !!
In reply to: login goes to google home pageuser fixed it by disabling an authorisation plugin
In reply to: login goes to google home pageyour login requires an authorisation code, which if you get it wrong is taking you to google.
the logon is part of wrodpress, not bbpress, but I guess that you have a plugin that is doing this authorisation, and that’s where you need to look
In reply to: How to Convert SMF to BBPressbbpress comes with a number of converters.
Once bbpress is installed go to
tools>forums>import forums and follow the screen.
In reply to: How to disable text editor?I don’t know what happened
it’s a computer – we’ll never understand them !!
great – glad you are fixed !!
In reply to: How to disable text editor?possibly
div#wp-bbp_reply_content-editor-tools { display: none; }
in the custom CSS section of your theme
In reply to: Admin Forums and Permissionsno problem – glad you are fixed !