Hi
Although I have installed the latest version of WordPress (6.4.2) I get the following message when debugging:
Deprecated: Der Hook avf_avia_builder_masonry_lightbox_img_size ist seit Version 4.8.2 veraltet! Verwende stattdessen avf_alb_lightbox_image_size. in /home/webmanuf/www/staging.immo-cons.ch/wp-includes/functions.php on line 6031
Any solution or do I have to live with it?
I have this in my functions.php (because of the image sizes):
add_filter( ‘avf_avia_builder_masonry_lightbox_img_size’, ‘enfold_customization_change_popup_size’ );
function enfold_customization_change_popup_size( $size ) {
return ‘fullsize’;
}
Thanks for your reply …
Hey Heinz,
I believe that this deprecation warning was added by the Dev Team as a part of the apply_filters_deprecated, the warning is shown while the new filter is applied, The warning is added so the theme is backward compatible. I assume that you are seeing this because you have wp_debug enabled, so you can ignore this warning.
Best regards,
Mike