Thread Starter
mekeca
(@mekeca)
Yes i had to delete all the images in your gallery and add them again. It wasn’t creating trumbnails for some reason.
Thread Starter
mekeca
(@mekeca)
on resolution 1920px width the plugin makes 1 pixel more for some reason.
on resolution 1366px and 1280px width the plugin shows only one column of the gallery.
Thread Starter
mekeca
(@mekeca)
Google detects the plugin CSS as render blocking, in order to get better SEO I must place the css in the footer. It doesn’t affect the appearence of the website since i have loading. Nmv i edited the cookie-notice.php and on lane 2195 added a function around the wp_enqueue_style.
function add_cookie_style_to_footer() {
wp_enqueue_style( 'cookie-notice-front', plugins_url( 'css/front' . ( ! ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '.min' : '' ) . '.css', __FILE__ ) );
};
add_action( 'wp_footer', 'add_cookie_style_to_footer' );
That solved my problem, thanks for your time.