Mirko
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] Hook for HTML-minifyHi Frank,
thanks! I already did this – but I have made an error in my function >.<
Problem solved, thanks again ??
Regards,
MirkoForum: Plugins
In reply to: [Autoptimize] Flexi Slider stopped workingI had a similar problem. The solution was to exclude some javascript-files from the js-optimization (in my case kwicks.js, jquery.js etc.).
Forum: Plugins
In reply to: [Custom Website Data] Namespace problemThanks for the update!
No it does not cause issues when uploading files. Strange.
I moved my website to a managed server just last week, so I think the writing permissions to the temp-folder will be set (or could be set).
Forum: Plugins
In reply to: [Insights from Google PageSpeed] Only creates reports for 4 pagesThanks for you help!
I think with your help/hint I solved the problem. I originally only set the option to check wordpress posts – no other options were checked. When I tried setting the “check category index”-option too this morning, the plugin seems to get all _posts_ (and category-pages) and is right now processing all pages.
As you considered a hook which is filtering the get_posts-query, I also removed a custom query filter from the theme. Although I can’t find any error in this, the options are all not set to “gallery”, this filter sets posts_per_page to 4 – the number of posts the plugin got:
function minimatica_paged_posts( $query ) { if( ( ( $query->is_home() && 'gallery' == minimatica_get_option( 'homepage_view' ) ) || ( $query->is_category() && 'gallery' == minimatica_get_option( 'category_view' ) ) || ( $query->is_tag() && 'gallery' == minimatica_get_option( 'tag_view' ) ) || ( $query->is_author() && 'gallery' == minimatica_get_option( 'author_view' ) ) || ( $query->is_archive() && 'gallery' == minimatica_get_option( 'archive_view' ) ) ) && ( ! is_single() ) ) $query->set( 'posts_per_page', '4' ); } endif; add_filter( 'pre_get_posts', 'minimatica_paged_posts' );
Forum: Plugins
In reply to: [Insights from Google PageSpeed] Only creates reports for 4 pagesThanks, that would be wonderful! Please give a short feedback if/when you don’t need the login anymore.
Forum: Plugins
In reply to: [Insights from Google PageSpeed] Only creates reports for 4 pagessure. I sent you the login. thanks!
Forum: Plugins
In reply to: [Insights from Google PageSpeed] Only creates reports for 4 pagesThe green status bar In the “Report List” tab is showing (for a short amount of time, about 20 seconds), but it does not catch additional reports (and I don’t see an error in the log).
I also tried deleting all existing reports and let the plugin create a complete new set of reports. But this doesn’t change the situation.
Forum: Plugins
In reply to: [Custom Website Data] Namespace problemI would like to help smoothing out any issues!
I had to change another thing in my local setup. The session-save-Path default seems to be “/tmp”. This directory is not writable in my hosters setup. So I had to use “session_save_path(…my tmp folder…)” right before the call to “session_start” in custom-website-data.php to make the plugin run without errors.