When renaming the function.php child theme file the issue disappear, so there seem to be some lines in there causing the masonry images an number animation to stop working, it just shows a blank space when the function.php file is used
after isolating each section in the function.php file, it turns out this section is causing it, any idea why?
/*
*WordPress Optimization | Remove Query strings from Static Resources
*http://diywpblog.com/wordpress-optimization-remove-query-strings-from-static-resources/
function _remove_script_version( $src ){
$parts = explode( '?ver', $src );
return $parts[0];
}
add_filter( 'script_loader_src', '_remove_script_version', 15, 1 );
add_filter( 'style_loader_src', '_remove_script_version', 15, 1 );
*/
Hi kilimats,
Here is a different way to do it.
https://www.codementor.io/tips/8369241717/remove-version-number-from-css-js-in-wordpress-theme
If you need further assistance please let us know.
Best regards,
Victoria