Mateusz Czardybon
Forum Replies Created
-
Forum: Plugins
In reply to: [Justified Gallery] Gallery no longer displayedThere is a JavaScript error in the devtools of my browser caused by the script from the “post-and-page-reactions” plugin. Due to this error, the code generating the gallery is not executed.
When I blocked the https://www.frayssinet.org/wp-content/plugins/post-and-page-reactions/js/ai_post_reactions.js?ver=5.5.1 script in devtools, the galleries were displayed correctly.
Update or disable the “post-and-page-reactions” plugin, and the galleries will start showing up.Forum: Plugins
In reply to: [Justified Gallery] Problem with WebpHi,
When the “Use <picture> tags” option is active, the Imagify plugin adds HTML code which causes the gallery to display incorrectly.
Change to “Use rewrite rules” – my tests show that it works fine then. Imagify with .htaccess rules forces loading an image in webp format if one exists on the server’s disk. I optimized one image and it works as you can see.
https://dl.dropboxusercontent.com/s/3b23w3a723m1uje/2020-08-19_19-36-16.png
Forum: Plugins
In reply to: [Justified Gallery] Is it possible to remove hover effect on thumbnails?Hi,
1) Yes. Go to Dashboard >> Justified Gallery Settings >> tab “Tiles style” >> “Select tiles style” – select an option “– without styling”
2) Yes. Go to Dashboard >> Justified Gallery Settings >> tab “Basic” >> “Space between images”Forum: Plugins
In reply to: [Justified Gallery] ETA on Lazy Loading implementationA few days ago plans for the release of version 5.5 of WordPress were announced and lazy loading was also found there. I don’t know exactly when, but in the near future support for this feature in the plugin will be added.
Forum: Plugins
In reply to: [Zero Spam for WordPress] Plugin is generating errorsTip for plugin’s author: method activate() in ZeroSpam_Install class have to be public, not private.
Forum: Plugins
In reply to: [Yoast SEO] "Last Modified 1970-01-01 00:00"I have same problem. One of my custom taxonomy has date “1970-01-01 00:00”. There are some posts with terms from that taxonomy.
In file /wordpress-seo/inc/class-sitemaps.php, there is a function build_root_map(). In line 274 there is code:
// Retrieve the post_types that are registered to this taxonomy and then retrieve last modified date for all of those combined. // $taxobj = get_taxonomy( $tax ); // $date = $this->get_last_modified( $taxobj->object_type );
We can at this point test if a variable $date is empty, and if yes, we can execute this code to solve the issue, but for some reason the author, commented this out.