Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter aranex

    (@aranex)

    Genesis Custom Blocks seem not to be the problem. The problem is the Event Manger, which uptodate, rather poorly supports Gutenberg.

    Hi @wpexpertsio ,
    the issue is with the function wpexperts_pdf_add_body_class in the file wp_objects_pdf_class.php.

    All previous classes get deleted, because the function does integrate them:

            public function wpexperts_pdf_add_body_class(){
                $classes[] = 'wpexperts-page';
                return $classes;
            }

    my version:

    
            public function wpexperts_pdf_add_body_class($classes){
                $classes[] = 'wpexperts-page';
                return $classes;
            }
    
    Thread Starter aranex

    (@aranex)

    The problem was that the wrong language-domain is loaded. It says in
    wp-jquery-lightbox.php

    load_plugin_textdomain('wp-jquery-lightbox', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');

    But the language-Files are named like

    jqlb-de_DE.mo

    so i renamed the file to

    wp-jquery-lightbox-de_DE.mo

    and it worked.

    For the CSS-Localization i had to change altough in wp-jquery-lightbox.php

    $fileName = "lightbox.min.{$locale}.css";
    fileName = "lightbox.min.css";

    to

    $fileName = "lightbox.min.{$locale}.css";
    // $fileName = "lightbox.min.css";
Viewing 3 replies - 1 through 3 (of 3 total)