• Resolved flavponch

    (@flavponch)


    Hello,

    Since the last update, the login page, member, account pages, etc. are displayed incorrectly. The update 2.8 break the CSS code of my site.

    I have already done tests by deactivating other extensions, but it is Ultimate Member which is causing the problem.

    My theme is Dara.

    My cache is WP Fastest Cache. (but caches are not activated on these pages)

    Can you help me please ?

    Best regards,

    • This topic was modified 11 months, 1 week ago by flavponch.

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • reedock

    (@reedock)

    Same problem here!

    The last update added a gap in every UM pages.

    Temporary fix:
    /* Remove gap in footer of UM pages */
    body.um:not(.um-admin) {
    margin-bottom: 0 !important;
    }

    Thread Starter flavponch

    (@flavponch)

    Thanks !
    But I still have a lot of CSS problems after the update.

    I can’t modify everything by hand

    The CSS of all Ultimate Member pages is corrupt. The loading times of these pages are also enormous.

    I hope (finally) to get a response from support.

    Moderator Support Moderator

    (@moderator)

    @flavponch Please do not create duplicate topics. Those are archived when found and I have archived yours.

    Thread Starter flavponch

    (@flavponch)

    Why don’t I get a response from support then ?

    Plugin Support yuriinalivaiko

    (@yuriinalivaiko)

    Hello @flavponch, @reedock, @alex35.

    Thank you for reporting about this issue.

    @reedock, thank you for adding the issue to GitHub and providing details. This helped a lot. This issue will be fixed in the next release. See pull request #1406.

    As a temporary solution you can use this code snippet. You can add this code to the functions.php file in the theme directory or using the special plugin Code Snippets.

    // remove the um class from the body classes to fix page styling.
    add_filter( 'body_class', function( $classes ) {
    	$key = array_keys( $classes, 'um' );
    	if ( $key ) {
    		unset( $classes[ current( $key ) ] );
    		$classes[] = 'um-page';
    	}
    	return $classes;
    }, 10 );

    Regards

    Thread Starter flavponch

    (@flavponch)

    It’s perfect ! It works on my site.

    Thank you very much for your answer !

    Should I wait for update to finally update UM ?
    Got version 2.6.11 on my website but since topics here Im scared of updating so I was waiting ahah

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘The update 2.8 break the CSS code of my site’ is closed to new replies.