Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 3,876 through 3,900 (of 14,185 total)
  • @robin-w

    Moderator

    you could try this

    How To Delete All WordPress Pending Posts

    it will delete the posts, but not the post meta, but will tidy up what wordpress displays and make it run faster

    @robin-w

    Moderator

    great – glad it worked !

    @robin-w

    Moderator

    just found 5 mins to look at this

    so installed free sydney theme from wordpress
    downloaded and installed child theme from here
    https://athemes.com/download/sydney-child-theme/

    creates bbpress folder in child theme

    copied \bbpress 2.6.6\templates\default\bbpress\content-search.php to child theme bbpress folder

    all works fine.

    I can only suggest you try

    dashboard>settings>permalinks and just click ‘save’ – this resets the permalinks and often fixes 404 errors

    @robin-w

    Moderator

    bbpress has an ID not a class (you don’t need to know what this means!) , so try

    body#bbpress .memberoni_breadcrumbs {
    display: none;
    }

    @robin-w

    Moderator

    so I reckon you have followed this thread

    Search not working

    yes ?

    If so it should work, but are you using free or pro version of the sydney theme?

    @robin-w

    Moderator

    ๐Ÿ™‚

    @robin-w

    Moderator

    ok, I agree it is annoying, but bbpress just uses worldpress registration and login, and is not very clever with these elements.

    You are best to sort it using a plugin such as ‘theme my login’ to fix all these issues

    Theme My Login

    @robin-w

    Moderator

    for registration, set up a pages called whatever you wish and use the relevant shortcodes

    [bbp-login] โ€“ Display the login screen.
    [bbp-register] โ€“ Display the register screen.
    [bbp-lost-pass] โ€“ Display the lost password screen.

    @robin-w

    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>login failures

    @robin-w

    Moderator

    dashboard>pages>all pages> and select the ‘activities’ page.

    From there select ‘page’ on right hand side

    scroll down and you should see ‘topics for posts’

    and a tickbox ‘use a bbpress forum topic for comments on this post’ – untick this.

    If you do not see that part, then click the 3 vertical dots and scroll to the bottom of that page, select preferences and then panels and then click the topics for posts

    Sorry this is wordpress not me making this hard

    @robin-w

    Moderator

    user was able to upload bbp style pack, and from there reset as keymaster

    @robin-w

    Moderator

    contact me via

    Contact me

    but please reference this thread – I get a lot of emails !

    @robin-w

    Moderator

    ok

    @robin-w

    Moderator

    ok, so you have posted an image, but we have no idea what is wrong with it – please details exactly what is wrong

    @robin-w

    Moderator

    that ability is on bbpress

    so set the user to particpant, and then in the relevant forums, you will see the ability to set the user as a moderator for that forum on the right hand side in edit forum

    @robin-w

    Moderator

    you could do that with javascript, but nothing already written in the plugin that I know of

    @robin-w

    Moderator

    yes you have a page called activities, so you just need to turn off the topics for posts on this page

    @robin-w

    Moderator

    first question ; do you have a page in

    dashboard>pages called activities and one called members ?

    second question : I don’t know, I am not an SEO expert ๐Ÿ™‚

    @robin-w

    Moderator

    I’m very surprised that you cannot add the style pack plugin – it is quite small !

    But if your hoster won’t allow this, then come back and I’ll try to help further

    @robin-w

    Moderator

    @ricsca2 – I don’t know what you are asking in the previous or whether you still have an issue on either ‘can you automatically insert the โ€œleave and commentโ€ look?’ or ‘As for the seo, can having the article with the same title in the forum penalize?’ or what either means.

    If you still need help, can you type more than a single sentence ๐Ÿ™‚

    On the issue of buddypress, topics for posts lets you decide if the default for a page is to create a topics for posts or not (see dashboard>settings>discussion). On page creation, you can then switch on and off as you wish. Are these actual pages or virtual pages?

    @robin-w

    Moderator

    great – glad you are fixed

    @robin-w

    Moderator

    ok, style pack has a fix for no keymaster

    dashboard>settings>bug fixes

    but you’ll need to get you hoster to increase your upload file size first to enable you to install this.

    @robin-w

    Moderator

    if you’ve cloned the forum widget, you can set a class – the test is

    if ( bbp_is_forum_closed(forum_id)) ...

    and

    if ( bbp_is_topic_closed (topic_id)) ...

    In reply to: BBP_Forums_Widget bug

    @robin-w

    Moderator

    interesting..it looks ok on my test site, but I can see it doesn’t on yours.

    I should state that I am just a bbpress user who helps out here, not the plugin author.

    2 choices

    1. amend the actual widget file – yes that is said by many to be bad practice, but bbpress does not do frequent releases, and if it is your site and you know what you changed, is probably the quickest and easiest answer

    2. clone the widget to your theme’s child functions file. so take the whole function that starts

    class BBP_Forums_Widget extends WP_Widget {

    Now you’ll need to rename it, so change BBP_Forums_Widget wherever quoted to something unique, and change names/title in these lines

    
    public function __construct() {
    		$widget_ops = apply_filters( 'bbp_forums_widget_options', array(
    			'classname'                   => 'widget_display_forums',
    			'description'                 => esc_html__( 'A list of forums with an option to set the parent.', 'bbpress' ),
    			'customize_selective_refresh' => true
    		) );
    
    		parent::__construct( false, esc_html__( '(bbPress) Forums List', 'bbpress' ), $widget_ops );
    	}
    
    	/**
    	 * Register the widget
    	 *
    	 * @since 2.0.0 bbPress (r3389)
    	 */
    	public static function register_widget() {
    		register_widget( 'BBP_Forums_Widget' );
    	}

    you can then amend the offending line.

    @robin-w

    Moderator

    I’m pretty sure that the link in the ‘latest activity’ widget in my style pack takes you to the reply

    bbp style pack

    once activated you’ll find a latest activity widget with lots of settings you can use.

Viewing 25 replies - 3,876 through 3,900 (of 14,185 total)