Forum Replies Created
-
In reply to: How to users LOGOUT?In reply to: Show forum but not posts
would require some rewrites of templates.
How into coding are you?
In reply to: no title in content-single-reply.phpcouldn’t where ‘dashcamtest.de’ was in your example.
The code is in loop-single-reply, which should show the title using line 22
That’s the way it works at the moment – it annoys me as well
You could use the plugin
WP Modal Login
This has a modal (popup) login that is happy for you to get it wrong.
It has a widget that you can use. it’s not a pretty in the widebar as the bbpress one, but smarter when it’s launched.
I have just started using this linked to a menu item, will be documenting how to do the latter when I get a moment.
In reply to: How do you put the "My Profile" link on the menu?speed wise – this executes as fast as any other menu command on my websites
which menu do you want it to appear on, and is it a custom menu?
In reply to: Changing bbPress templatesdo_action( ‘bbp_template_before_forums_loop’ );
does nothing !It is the hook onto which you would add an action using a function and an “add_action” command.
If you want to alter behaviour, the it is probably the function after it that you would want to filter.
Come back and describe what you’re trying to achieve and I’ll try and help further
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 ?