Forum Replies Created
-
adds some pictures and add more details on what you might want.
im sure though it might be some custom development.
and you might need to hire a dev at http://jobs.wordpress.net to devlop this for you.
In reply to: bbpress don't show reply in topic pagepost a link to a topic page that should have replies and ILL see if i can find some CSS that might be causing the issue.
yeah that’ll do it , or just installing this
https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/
In reply to: Changing name of "Key Master"try this code from this link
https://gist.github.com/ntwb/7864894
and rename the ones you want
add_filter( 'bbp_get_dynamic_roles', 'ntwb_bbpress_custom_role_names' ); function ntwb_bbpress_custom_role_names() { return array( // Keymaster bbp_get_keymaster_role() => array( 'name' => 'My Custom Keymaster Role Name', 'capabilities' => bbp_get_caps_for_role( bbp_get_keymaster_role() ) ), // Moderator bbp_get_moderator_role() => array( 'name' => 'My Custom Moderator Role Name', 'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() ) ), // Participant bbp_get_participant_role() => array( 'name' => 'My Custom Participant Role Name', 'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) ), // Spectator bbp_get_spectator_role() => array( 'name' => 'My Custom Spectator Role Name', 'capabilities' => bbp_get_caps_for_role( bbp_get_spectator_role() ) ), // Blocked bbp_get_blocked_role() => array( 'name' => 'My Custom Blocked Role Name', 'capabilities' => bbp_get_caps_for_role( bbp_get_blocked_role() ) ) ); }
In reply to: layout problem with bbpressi work on bbPress on WAMP all the time and it works fine for me.
could it be a theme issue?? try switching to a default theme like say twenty twelve.
In reply to: Replies only posting partial contenttry to find a plugin issue first
deactivate your plugins one at a time with bbPress still active and see if any of them are causing the issue with bbPress.
switch to a default theme temporarily to see if its functions in your theme causing the issue.
come back with results
In reply to: Looking for a bot for my own forumsince the bbpFauxData plugin doesnt work use the other ways listed in the article @sam-rohn posted.
especially use the XML file that was in the trac ticket he linked here
https://bbpress.trac.wordpress.org/ticket/2516
i think you need to the wordpress importer plugin to use the data from the XML file.
In reply to: How do I approve the first posts only?We have installed the latest bbPress + latest WP on our site. Also we have Disqus if this matter.
yeah Disqus not really
We read that bbPress is integrated with ‘Discussion’ settings from WP installation.
well it does but only the comment blacklist and comment moderation , not anything else yet.
more info on this link.
(codex.bbpress.org/moderation-and-blacklisting/)
No answer here? Perhaps a plugin?
sorry its the holidays in the U.S. , we are spending time with families.
there is a plugin though!
In reply to: CSS issuetry this
add this code anywhere you can put custom css
li.bbp-body div.hentry { margin-bottom: 0; overflow: hidden; padding: 0px !important; }
does the footer do anything important at all in bbpress inherently?
not really, its just for design really.
like bbpress.org doesnt even show the footer for the forums , topics , and replies loops.
and the file loop-forums.php is only for the forum archive page, so it only shows up on that page.
the loop-forums.php file you downloaded from github
and in the same file you can change word Freshness to whatever you want.
just change this
<li class="bbp-forum-freshness"><?php _e( 'Freshness', 'bbpress' ); ?></li>
to something like this for example.
<li class="bbp-forum-freshness"><?php _e( 'Last Post', 'bbpress' ); ?></li>
In reply to: Import Hung?we are not dead :/
@netweb is the bbPress community’s import specialistthe guy is most likely asleep now because he was working on some bbPress tickets all night… or all day depending on Aussie time??
as for bbcodes bbcodes is not a default feature for bbPress you would need an additional plugin for that.
https://wordpress.org/plugins/gd-bbpress-tools/ this plugin comes with a quote feature and more.
there is another plugin called bbpress 2 bbcode which would also need the whitelist plugin by the same developer.
well really your suppose to put bbPress plugin CSS in a folder called CSS in your child theme in a file called bbpress.css , more info here
https://codex.bbpress.org/theme-compatibility/
but adding the code to your child themes css file is fine
jetpack’s custom css module is fine too.to remove the footer completely
remove all this code in the file.
<li class="bbp-footer"> <div class="tr"> <p class="td colspan4"> </p> </div><!-- .tr --> </li><!-- .bbp-footer -->
its no problem with the file
its just that the footer is a different color than it should be
this should make it look better
#bbpress-forums li.bbp-footer { background: #383838; border-top: none; font-weight: bold; padding: 8px; text-align: center; }
In reply to: bbPress in wordpress search resultsadd this to functions.php in your child theme
/** * Include bbPress 'topic' custom post type in WordPress' search results */ function ntwb_bbp_topic_cpt_search( $topic_search ) { $topic_search['exclude_from_search'] = false; return $topic_search; } add_filter( 'bbp_register_topic_post_type', 'ntwb_bbp_topic_cpt_search' ); /** * Include bbPress 'reply' custom post type in WordPress' search results */ function ntwb_bbp_reply_cpt_search( $reply_search ) { $reply_search['exclude_from_search'] = false; return $reply_search; } add_filter( 'bbp_register_reply_post_type', 'ntwb_bbp_reply_cpt_search' );
got the code from here
In reply to: bbress topic box to write contentyou can use CSS but using this plugin is a whole lot easier
https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/
if this is still an issue i can solve it with some simple CSS
you can place this code into your child themes functions.php file
/** * Include bbPress 'topic' custom post type in WordPress' search results */ function ntwb_bbp_topic_cpt_search( $topic_search ) { $topic_search['exclude_from_search'] = false; return $topic_search; } add_filter( 'bbp_register_topic_post_type', 'ntwb_bbp_topic_cpt_search' ); /** * Include bbPress 'reply' custom post type in WordPress' search results */ function ntwb_bbp_reply_cpt_search( $reply_search ) { $reply_search['exclude_from_search'] = false; return $reply_search; } add_filter( 'bbp_register_reply_post_type', 'ntwb_bbp_reply_cpt_search' );
got the code from here, i see you also commented on it to 🙂
In reply to: Page Not Found Errorwhy didnt you use the phpbb to bbPress importer in the bbPress plugin.
In reply to: Email notification replies and subscribe to forumcan your users get subscription emails without the additional plugin??
Sorry for the thread up
nah its two weeks its okay.
as for your function , instead of doing a function because you would have to do it for every user you want to delete.
how about do this so you can bulk delete the posts by the users in the replies/topics section.
first create a new user named “deleted” or “removed” some kind of variation of that.
then whenever you want to delete a user attribute all the content to that user you just created.
then in the topics/replies section bulk delete the posts by searching the “deleted” user first. then clicking on the author link in the topics/replies section which should only show that users posts from there so you can bulk delete the posts.
and to change the number of posts shown in one page of the topics/repies section change the default number to like say 75 or so.
other than that maybe changing the post type of your function to reply or topic might make it work , also if you found the users id you want to delete and input into the id field.
In reply to: bbpress 2.3.2 not working with WP 4.0.1you should make sure you have a backup set just in case
and then update bbPress to the latest version.
if you were here I’d give you a big kiss.
uhhhhhhhhhhhhhh , your welcome i guess?? haha
about it not being updated in over a year , the plugin is very simple it basically just outputs a shortcode at the bottom of blog posts.
and also that this functionality is going to be implemented in the future release of bbPress.
so when the update comes and says bbPress for WordPress comments in the changelog of the plguin. you can pretty much just remove the topics for posts plugin from there on and just use bbPress.
In reply to: Issue With (GD BBPress Tools)haha alright
In reply to: resize bbpress forumadd this anywhere you can add custom css and see if this works
.bbpress .container { max-width:100%; }
if it doesnt try this also
.bbpress .container { max-width:100% !important; }