Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 2,701 through 2,725 (of 26,827 total)
  • Author
    Search Results
  • #208471
    Chuckie
    Participant
    Robin W
    Moderator

    The best I can suggest is

    GD bbPress Attachments

    If you want better than this, then contact the developer https://www.dev4press.com/ Milan does bespoke development as well

    #208414
    Robin W
    Moderator

    ok 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]

    .

    #208410
    domi80
    Participant

    Hi

    In the past, I had the same question, but I didn’t try to find a solution yet.
    I’ll try to continue this thread.

    It’s about the page title for the opening page or index page of the forum, shown in the browser’s title bar. For the topic starter, that title starts with:
    Archiwum Fora
    It’s Polish for “archive forums”.

    For my site, it’s in Dutch:
    Archief forums
    It’s Dutch for “archive forums”.

    It’s the title of the index page of the forum shown by the browser.
    For forums themselves, the browser shows the title of the forum as text in the browser’s title bar. So that’s going well.

    As the forum opening page or index page is live and active, it’s expected to not to see “archive” as title in the browser.

    On my setup, I tried the suggestion of mclegend.
    Administration -> You mean the WordPress Back-End with all the configuration settings?
    For ‘Configuration’, I don’t see ‘Server Settings’, only ‘Settings’ and indeed ‘General’, which points to basic WordPress options / item “Forum Title” is not there.
    There is however a ‘Settings’ with ‘Forums’, and I see forum-related options. eg. Forum root and below the title ‘Single Forum Slugs’, there is ‘forum’, which could be a title, but not labeled that way.
    The setting or word ‘archive’ or Dutch translated variant is on those pages not mentioned.
    I suppose the Dutch (or for topic starter, Polish version) is by using translation file(s) and localized version of the WordPress.
    But it’s not about the translation, it’s about the original ‘archive’ in the title.

    So, question remains:
    How to get rid of the word ‘archive’ in the browser’s title bar for the opening page or index page of the forum, and/or where can we set a title manually?

    Current setup: PHP 7.3.12 / WordPress 5.3.2 / bbPress 2.5.14 and seen on earlier versions of 2.5.x and on the later 2.6.x versions while testing.

    #208404
    Robin W
    Moderator

    The 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 version

    function 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' );
    	}
    }
    #208389
    Robin W
    Moderator

    untested, but try this

    add_filter ('bbp_get_user_profile_link' , 'rew_get_user_name', 10 , 2) ;
    
    function rew_get_user_name ($user_link, $user_id ) {
    	// Validate user id
    		$user_id = bbp_get_user_id( $user_id );
    		if ( empty( $user_id ) ) {
    			return false;
    		}
    
    		$user      = get_userdata( $user_id );
    		$user_link = esc_html( $user->display_name ) ;
    
    		// Filter & return
    		return apply_filters( 'rew_get_user_name', $user_link, $user_id );
    }

    Put this in your child theme’s function file – or use

    Code Snippets

    #208366

    In reply to: Oh no!

    Pascal Casier
    Moderator

    @matthias70 I have something for that in my https://wordpress.org/plugins/bbp-toolkit/ plugin to remove the ‘Oh Bother’, but I should check how it works with 2.6

    #208363

    In reply to: 2.64 thank you!

    Chuckie
    Participant
    #208285
    Pascal Casier
    Moderator

    Hi @philippowell, user signups are following WordPress user subscriptions.
    1) You could remove ‘Anyone can register’ in /wp-admin/options-general.php, but that is probably not what you want to do
    2) Check for WordPress plugins that will add protection to people signing up (like captcha)

    samtime
    Participant

    Hi,
    Is there a way for bbPress notifications that appear in BuddyPress (eg: “You have a new reply on the topic you started”) to automatically be dismissed when clicked, like other notifications do?

    Currently they can only be dismissed by manually marking them as read on the user profile page.

    Thank you,
    Sam

    WordPress 5.3.2
    bbPress 2.6.3
    BuddyPress 5.1.2

    #208269
    trustedservant
    Participant

    Hello,
    I am seeking help importing my Mingle forums…I can’t seem to find the answers on the bbpress support boards.

    Here are the specifics of my setup:
    Wordpress 5.3.2
    Pandora Theme 1.3.2
    bbpress 2.6.3
    naranonchat.com

    Originally, I struggled to figure out what information needed to be put into the import fields as I am definitely not well versed in the world of website building. I was able to find my wp-configure.php to get the information. My table prefix was not wp_ it was smi_ which took me FOREVER to figure out.

    When I finally got the import monitor to run, it got stuck at step 6 multiple times and despite clicking the option to erase previous attempts, it just created multiple duplicate forums. So, I did the hard reset that was suggested on one of the message boards by Stephen Edgar. When I started over, only one version of the forums was created. I was super excited!

    Now, when it moves on to step 7 it first tells me “Converting topics (0 through 50 of 50) 100%,” then it just continuously runs stating over and over “Converting topics (50 through 50 of 50) 100%.” This creates copy after copy after copy of the same exact posts and never stops. I have over 500+ topics, not 50. How can I stop step 7 from multiple duplications of the same 50 posts, get all 500+ topics that should come over and move on to step 8?

    Please help, I am super frustrated.

    Thanks in advance!

    domi80
    Participant

    Hi

    We’ve got an issue after upgrading bbPress to 2.6.x:

    The “latest reply” column on the forum index page isn’t showing the real latest reply. Instead, we see the latest reply as it was just before the upgrade to 2.6.x.
    None of the replies after the update are displayed.
    This happens only at the forum index, not on the sub forum index pages; the sub forum index page shows the right latest reply.

    The options to repair/recalculate didn’t correct the information in the “latest reply” column.

    We’ve seen this on 2.6.1 and 2.6.3.
    We did a downgrade to 2.5.14 twice, once after 2.6.1 and once after 2.6.3, we did every time the repair/recalculate, and we’ve got the column working good again with the right and expected “latest reply”.

    URL: http://www.lotgenotenseksueelgeweld.nl
    Note: It’s in Dutch localized.

    bbPress version now: 2.5.14
    We have the forum index built by using the shortcode [bbp-forum-index] .
    For the sub forums, we use the corresponding shortcode with the ID of the sub forum.
    WordPress version 5.3.2.
    PHP version 7.3.12.

    Anyone else having this situation? How did you get it solved?
    Or could this be a bug in the bbPress?

    #208236

    In reply to: Header Spacing

    natsu12345
    Participant

    i use the BBforums so i dont have a wordpress page ID so i dont know what i could put there.

    #208209
    Robin W
    Moderator

    untested but try

    add_filter( 'bbp_get_reply_content', 'rew_reply_signature', 1, 2 );
    add_filter( 'bbp_get_topic_content', 'rew_topic_signature', 1, 2 );
    
    function rew_topic_signature ($content = '', $topic_id = 0) {
    	$topic_id  = bbp_get_topic_id       ( $topic_id );
    	$user_id   = bbp_get_topic_author_id( $topic_id );
    	$separator = '<hr />' ;
    	$before = '<div class="bbp-topic-signature">' ;
    	$after = '</div>' ;
    	if ($user_id == 3) $signature =  'signature for user 3' ;
    	if ($user_id == 57) $signature 'signature for user 57' ;
    	if ( !empty( $signature ) )
    		$content = $content . $separator . $before . $signature . $after;
    	return apply_filters( 'rew_topic_signature ', $content, $topic_id) ;
    }
    
    function rew_reply_signature ($content = '', $reply_id = 0) {
    	$reply_id  = bbp_get_reply_id       ( $reply_id );
    	$user_id   = bbp_get_reply_author_id( $reply_id );
    	$separator = '<hr />' ;
    	$before = '<div class="bbp-reply-signature">' ;
    	$after = '</div>' ;
    	if ($user_id == 3) $signature =  'signature for user 3' ;
    	if ($user_id == 57) $signature 'signature for user 57' ;
    	if ( !empty( $signature ) )
    		$content = $content . $separator . $before . $signature . $after;
    	return apply_filters( 'rew_reply_signature ', $content, $reply_id) ;
    }

    Put this in your child theme’s function file – or use

    Code Snippets

    #208208

    In reply to: Spam Registrations

    Robin W
    Moderator

    This might do it

    bbPress No CAPTCHA reCAPTCHA

    not tested, so let me know

    #208203
    brinkley
    Participant
    #208159
    Robin W
    Moderator

    Where I have had problems with WordPress sending emails (mainly contact form 7), I have switched to SMTP using

    WP Mail SMTP by WPForms

    and then setting ‘other smtp’ using your mail provider’s details.

    This seems much more robust to sending emails, and preventing mail servers seeing this as spam

    #208140
    networkguy123
    Participant

    Working with WordPress Live support, we have been unable to solve the problem of subscribers to my forum receiving notifications when a new topic is posted (We haven’t yet moved on to testing for those who subscribe to a topic getting notification of any new posts under that topic).
    WordPress Live received guidance from you that we should try a different theme (Twenty Twelve) and also try disabling all plugins except for bbPress and trying that. That did not work either.
    So, we’re coming back to you for further guidance. Can you provide? Will I receive notification by email when there is a response to this request or do I need to keep checking the forum. My email is eric.brown@cbia.com.
    Also, I’m working on WordPress version 5.3.2 and bbPress version 2.6.3
    Thank you very much!
    Eric Brown

    #208136

    In reply to: Freshness is way off

    Robin W
    Moderator

    that bar can be hidden

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Forum Display

    #208095
    Editor Mike
    Participant

    I have run all the tools and checked the cache.
    At one point it appeared that the forum was reporting freshness based on the latest topic, not the latest reply.
    But it is so all over the place, I am not sure that is the case anymore.

    Here is a screen shot that shows a typical error.

    Here is a link to the above forum:

    https://www.thewargameswebsite.com/forums/forum/general-discussion-3/game-design/

    The thing that baffles me, is that the freshness URL is correct.
    So why is the bbpress forum itself not reflecting this?

    https://www.thewargameswebsite.com/forums/view/topics-freshness/

    Here is the site, please do have a look around in the various forums and you will see the freshness is a mess.

    If anyone can help I will be very appreciative.

    https://www.thewargameswebsite.com/

    WordPress 5.3.2
    BBpress 2.6.3

    #208108
    nickds
    Participant

    Back again. I swep whole testing site, delete database and reinstall everything including wordpress and forum loos OK now.
    But on my production site which is running on Divi the problem still exist. So it will be really something on Divi´s end…

    #208103
    nickds
    Participant

    Hi Robin, fully understand. Thanks for your reply.
    The issue appears on default wordpress theme and the same appears on Divi theme. I already discuss with the support from Divi and they´v replied, that it has something to do with plugin itself.

    Robin W
    Moderator

    thanks, I’ve logged a trac ticket o the authors will be aware

    https://bbpress.trac.wordpress.org/ticket/3327#ticket

    #208040
    Robin W
    Moderator

    if you enable subscriptions they could just subscribe to the forums

    or presuming these people have a specific role (eg moderator) then

    bbPress Notify (No Spam)

Viewing 25 results - 2,701 through 2,725 (of 26,827 total)
Skip to toolbar