Forum Replies Created
-
In reply to: display pages only if logged into bbpress
You can also use this plugin too, but works best without BuddyPress installed.
In reply to: How can users create topics?Robin is the plugin author that is why he recommended it.
He is kind of right though , in some tabs content if I remember correctly there was just a blob of information. It could be a little tidier. Please take this as constructive criticism and not an insult.
I may post up what to maybe clean up in your plugins support forum later.In reply to: User guide for site visitors?This might be what you are looking for.
In reply to: prevent URLs in bbpress postsactivity stream sounds like BuddyPress , I am sure there is something similar for that area though.
In reply to: News SEO & BBPress ConflictYou would need to contact the news seo support team as this is a paid plugin.
In reply to: Topic exceptshere is the code to display the topic excerpt, which i recommend so you would not have to display the whole description in a topic.
<?php bbp_topic_excerpt(); ?>
In reply to: Problems overwriting defaultsYou can use this for custom subscribe text
//custom text for subscribe links function rkk_subscribe_link() { $args['subscribe'] = esc_html__( 'Subscribe to this', 'rkk' ); $args['unsubscribe'] = esc_html__( 'Unsubscribe to this', 'rkk' ); return $args; } add_filter('bbp_before_get_forum_subscribe_link_parse_args', 'rkk_subscribe_link' ); add_filter('bbp_before_get_topic_subscribe_link_parse_args', 'rkk_subscribe_link' );
In reply to: Custom CSSMake sure to wrap code with the code button on bbpress.org
I checked your custom CSS on your site.
Sometimes CSS after a CSS statement is not complete will not work.
For example make sure all of your statements have the
#selector .selector { <-- make sure you have this on all of your CSS statements property: value; } <-- make sure you have this on all of your CSS statements.
In reply to: Forum Registration Not Working[PLEASE ACCEPT THIS THREAD, IM NOT A ROBOT]
haha just do not post more than two links and you will be fine.
its not working, it says “User registration is currently not allowed
Go to settings > General in the WordPress back-end and allow anyone to register.
This plugins should help if you want more control.
https://wordpress.org/plugins/peters-login-redirect/
Without a Plugin you have to add this to your child themes functions.php
add_filter( 'login_redirect', 'rkk_login_redirect' ); function rkk_login_redirect() { // Change forums to whatever is your forum main page return home_url( '/forums' ); }
In reply to: Comments to RepliesI have installed the bbPress plugin and have managed to get the Posts into the Topics of the forum (using bbPress Topics for Posts plugin).
Awesome!
Just completed it!!
This sounds like custom development so I suggest you to hire a developer to do this for you.
hmmm you might need @netweb’s help on this one.
You might need to update phpBB (but not to the latest 3.0) but I am not entirely sure.
In reply to: Show Parent Title of Parent Forumsomething like this might work
get_the_title( $post->post_parent );
In reply to: prevent URLs in bbpress postsadd this to your child themes functions.php file or insert this snippet into a functionality plugin and all links posted to your forum would just return plain text.
remove_filter( 'bbp_get_reply_content', 'bbp_make_clickable', 4 ); remove_filter( 'bbp_get_topic_content', 'bbp_make_clickable', 4 );
In reply to: Error 500 when logged as adminDo you get the issue when you switch to a default theme??
In reply to: Visual Editorcombine the visual editor tab plugin with TinyMCE Advanced and you will get more buttons to display.
In reply to: How to get a feed of all activityIs there a plugin desinged to do anything like this?
you might need to hire a developer for this.
There is a feed of replies though if you go to this.
yoursite.com/?post_type=reply
In reply to: Page Commentsunless there is a way to set it up so that all posts have to be moderated before they go live?
It is currently on PHPbb 3.1.3.
Known issue that is being worked on.
https://bbpress.trac.wordpress.org/ticket/2716
if you want you can also just patch the current phpbb importer using the most recent file @netweb posted.
In reply to: view count in bbpress group forum doesn’t workyeah it’s weird, I couldn’t figure it out.
In reply to: define(‘WP_DEBUG’, true)The setup current user error is a bug in WordPress.
https://core.trac.wordpress.org/ticket/24169
The groups issue is known bug and the trac ticket for it is here.
https://bbpress.trac.wordpress.org/ticket/2782
OH my god, why the plugin author don’t fix this issue.
But most of all need to say thank you again.It is an issue with two different plugins, bbPress and BuddyPress.
the fix seems to be slated for bbPress 2.6
In reply to: define(‘WP_DEBUG’, true)The Groups error might be a known issue too.
I think that is this ticket
In reply to: define(‘WP_DEBUG’, true)read this trac ticket , and follow some of the links to the duplicates
https://bbpress.trac.wordpress.org/ticket/2804
There seems to be an issue in WordPress.