Forum Replies Created
-
In reply to: Allow Participants to Trash / own Topics and Posts
it seems from this trac ticket that even if you have the correct code, it doesn’t work, and won’t until 2.6 is released.
Thanks, do post here, as someone coming along after you may well be helped by your solution
In reply to: Child theme breaks viewing single topiccan you post your bbpress.php template page here?
In reply to: Allow Participants to Trash / own Topics and PostsI presume it is not as simple as changing
/*Customize the BBPress roles to allow Participants to trash topics
to
/*Customize the BBPress roles to allow Participants to trash topics */
on line 1, as currently the lack of a */ at the end of the line means that it just comments out all of your first function, so that function doesn’t run !
In reply to: New topicsnot available in bbpress, so would require code, so might as well be a plugin !
In reply to: Bbpress 2 domains and can be retrieved on bothnot my area of expertise, but this plugin seems to offer this
https://wordpress.org/plugins/multiple-domain/
otherwise as this is more of a wordpress thing, suggest you try their support forums
Quick one on your NOTE: Yes that was a previous version of the plugin that no longer exists.
user creation is a wordpress thing – bbpress is not involved. It only allocates the default role on first login.
Would be worth you googling ‘wordpress register email not working’, but it can be a host thing, and is worth talking to your host provider about.
In reply to: Batch close topicsThere is this plugin which might solve both, I haven’t used it so can’t say
In reply to: Topics Not Showing on Forum@loinim are you on a local or network installation? and can you confirm that this was working but now isn’t.
In reply to: Topic Date / Time under Mentionsgreat !
In reply to: Topics Not Showing on ForumSame problem here.
so can you confirm that you were working and now ‘Our topics are no longer being listed on our forum except for sticky topics I believe.’
In reply to: Background Colorthe code is still in your site !
Then I’d suggest you contact your theme author who is controlling this code and ask them for help.
Otherwise beyond my free help to work out all the code you would need.
In reply to: Background Colordeleting the code will return it – close and re-open your browser to get the css to take effect
In reply to: Topic Date / Time under Mentionsah, found out what I have done wrong
can you change the code to
add_action ('bbp_theme_after_reply_author_details', 'rew_display_date'); add_action ('bbp_theme_after_topic_author_details', 'rew_display_date'); function rew_display_date () { ?> <span class="bss-reply-post-date"><?php bbp_reply_post_date(); ?></span> <?php }
In reply to: Topic Date / Time under MentionsI’d need a link to your site
In reply to: Prevent unsubscribe when replyinggreat – glad you are fixed !
In reply to: How to delete or empty 50000 spam replies and topicsI wasn’t planning to make this a permanent tool, just trying to help rajaindian out.
I’ll think about whether to develop it further, but it won’t be soon, 6 other plugins and my proper job keep me busy !
In reply to: Topics Not Showing on Forumok, something has changed, it could be a theme or plugin update
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 twentyfifteen, and see if this fixes.
Then come back
In reply to: Is there an API for bbPress@barryhughes-1 thanks for posting back, and for the examples.
This is a whole new area, and whilst I am only interested out of eerrrmmm… interest, if others come up with things they need to achieve, I might be tempted to do a bit more.
thanks again for your valuable contributions !!
In reply to: How to delete or empty 50000 spam replies and topicsGreat – glad it works !!
In reply to: Topic Date / Time under Mentionsto hide the date at the top, put this in your css
.bbp-reply-post-date { display: none; }
Then to add to the list add this to your functions file
add_action ('bbp_theme_after_reply_author_details', 'rew_display_date'); add_action ('bbp_theme_after_topic_author_details', 'rew_display_date'); function rew_display_date () { ?> <span class="bbp-reply-post-date"><?php bbp_reply_post_date(); ?></span> <?php }
In reply to: Display Recent topics for each forum on index pageIn reply to: List of topics user has started or replied inThis would need some bespoke coding
you could try
or contact me via
In reply to: How can I define the status of sub-forum ?whilst in the forums list a sub private forum will not show, if the sub forum is set to public, then searches would show as the forum it belongs to is private.
So set every forum that you wish to be private to Private
If you don’t want the word private to appear – and I hate it showing! – then you can add this to your functions file
add_filter('private_title_format', 'ntwb_remove_private_title'); function ntwb_remove_private_title($title) { return '%s'; }
or add my plugin which has this and many other features
https://wordpress.org/plugins/bbp-style-pack/
and set this to hide in
dashboard>settings>bbp style pack>forum display item 4In reply to: formatting options unavailableok, so something must have happened to make you lose them. Have you installed other plugins or changed themes?
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 twentyfifteen, and see if this fixes.
Then come back