aranex
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: [Genesis Custom Blocks] Custom block only work with post_type “post”Genesis Custom Blocks seem not to be the problem. The problem is the Event Manger, which uptodate, rather poorly supports Gutenberg.
Forum: Plugins
In reply to: [WP PDF Generator] Body class causes conflictHi @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; }Forum: Plugins
In reply to: [LightPress Lightbox] Localization doesn't workThe problem was that the wrong language-domain is loaded. It says in
wp-jquery-lightbox.phpload_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)