Uitz-Mehler EDV
Forum Replies Created
-
Forum: Plugins
In reply to: [DSGVO All in one for WP] Tons of render blocking ressources since updateSame here – looks like the wp-editor is loaded in the frontend. Maybe-> https://ww.wp.xz.cn/support/topic/too-many-js-files-from-wp-includes-js-dist/
Forum: Themes and Templates
In reply to: [SiteOrigin Corp] Unclosed element aThank you for your support!
Forum: Themes and Templates
In reply to: [SiteOrigin Corp] Unclosed element aIf you look at the ‘Elements’-Tab all looks fine because the Browserengine ‘repairs’ it. If you look at the HTML-Source you will see it.
https://demo.siteorigin.com/corp/alternate-blog-layout/
Error 7 at https://validator.w3.org/nu/?doc=https://demo.siteorigin.com/corp/alternate-blog-layout/
Forum: Plugins
In reply to: [Photoswipe Masonry Gallery] wordpress 4.6After i get Javascripterror ‘JQuery not found’
On Line 308 in photoswipe-masonry.php i changed it to
wp_enqueue_script( 'photoswipe-masonry-js', $photoswipe_wp_plugin_path . '/photoswipe-masonry.js', array( 'jquery' ) , FALSE , TRUE);Now it works.
Forum: Plugins
In reply to: [Photoswipe Masonry Gallery] Images ALT Attribute MissingChange line 328 to
<img src='. $thumb[0] .' itemprop="thumbnail" alt="'.$image_alttext.'" />Forum: Themes and Templates
In reply to: custom header default image (don't save customize)Had the same problem – found the solution in twentythirteen/inc/custom-header.php
You have to register the default image too!
register_default_headers( array( 'mypic' => array( 'url' => get_template_directory_uri() . '/images/header.png', 'thumbnail_url' => get_template_directory_uri() . '/images/header-thumb.png', 'description' => _x( 'MyPic', 'header image description', 'yourtheme' )), ));Hope that helps!