• I have since rolled back to 4.4.2 to confirm it was not a plugin issue.

    2011 theme:

    With the upgrade to WP4.5 the Main side bar repositions itself to the bottom of the page but still on the correct side ( Left for me )

Viewing 3 replies - 1 through 3 (of 3 total)
  • Geoffrey Shilling

    (@geoffreyshilling)

    Volunteer Moderator

    This is a known issue and is currently being addressed in Trac under ticket 36510. You can watch the ticket from the bottom of that page if you want to be informed of updates.

    So Geoffrey should we 2011 theme users attempt to delete the existing code in functions.php at lines 700-701 and add the code suggested in ticket 36510 – or wait to see if a new 2011 theme update will be issued today?

    Thanks

    Geoffrey Shilling

    (@geoffreyshilling)

    Volunteer Moderator

    A workaround has now been created for this.

    I would recommend using a child theme and adding the following code to its functions.php file:

    function wp36510_remove_singular_class( $classes ) {
    	$index = array_search( 'singular', $classes );
    	if ( false !== $index ) {
    		unset( $classes[ $index ] );
    	}
    
    	return $classes;
    }
    add_filter( 'body_class', 'wp36510_remove_singular_class' );
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘WP 4.5 Update: Main Sidebar has repositioned itself’ is closed to new replies.