Forum Replies Created
-
In reply to: Allowing only the Forum creator to add the Topic??
not really
In reply to: Headings in forum are to longgreat – glad you are fixed
In reply to: Allowing only the Forum creator to add the Topic??ok, so you could use
then when you set up each forum ‘I put the Forum creating shortcode on a page.’ you could also set up a group for the forum, add the creator as a member and give him permission to create topics.
It is a but labor intensive, but would work.
How many forums are you planning ?
In reply to: Headings in forum are to longok, try this instead
#bbpress-forums ul.forum-titles li.bbp-forum-info { font-size: 10px !important ; } #bbpress-forums ul.forum-titles li.bbp-forum-topic-count{ font-size: 10px !important ; } #bbpress-forums ul.forum-titles li.bbp-forum-reply-count{ font-size: 10px !important ; } #bbpress-forums ul.forum-titles li.bbp-forum-freshness{ font-size: 10px !important ; }In reply to: Allowing only the Forum creator to add the Topic??how are they creating the forum? eg buddypress, they are admins or how ?
In reply to: Can anyone help me with this E_ERRORno, that probably wasn’t the problem, if you had been on version 5.x then that might be the issue.
If php version doesn’t fix then it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
In reply to: Headings in forum are to longtry
.bbp-header { font-size : 10px ; }In reply to: Topics are not shown in forum overviewIf you could explain further what you are expecting to see – maybe with a mock-up then I’ll take another look
In reply to: sub topics not showing@haddly great, glad you are fixed !!
In reply to: sub topics not showingdo you have the bbp toolkit plugin active ?
The best I can suggest is
If you want better than this, then contact the developer https://www.dev4press.com/ Milan does bespoke development as well
In reply to: sub topics not showingthat’s interesting – no idea why that happens !!
In reply to: sub topics not showing@hydrogriff – ok, not sure that I ma goung to be able to help much further.
I can only suggest it could be a theme or plugin issueThemes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
In reply to: Can anyone help me with this E_ERRORwhat version of php are you running ?
In reply to: Wrong user in freshness🙂
In reply to: Wrong user in freshnessGiven that the authors are looking at this, I’m not currently investing time in it 🙂
In reply to: Wrong user in freshnessglitch in present version for some people – authors are aware
this helps many
In reply to: Topics are not shown in forum overviewunless I am not understanding you, every other forum I have seen does what bbpress does
In reply to: Topics are not shown in forum overviewok it is showing what I would expect.
topics are shown only when you go into each forum which is standard bbpress behavior.
If you would like all the forums listed with titles, then create a WordPress page for your firums and put a list of forums in it as shortcode
[bbp-single-forum id=$forum_id] – Display a single forums topics. eg. [bbp-single-forum id=32]
so for instance out this on a page
[bbp-single-forum id=32]
[bbp-single-forum id=33]
[bbp-single-forum id=34].
In reply to: How can I change the title of the main forum?this is theme specific issue, so could be many things.
you could try
item 3 method 2, that might force your theme to use a page name
In reply to: Edit the bbPress login widgetGreat – glad you are fixed
In reply to: sub topics not showingand this one tends to suggest that your theme or anther plugin is doing stuff with the replies side of bbpress
//Lead Topic Enable function custom_bbp_show_lead_topic( $show_lead ) { $show_lead[] = 'true'; return $show_lead; } add_filter('bbp_show_lead_topic', 'custom_bbp_show_lead_topic' );In reply to: sub topics not showinglooked in pastebin.
I’m not sure what this function is there for, except possibly to speed up site display if they have not accessed the forum part ?
function dequeue_bbpress_style() { if ( class_exists('bbPress') ) { if ( ! is_bbpress() ) { wp_dequeue_style('bbp-default'); wp_dequeue_style( 'bbp_private_replies_style'); wp_dequeue_script('bbpress-editor'); } } } add_action( 'wp_enqueue_scripts', 'dequeue_bbpress_style', 99 );it does tend to suggest that you have bbp_private_replies enabled ???
In reply to: Edit the bbPress login widgetThe best solution is to clone this widget and then amend.
so put this in your functions.php
It creates a duplicate login widget, but you’ll find it in dashboard>appearance>widgets called
(mat) login Widget. You can then add your code to this versionfunction register_mat_login_widget() { register_widget("MAT_Login_Widget"); } add_action('widgets_init', 'register_mat_login_widget'); class MAT_Login_Widget extends WP_Widget { /** * MAT Login Widget amended * */ public function __construct() { $widget_ops = apply_filters( 'mat_login_widget_options', array( 'classname' => 'mat_widget_login', 'description' => esc_html__( 'A simple login form with optional links to sign-up and lost password pages.', 'bbpress' ), 'customize_selective_refresh' => true ) ); parent::__construct( false, esc_html__( '(mat) Login Widget', 'bbpress' ), $widget_ops ); } /** * Register the widget * * */ public static function register_widget() { register_widget( 'MAT_Login_Widget' ); } /** * Displays the output, the login form * * * @param array $args Arguments * @param array $instance Instance */ public function widget( $args = array(), $instance = array() ) { // Get widget settings $settings = $this->parse_settings( $instance ); // Typical WordPress filter $settings['title'] = apply_filters( 'widget_title', $settings['title'], $instance, $this->id_base ); // mat filters $settings['title'] = apply_filters( 'mat_login_widget_title', $settings['title'], $instance, $this->id_base ); $settings['register'] = apply_filters( 'mat_login_widget_register', $settings['register'], $instance, $this->id_base ); $settings['lostpass'] = apply_filters( 'mat_login_widget_lostpass', $settings['lostpass'], $instance, $this->id_base ); echo $args['before_widget']; if ( ! empty( $settings['title'] ) ) { echo $args['before_title'] . $settings['title'] . $args['after_title']; } if ( ! is_user_logged_in() ) : ?> <form method="post" action="<?php bbp_wp_login_action( array( 'context' => 'login_post' ) ); ?>" class="bbp-login-form"> <fieldset class="bbp-form"> <legend><?php esc_html_e( 'Log In', 'bbpress' ); ?></legend> <div class="bbp-username"> <label for="user_login"><?php esc_html_e( 'Username', 'bbpress' ); ?>: </label> <input type="text" name="log" value="<?php bbp_sanitize_val( 'user_login', 'text' ); ?>" size="20" maxlength="100" id="user_login" autocomplete="off" /> </div> <div class="bbp-password"> <label for="user_pass"><?php esc_html_e( 'Password', 'bbpress' ); ?>: </label> <input type="password" name="pwd" value="<?php bbp_sanitize_val( 'user_pass', 'password' ); ?>" size="20" id="user_pass" autocomplete="off" /> </div> <div class="bbp-remember-me"> <input type="checkbox" name="rememberme" value="forever" <?php checked( bbp_get_sanitize_val( 'rememberme', 'checkbox' ) ); ?> id="rememberme" /> <label for="rememberme"><?php esc_html_e( 'Keep me signed in', 'bbpress' ); ?></label> </div> <?php do_action( 'login_form' ); ?> <div class="bbp-submit-wrapper"> <button type="submit" name="user-submit" id="user-submit" class="button submit user-submit"><?php esc_html_e( 'Log In', 'bbpress' ); ?></button> <?php bbp_user_login_fields(); ?> </div> <?php if ( ! empty( $settings['register'] ) || ! empty( $settings['lostpass'] ) ) : ?> <div class="bbp-login-links"> <?php if ( ! empty( $settings['register'] ) ) : ?> <a href="<?php echo esc_url( $settings['register'] ); ?>" title="<?php esc_attr_e( 'Register', 'bbpress' ); ?>" class="bbp-register-link"><?php esc_html_e( 'Register', 'bbpress' ); ?></a> <?php endif; ?> <?php if ( ! empty( $settings['lostpass'] ) ) : ?> <a href="<?php echo esc_url( $settings['lostpass'] ); ?>" title="<?php esc_attr_e( 'Lost Password', 'bbpress' ); ?>" class="bbp-lostpass-link"><?php esc_html_e( 'Lost Password', 'bbpress' ); ?></a> <?php endif; ?> </div> <?php endif; ?> </fieldset> </form> <?php else : ?> <div class="bbp-logged-in"> <a href="<?php bbp_user_profile_url( bbp_get_current_user_id() ); ?>" class="submit user-submit"><?php echo get_avatar( bbp_get_current_user_id(), '40' ); ?></a> <h4><?php bbp_user_profile_link( bbp_get_current_user_id() ); ?></h4> <?php bbp_logout_link(); ?> </div> <?php endif; echo $args['after_widget']; } /** * Update the login widget options * * * @param array $new_instance The new instance options * @param array $old_instance The old instance options */ public function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = strip_tags( $new_instance['title'] ); $instance['register'] = esc_url_raw( $new_instance['register'] ); $instance['lostpass'] = esc_url_raw( $new_instance['lostpass'] ); return $instance; } /** * Output the login widget options form * * * @param $instance Instance */ public function form( $instance = array() ) { // Get widget settings $settings = $this->parse_settings( $instance ); ?> <p> <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php esc_html_e( 'Title:', 'bbpress' ); ?> <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $settings['title'] ); ?>" /></label> </p> <p> <label for="<?php echo $this->get_field_id( 'register' ); ?>"><?php esc_html_e( 'Register URI:', 'bbpress' ); ?> <input class="widefat" id="<?php echo $this->get_field_id( 'register' ); ?>" name="<?php echo $this->get_field_name( 'register' ); ?>" type="text" value="<?php echo esc_url( $settings['register'] ); ?>" /></label> </p> <p> <label for="<?php echo $this->get_field_id( 'lostpass' ); ?>"><?php esc_html_e( 'Lost Password URI:', 'bbpress' ); ?> <input class="widefat" id="<?php echo $this->get_field_id( 'lostpass' ); ?>" name="<?php echo $this->get_field_name( 'lostpass' ); ?>" type="text" value="<?php echo esc_url( $settings['lostpass'] ); ?>" /></label> </p> <?php } /** * Merge the widget settings into defaults array. * * @since 2.3.0 bbPress (r4802) * * @param $instance Instance */ public function parse_settings( $instance = array() ) { return bbp_parse_args( $instance, array( 'title' => '', 'register' => '', 'lostpass' => '' ), 'login_widget_settings' ); } }