Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 6,101 through 6,125 (of 14,294 total)
  • @robin-w

    Moderator

    your theme has a css rule

    .content-wrapper.with-featured-image {
    	margin: -4.7em 0 0 120px;
    	padding: 1.3em 55px 0 1.9em;
    }

    Basically the ‘margin: -4.7em’ bit is causing the forum to show at a minus height, thus crashing into the header.

    the forums page (https://badasscrafters.com/forums/) has the rule without-featured-image so is fine.

    Do you have a ‘forums’ page – ie you have a page in your site which has the shortcode

    [bbp-forum-index]

    @robin-w

    Moderator

    I just googled ‘A variable mismatch has been detected’ (googling an error is always a good start)

    and got this as a thread

    https://wordpress.org/support/topic/a-variable-mismatch-has-been-detected-6/

    which suggests might be worth you looking at php versions

    @robin-w

    Moderator

    @ajtruckle split works fine on my test sites for 2.5.x and 2.6.x, hence why I am suggesting site for database issue for your site.

    In reply to: Permission help

    @robin-w

    Moderator

    do you mean create a forum, or create a topic on an existing forum?

    @robin-w

    Moderator

    @cassel – maybe ideally – but only so much you can expect for free! you can move it after splitting

    @robin-w

    Moderator

    @ajtruckle – that looks site specific, or maybe even that topic.

    In reply to: Page title is “0”

    @robin-w

    Moderator

    probably theme specific – try changing a theme as a test. Then contact theme provider

    @robin-w

    Moderator

    so have you guys tried ‘split’ in the front end – this should let you split the reply to a new topic on the same forum. Once that is done you can move it to another forum on the backend

    @robin-w

    Moderator

    that’s safari for you 🙂

    @robin-w

    Moderator

    great – glad you are fixed

    @robin-w

    Moderator

    ok, it is site specific.

    so you will need to look at disabling plugins and changing themes to establish where the issue is – I can’t help with how you do that in a live environment.

    You should look at getting a test site

    @robin-w

    Moderator

    put this in the custom css area of your theme

    .bbp-pagination-count {
    display : none !important ;
    }

    In reply to: BBpress Ticket

    @robin-w

    Moderator

    yes, but depends on exactly what you mean.

    @robin-w

    Moderator

    I’d put all of them in.

    yes the asterisk means anything starting with so

    http://www.site.com/forums/*

    would cover

    http://www.site.com/forums/forum/fred

    I assume you realise that you should replace http://www.site.com with the name of your site !

    @robin-w

    Moderator

    probably site issue – bbpress just uses WordPress registration

    @robin-w

    Moderator

    There si a hook that you could use eg for replies there is

    /** Additional Actions (Before Save) **************************************/
    
    	do_action( 'bbp_new_reply_pre_extras', $topic_id, $forum_id );
    
    	// Bail if errors
    	if ( bbp_has_errors() ) {
    		return;
    	}

    in includes/replies/functions.php line 354 or thereabouts depending on version

    so you could have a hook to add action that checks if bbp_has_errors and if so mail the user before the function bails.

    @robin-w

    Moderator

    my style pack plugin has an unread section which I think is what you want

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>

    dashboard>settings>bbp style pack>unread posts

    @robin-w

    Moderator

    my style pack plugin has an unread section which I think is what you want

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>

    dashboard>settings>bbp style pack>unread posts

    @robin-w

    Moderator

    great – glad you are fixed. I suspect a data corruption of some sort

    @robin-w

    Moderator

    so maybe a database corruption, do you have live data in the forums, or just test stuff ?

    if just test then go to

    dashboard>tools>forums>reset forums and delete all your forum data.

    You can then start again

    @robin-w

    Moderator

    hmmm…..

    old site, new problem?
    new site new problem?
    always happened?
    only happening after update of bbpress?
    etc.

    you could try deactivating and then deleteing bbpress and then re-installing

    you won’t lose any posts you already have

    @robin-w

    Moderator

    you could exclude forums from caching in sg optimizer

    go to

    dashboard>sg optimizer>supercacher settings>Excluding URLs

    and set up your site’s forums urls

    eg (and you will need to change these is you don’t have the default slugs set up)

    add these

    http://www.site.com/forums/*
    http://www.site.com/forum/*
    http://www.site.com/topic/*
    http://www.site.com/reply/*

    @robin-w

    Moderator

    consistently to certain random users, or occasionally across all users ?

    ie do you have a ‘random’ user who is getting this problem all the time that you can test with?

    again this could be caching

    @robin-w

    Moderator

    caching software stores website pages. Certain events cause these pages to refresh.

    so if x is posting and it’s not happening, and then y on the same site does an action, it may refresh the cache and then the post by x may get updated.

    Loads of possibilities, just trying to help understand what might be causing 🙂

    @robin-w

    Moderator

    ok, put this in your child theme’s function file – or use

    Code Snippets

    add_filter( 'bbp_register_topic_post_type', 'rew') ;
    
    function rew ($rew) {
    
    $rew = array(
    				'labels'              => bbp_get_topic_post_type_labels(),
    				'rewrite'             => bbp_get_topic_post_type_rewrite(),
    				'supports'            => bbp_get_topic_post_type_supports(),
    				'description'         => esc_html__( 'bbPress Topics', 'bbpress' ),
    				'capabilities'        => bbp_get_topic_caps(),
    				'capability_type'     => array( 'topic', 'topics' ),
    				'menu_position'       => 555555,
    				'has_archive'         => ( 'forums' === bbp_show_on_root() ) ? bbp_get_topic_archive_slug() : false,
    				'exclude_from_search' => true,
    				'show_in_nav_menus'   => true,
    				'public'              => true,
    				'show_ui'             => current_user_can( 'bbp_topics_admin' ),
    				'can_export'          => true,
    				'hierarchical'        => false,
    				'query_var'           => true,
    				'menu_icon'           => '',
    				'source'              => 'bbpress',
    			)  ;
    			
    return $rew ;
    }
    
    add_filter( 'bbp_register_reply_post_type', 'rew2') ;
    
    function rew2 ($rew) {
    
    $rew2 = array(
    				'labels'              => bbp_get_reply_post_type_labels(),
    				'rewrite'             => bbp_get_reply_post_type_rewrite(),
    				'supports'            => bbp_get_reply_post_type_supports(),
    				'description'         => esc_html__( 'bbPress Replies', 'bbpress' ),
    				'capabilities'        => bbp_get_reply_caps(),
    				'capability_type'     => array( 'reply', 'replies' ),
    				'menu_position'       => 555555,
    				'exclude_from_search' => true,
    				'has_archive'         => false,
    				'show_in_nav_menus'   => true,
    				'public'              => true,
    				'show_ui'             => current_user_can( 'bbp_replies_admin' ),
    				'can_export'          => true,
    				'hierarchical'        => false,
    				'query_var'           => true,
    				'menu_icon'           => '',
    				'source'              => 'bbpress',
    			)  ;
    			
    return $rew2 ;
    }
Viewing 25 replies - 6,101 through 6,125 (of 14,294 total)