Site logo

Archived topic

LearnPress conflicts: GP Configure disappeared

7 replies · Started by Nicolaas on July 28, 2019

Viewing posts 1–8 of 8

I installed LearnPress
I have GP Premium running.
After install I could not access GP Configure page anymore (only message Tom in top).
Deactivated LP and now all works again.

Is there a known remedy for this?

Hi there,

So once LearnPress is activated, the "Appearance > GeneratePress" menu item disappears? Is GeneratePress still active in the Themes area?

Hi Tom,

The Menu item GeneratePress remains visible in Appearance. Clicking on it though leads to empty page except for your message 'Made with ...' in top. Same behaviour if I go through GP Premium plug-in and click Configure.

And yes, still active in Themes area.

Cheers,

Nicolaas

Any chance you can send me temporary admin login details so I can take a closer look?: https://generatepress.com/contact

Is anything else broken other than the "Appearance > GeneratePress" area?

They seem to be loading this CSS on all pages in the admin:

.clearfix {
    clear: both;
    height: 0;
    opacity: 0;
}

Instead, they should load their CSS only when it's needed.

For now, try this PHP: https://docs.generatepress.com/article/adding-php/

add_action( 'admin_head', function() {
    $screen = get_current_screen();

    if ( 'appearance_page_generate-options' === $screen->base ) {
        echo '<style>.clearfix {height: auto;opacity: 1;}</style>';
    }
} );

Thanks Tom,

I will try this out (and notify LearnPress). Thanks for the great support up till now!

Nicolaas

Tom,

Added it in Code Snippet and it works.

Thanks very much!

Nicolaas

No problem :)

This archived topic is closed to new replies.