Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author 100plugins

    (@100plugins)

    Hi @vincos,

    Thanks for reaching out. This happens due to a failed block parsing by the Slim SEO plugin.

    Solution
    Please add this PHP code to the functions.php of your theme:

    // Prevent shortcode parsing by Slim SEO plugin
    add_filter( 'slim_seo_skipped_shortcodes', function( $shortcodes ) {
        $shortcodes[] = 'open-user-map';
        $shortcodes[] = 'open-user-map-location';
        $shortcodes[] = 'open-user-map-gallery';
        $shortcodes[] = 'open-user-map-list';
        return $shortcodes;
    } );
    
    // Prevent block parsing by Slim SEO plugin
    add_filter( 'slim_seo_skipped_blocks', function( $blocks ) {
        $blocks[] = 'open-user-map/map';
        return $blocks;
    } );

    This will be included with the next plugin release (1.3.37) as well.

    Best regards,
    Daniel

    Thread Starter Vincos

    (@vincos)

    Hi Daniel,

    Thanks a lot for your solution!

    Kind regards,
    Vincent

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Compatibility issue with “Generatepress” theme and “Slim SEO” plugins’ is closed to new replies.