After uploading to version 4.8.6.2 I don’t see the background parallax images in google chrome, safari. In mobile version it looks correct. Can you help me? If you want i can send you screens.
Thanks.
WP version: 5.8
Php: 7.4.3
Enfold version: 4.8.6.2
I have added to my functions.php file
https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/Performance/avf_post_css_create_file.php
without results, the background images in color section are not visible on desktop device, in mobile it´s ok. Please try this test page:
Can you help me? Thank you
Hi,
Sorry for the problem. I added this filter to your functions.php file:
/**
* Filter to skip css file generation.
* You can add logic to skip for certain pages/posts only.
*
* @since 4.8.6.1
* @param boolean $create
* @return boolean true | false or anything else to skip generation of css file
*/
function custom_avf_post_css_create_file( $create )
{
return false;
}
add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
And the background images are working after that. If you need further help with this, then please refer to this reply: https://kriesi.at/support/topic/background-image-is-not-displayed-anymore-after-update-to-enfold-4-8-6-1/#post-1317645, and check the file permissions of the https://your_site_name/wp-content/uploads/avia_posts_css/ folder.
Best regards,
Rikard
Thank you so much, Rikard!
Background images are ok now! Thanks again :)