Forum Replies Created
-
In reply to: Wrong Gravatar appears in posts and replies
Ok, apart from that I am stumped !
In reply to: Number of topics per page post_typetry
function bbp_single_replies_show($args) { $args['posts_per_page'] = 3 ; $args['max_num_pages'] = 1; return $args; } add_filter('bbp_before_has_replies_parse_args','bbp_single_replies_show');
I have not tested – I am quite busy at the moment – but keep trying !
In reply to: Wrong Gravatar appears in posts and repliesThanks for that great problem definition – that really helped.
Given all that you’ve done, I’d guess that someone has been deleting users.
When they do this, there is a prompt to either delete that users content, or attribute all content to another – can’t remember how it picks this another, but I’d see who has permission to delete users, and go ton them to see what they have been doing.
In reply to: Number of topics per page post_typemy plugin
creates that list
either use the plugin, or crack the code open to see what parameters I set
In reply to: Wrong Gravatar appears in posts and repliesok, you’re going to have to help us further here
I’ve just looked at the site, and there seem to be lots of avatars and they seem to belong to relevant authors.
Can you specify exactly what you are seeing maybe with what you should be seeing !
In reply to: Problem with shortcodeIn reply to: Problem with shortcodeok, by default bbpress shows this format
La Vie En France (1, 0), Bouwen en verbouwen (1, 0),
So you must have changed some code to get the display as per the permalink
Can you explain what you have done so far, as it should show the same in both
In reply to: Problem with shortcodeSince you don’t show us what the permalink looks like, it’s hard to answer
can you post a link to the permalink and one to the page with the shortcode
In reply to: Display recent posts without all the fluff?closest you’ll get is my plugin
If you can do some coding, you should be able to refine this further to your needs
In reply to: how to create a new topicyou’re welcome !
In reply to: How to remove (0,0) in sub forum listings?ok, all I can suggest is a conflict with another plugin or your theme
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 twentytwelve, and see if this fixes.
In reply to: How to remove (0,0) in sub forum listings?Yes. But that code is exactly the code I already had in my functions.php.
if so you haven’t tried the new code ! re-read the documentation
In reply to: bbpres adminTry
In reply to: How to remove (0,0) in sub forum listings?Presume you have tried the new code?
In reply to: how to create a new topicYou need to go into the relevant forum – eg installation, and you’ll see it at the bottom.
Not great – but I didn’t design it !
In reply to: Forum not Displaying TopicsIt 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 twentytwelve, and see if this fixes.
Come back with the results
In reply to: How to remove (0,0) in sub forum listings?STOP !!!
Ok, the codex has a couple of errors as it had not been updated following the release of 2.5.4 and also had some text that had been badly edited.
You have two choices – you cannot do both
either
which I have just updated with new code, or put this in your functions file
function remove_counts() { $args['show_topic_count'] = false; $args['show_reply_count'] = false; $args['count_sep'] = ''; return $args; } add_filter('bbp_before_list_forums_parse_args', 'remove_counts' );
Both work
In reply to: User "Editor" and "Groups & Activity".No problem !
In reply to: Importing Usersthe forum role is stored alongside the wp role in usermeta under wp_capabilities
so for instance in the database my usermeta wp_capabilities looks like
wp_capabilities a:2:{s:13:”administrator”;s:1:”1″;s:13:”bbp_keymaster”;b:1;}
In reply to: conversion of kenena 1.0 to bbpress doesnt startgreat – glad you’re fixed !!
In reply to: Wanting to try a new forum but scared and lost!bbPress forums can be private, public or hidden.
private are only viewable if logged in, hidden are only viewable by mods and above.
However my private groups plugin will give you all the control you need
https://wordpress.org/plugins/bbp-private-groups/
re importing
In reply to: bbpres adminsorry can you provide a link to ‘bbpres admin’ ? presume this is a plugin you have added?
In reply to: BBpress changing WordPress page titlesNot quite sure what is happening, but can you say if it all works if you don’t restrict the page?
In reply to: User "Editor" and "Groups & Activity".Groups and activity are buddypress not bbpress, suggest you post this is the buddypress support forum
In reply to: Public capabilities on custom post typeAre you sure it’s just a bbpress issue?
The ‘lastest’ bbpress is quite old now, so if it was an issue, I’m sure it would have been flagged by now.
presume you have
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 twentytwelve, and see if this fixes.