Andreas 2013
Forum Replies Created
-
Forum: Plugins
In reply to: [Speed Booster Pack ? PageSpeed Optimization Suite] Adsense isn’t loadingI just realized, that the navigation toggle button in mobile view doesn’t open the navigation menu, if Speed Booster Pack is activated. So I don’t want to activate the plugin.
Forum: Plugins
In reply to: [Speed Booster Pack ? PageSpeed Optimization Suite] Adsense isn’t loadingOf course, I will send you later.
Forum: Plugins
In reply to: [Speed Booster Pack ? PageSpeed Optimization Suite] Adsense isn’t loadingThank you for your quick reply!
Unfortunately that didn’t work either.Forum: Plugins
In reply to: [WP Fastest Cache] Feature requestVery sad. This feature works perfectly with WP Rocket.
Where can I get informations regarding INP and WP Fastest Cache?
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Taxonomy-sitemap missing in sitemap-indexI’ve just tested the update from GitHub, thank you. Now there are some custom taxonomies added to the sitemap – but NOT ALL!
Do you have an idea?Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Taxonomy-sitemap missing in sitemap-indexHi,
could you tell me please, when the update will be released?Thanks in advance!
AndreasForum: Developing with WordPress
In reply to: Can’t disable child theme styleI made the changes as you suggested.
Thank you ??
Forum: Developing with WordPress
In reply to: Can’t disable child theme style@bcworkz Thank you very much for your reply! That’s my code now:
For the functions.php:
function remove() { wp_dequeue_style( 'twentytwenty-style' ); wp_deregister_style( 'twentytwenty-style' ); wp_dequeue_style('twentytwenty-child-style', get_stylesheet_directory_uri() . '/style.css', array('twentytwenty-child-style')); wp_dequeue_style( 'twentytwenty-print-style' ); wp_deregister_style( 'twentytwenty-print-style' ); } add_action( 'wp_print_styles', 'remove', 100 );
In header.php I added this line, to load the full style-file asyncronously:
<link rel="preload" href="/wp-content/themes/twentytwenty-child/mystyle.css" as="style" onload="this.onload=null;this.rel='stylesheet'"> <noscript><link rel="stylesheet" href="/wp-content/themes/twentytwenty-child/mystyle.css"></noscript>
At the top of mystyle.css I added the template header with template name: twentytwenty. WordPress seems to recognize mystyle.css as the regularly child theme css-file. Anyway, this seems to work, the only loading css-file is mystyle.css.
Is there anything, you would change?
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Taxonomy-sitemap missing in sitemap-indexThank you for the information!
When do you publish the next release?
Forum: Plugins
In reply to: [WP Fastest Cache] Speed Issues: style.css loading twiceThank you!
Forum: Plugins
In reply to: [WP Fastest Cache] Preload-settings not availableNow it works ??
- This reply was modified 8 months ago by Andreas 2013.
Forum: Plugins
In reply to: [WP Fastest Cache] Preload-settings not availableI just realized, that a rule in .htaccess caused the error. I will fix it and see, if the preload-button works.
Forum: Plugins
In reply to: [WP Fastest Cache] Preload-settings not availableDo you have an idea, what causes the js problem?
Forum: Plugins
In reply to: [WP Fastest Cache] Preload-settings not availableI opened Developer Tools in Chrome. In the console I found several errors, e.g. this lines:
GET https://www.mydomain.de/wp-includes/js/hoverintent.min.js?ver=1.10.2 net::ERR_ABORTED 404 (Not Found) GET https://www.mydomain.de/wp-content/plugins/wp-fastest-cache/js/dialog-new.js?ver=1710939154 net::ERR_ABORTED 404 (Not Found) Refused to execute script from 'https://www.mydomain.de/wp-content/plugins/wp-fastest-cache/js/dialog-new.js?ver=1710939154' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.
Forum: Plugins
In reply to: [WP Fastest Cache] Preload-settings not availableWhere do I find the javascript console?