Forum Replies Created
-
ok, you will need to modify
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-reply
make a copy of this file, and put in in a directory called bbpress within your theme, so you end up with
wp-content/%your-theme-name%/bbpress/loop-single-reply
If you know any coding you basically need to take out the div bbp-reply-author, and further up after the date add the author name
If you don’t know how to do any of that come back and I’ll try to help, but I have limited time to customise bbpress for individuals 🙂
In reply to: Sidebar reappear in topic and topic/Nothing bad 🙂
It can take me up to 1/2 hour to investigate a problem before I even start to reply. Since your are fixed here, you wouldn’t want Justin wasting time trying to find a solution to a problem that has been fixed elsewhere, so was suggesting that you closed the tickets you created at
In reply to: Forum Page does not have link to LoginYou have done it correctly and it works !
If you log out, you’ll see a login on your forum page. It doesn’t appear if you are logged in, as it is not needed then.
if you want register and lost pasword as well, then use
//add login to top of index
function index_login () {
if (!is_user_logged_in() ) {
echo do_shortcode(‘[bbp-login]‘);
echo do_shortcode(‘[bbp-register]‘);
echo do_shortcode(‘[bbp-lost-pass]‘);}
}
add_action (‘bbp_template_before_forums_index’, ‘index_login’ ) ;ok, start with
suggest you try
https://wordpress.org/plugins/bbp-private-groups/
which should let you set them up the way you want
In reply to: Admins unable to access wp-admin dashboardgreat – glad you’re fixed
In reply to: Forum list cutting offsuspect this is theme related.
Try switching as a test to a default theme such as twentytwleve and see if this fixes – if so then theme issue.
Since this is a paid for theme, I’d then suggest you contact the theme support site form help at
again please let us have a url and say what you want to be different
can you post a url to an example and say what you would like to be different
Thanks for posting this, I’ll raise a trac ticket when I get a moment
In reply to: wrong display when logged in as non-adminhmmm… presume if you turn off s2member for a moment it’s all fine?
If so, the sorry this is an s2 member issue, and unless someone else with s2 member knowledge steps in, you should raise it with them.
In reply to: get search to show summaryglad you like it – I’ve done a small amendment – download it again
In reply to: View my post, Most popular topic links@robkk – help out all you like 🙂 🙂
In reply to: User Groups and Forumsuser belong to a single group
forums can belong to multiple groupsso a user can have multiple forums, and you can build users into any that you want
In reply to: get search to show summaryOk, I’ve put the three files that I’ve amended on my site, and you can download them from there
You may want to play with the final layout.
Come back if you need further help !
In reply to: Shortcode Topic – Add Reply Formcan you explain further?
Do you have the changes but all over the site, or do you not have the changes anywhere?
In reply to: Sidebar reappear in topic and topic/great – glad you’re fixed for this one.
Don’t forget to close off your questions in the stargazer support forum, so that the author doesn’t waste time trying to answer them !
In reply to: View my post, Most popular topic linksok, so do you want this on just the main index, or on each category or all forums?
this gets increasingly complicated, as then I’d presume you’d want only the most popular and my posts to only relate to the forum shown ?
just on the main index I could probably show you, the rest would probably be beyond free help !
In reply to: Shortcode Topic – Add Reply Formno problem !
In reply to: Shortcode Topic – Add Reply Formok so if your code savvy, two approaches
1. the hack
I haven’t tried this, but it should work fine
go into
wp-content/plugins/bbpress/includes/common/shortcodes.php
and look at line
355 which says
bbp_get_template_part( 'content', 'single-topic' );
change that to
bbp_get_template_part( 'content', 'single-topicb' );
That will then get bbpress looking for a php file called ‘content-single-topicb.php’
so then you can use the method in my first post to create that file in your theme ie as per first post, but just rename the file with a b at the end.
YOU WILL need to change this each time bbpress upgrades as it will overwrite – hence why it is the hack ! But that’s hardly difficult !
2. the proper way
Would be to create your own version of the shortcode, by copying all that particular shortcode into your themes functions file, BUT renaming it (or you’ll get already loaded errors), and then lots of editing to get it to work.
Personally I’d go route 1, and just make a note to change that file each time bbpress upgrades
In reply to: View my post, Most popular topic linksIdeally I would show them above the bhp-header li
Can you gibe a link page and say where on it you would like it to go
ok, I’ve worked out that error
You have two issues
1. the code is slightly wrong, I’ve corrected it in the documentation, but you need to change your line 168 from
function add_new roles( $bbp_roles )
to
function add_new_roles( $bbp_roles )
ie an underline between ‘new’ and ‘roles’
BUT MORE IMPORTANTLY
2. you have now put the code in a core functions file of bbpress, and it cannot run there as it calls code that has not yet been loaded.
The code needs to go into your THEME’s functions.php file, not any functions file with the PLUGIN bbpress.
Please read again
[ignore this post]
In reply to: Shortcode Topic – Add Reply Formok the template you are after is
wp-content/bbpress/templates/default/bbpress/content-single-topic.php
this will alter it wherever this template is used.
make a copy of this template and put it in a directory called bbpress in the root of your theme, so you end up with
wp-content/themes/%your-theme-name%/bbpress/content-single-topic.php
where %your-theme-name% is the name of your theme
Then modify this file
to remove breadcrumbs take out line 14 which says
<?php bbp_breadcrumb(); ?>
then move line 44 (will probably be line 43 if you’ve taken out then breadcrumb!) which says
<?php bbp_get_template_part( 'form', 'reply' ); ?>
You may need to play with where to put it 9i haven’t tried it) , but after lines 21 & 22
<?php bbp_get_template_part( 'form', 'protected' ); ?> <?php else : ?>
looks a good start, if not just keep moving it til you get what you want.
If you only want it to look like this for the shortcode, then that is doable but a lot more complicated !
In reply to: View my post, Most popular topic linkswhere would you like to show these?