Forum Replies Created
-
In reply to: Set depth of indent for threaded replies…
You should be looking at the bbpress.css
Suggest you look for Topic and reply content and look at padding
In reply to: Edit Replies to post and get a blank pageIs this a new installation, or has this just started on an old one.
Try disabling all other plugins, and seeing if that fixes it. If so then re-add back one at a time to see which is causing.
If none, the switch to a default theme such as twentytwelve and see if it still occurs
Come back and let us know the results
In reply to: Changing bbPress templatesTry
The actions are used in the templates held in
wp-content/plugins/bbpress/templates/default/bbpress/
In reply to: How to users LOGOUT?There’s some code in the documentation to add a Login/Logout to the menu
see
item 11.
I am documenting a ‘modal’ (popup) login to add in a few days.
In reply to: How can I Delete topicYou could make one, but if you have the correct privileges you have options in the header of each topic including “trash” which will put it in the trash.
You can also do this from the Dashboard>forums>topics (or replies) and permanently delete it from there
In reply to: How to filter an arrayThanks Stephen
In reply to: different ways to get reply content?Think you probably need to crack open the plugin, and see where GD bbPress Attachments is adding a filter, and exactly what code it is using. You might then be able to mod this in your loop to re-strip it out.
In reply to: bbPress/Woocommerce/Slider Revolution conflictyes it’s always awkward when even two things don’t work together and both say it’s the other one.
In practice there well maybe no “fault”. If X chooses a hammer and nail to join two bits of wood, and Y chooses a screw and screwdriver, it is neither’s fault that the screwdriver won’t remove the nail, and X can say that Y should have used a hammer, and Y can say that X should have used a screw !
I may not be able to help, but can you post a link to your url and a sample, and I’ll take a look
In reply to: bbpress sidebar at bottom of pageNo problem. Just a quick thought, as I might be able to solve it a different way.
Are you using a page called forums and the shortcode [bbp-forum-index]
or did it just come sup in your menu when you installed it?
It’s Ok, neither is wrong, I just need to know which !
ie which in section 3 of the attached did you do
In reply to: bbpress sidebar at bottom of pageThe page you are using to display is a full width page.
Since you are using a child theme of twenty twelve, I presume you still have the default template which has a sidebar.
If so, then copy this file, and rename it to bbpress.php and put it into your theme’s root ie
wp-content/themes/twentytwelve-Child/bbpress.phpThat will ensure that bbPress uses a template with a sidebar
In reply to: Forums Page Not Workinggreat, glad you’re fixed !
In reply to: WP_Query post type topic helpsuspect that there is a variable in loop-sinlge-reply that already exists, but is not there in loop posts, so you’re getting a nil return.
I’d try hardcoding some to see if you can pinpoint.
eg look up a bbp post and see who the author is, so if post is 1126 then try
<?php bbp_author_link( array( ‘post_id’ => 1126, ‘size’ => 14 ) ); ?>
and see if that produces a result.
Or you could try
echo “bbp_get_topic_last_active_id() is “. bbp_get_topic_last_active_id() ;
to see what number that is producing at that point to know that it is doing something
if so, then you can try
In reply to: Login issue goes to blank screenNot really sure what to suggest next!
In reply to: overwrite functions with theme's functions.php@netweb Stephen, Thanks for this, and having now looked at the trac ticket and bbp_parse_args function I see how this works.
Wherever you see bbp_parse_args, there’s a filter for the function to do this.
bbp_parse_args has the format
function bbp_parse_args( $args, $defaults = array(), $filter_key = '' )The resultant filter name is made up of bbp_before_’ . $filter_key . ‘_parse_args’
(there is an bbp_after one as well!)
The filter key is the third argument in the bbp_parse_args
$r = bbp_parse_args( $args, array( 'before' => '<ul class="bbp-forums-list">', 'after' => '</ul>', 'link_before' => '', 'link_after' => '', 'count_before' => '<span>', 'count_after' => '</span>', 'count_sep' => '</span><span>', 'separator' => '', 'forum_id' => '', 'show_topic_count' => true, 'show_reply_count' => true, ), 'list_forums' );so ‘list_fourms’ in the last line is the third argument.
This should help you for the other two functions, as filters will then be obvious !
In reply to: overwrite functions with theme's functions.phpI’ll let you know if it gets changed.
Were the other two functions as bad?
In reply to: How To Change PERMALINK?Hey great, glad you’re fixed !
In reply to: overwrite functions with theme's functions.phpOk, I’ve had a think, and another look.
There is no easy way to do less than you’ve done.
The problem is that by the time the “apply filters” has been applied, the $output variable has already been created using the input variables, so changing $r is too late.
What this function needs is an earlier apply filters called say ‘bbp_list_forums_args’ for the $r variable, the you could add a simple filter along the lines of
function hide_forum_counts ($r) { $r['show_topic_count'] = false ; $r['show_reply_count'] = false ; $r['separator'] = ' '; return $r ; } add_filter('bbp_list_forums_args','hide_forum_counts') ;I’ve have suggested this is a trac ticket
Thanks Stephen – I have added this list to the Codex step by step instructions, so I won’t forget it again !
In reply to: Login issue goes to blank screenYou say you are using the widget
So you see the username, password and submit boxes in the sidebar – yes?
when I click mine, I see no change in the url, and just go back to te screen when it has logged me on.
Are you seeing a wp-login url ?
In reply to: [REQUEST] Quote, multi-quote, and signaturesHave you used the plugin bbP signature?
It is really up to the developers what they spend time on developing. They do this software in their spare time and for free.
If plugins are readily available, they’re seems little point in integrating them. A variety of plugins also gives user choice, and freedom for others to improve the code.
And you would be very unhappy be the sounds of it if they integrated some of the current plugins into core code.
So I repeat, if you don’t like the current plugins, then come back with a detailed critique of what they don’t do, and what they do wrong. That way the developers can see what could be better, and maybe then they would be fired up to add it into core.
So come back with which plugins and detailed issues and feature requests.
In reply to: Login issue goes to blank screenHas this always happened, or has it just started, and how long have you been using bbPress?
In reply to: Mirroring Forum PostsSorry, totally misread this – thought you had posts mirroring and wasted to get rid of them.
I suspect that it would be very hard to get them to just replicate in the database, hits at core code.
But you could re-do your forum templates to show them twice.
Beyond my immediate knowledge, but start by looking at you forum page loop, and then the templates viz
wp-content/plugins/bbpress/templats/default/bbpress
In reply to: overwrite functions with theme's functions.phpMost bbp functions have simple variables. Yes, there must be a shorter way, but this is an array not a simple variable, and it builds an unordered list using the array and a loop.
It has an “apply filters” as part of the function, so they are expecting it to be able to be filtered, but hopefully not by having to do it all again !
I am writing some codex guide for filtering in bbPress, and by co0incidence was just using this oen as an example, and have been trying to crack it.
I can do it by amending the template –
https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/ section 2, and save template into
wp-content/themes/yourthemename/bbpress
bbPress then uses that one.
I have posted a fresh query to Stephen Edgar or JJJ to pick up, but it’s gone into moderation as I posted a whole lot of code. Hopefully one of the two will pick it up and answer.
In the meantime yours is so far the best answer !
In reply to: Forum messed upMore of a case that the Presswork theme doesn’t support bbPress!
Since this is a premium theme and therefore you have paid for support, suggest you go on their support site and ask for their help.
BBpress uses your themes page.php file as default page template.
If you copy this (or any other page template) into the root of your theme and call it bbpress.php, it will be used instead.
ie
wp-content/themes/yourtheme/bbpress.php
If you are after individual templates, these are held in :
bbpress/templates/default/bbpress
If you want to alter these, create a bbpress folder under your theme
ie
wp-content/themes/yourtheme/bbpress
then any of these templates that you copy to this folder will be used instead, and you can modify them there.