Forum Replies Created
-
In reply to: Shortcode Topic – Add Reply Form
sorry, you need to put it at the end of your functions file
In reply to: get search to show summaryok, that’s deep within the search function, I’ll take a look if I get a chance, but that may bot be possible !
In reply to: Shortcode Topic – Add Reply Formok, interestingly (or not !) the forum code uses this shortcode.
Ok so plan b !
I’ve cut a quick new shortcode that looks for content-single-topicb.php
you can download it from my site
use the shortcode
[display-topic-special id=$topic_id]
In reply to: Shortcode Topic – Add Reply FormIt should work for just the shortcode, but let me test on my site
In reply to: get search to show summarynew version
very very important Robin
search by key does not look first in the title of the topic.
hmmm… I have done several searches and they all find the word both in the title and the content. Are you saying that search is not looking in both, or that you would like it to show title matches first, or that you only want title matches?
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