AFTER the update the easy slider with fullwidth gave problems with the sidebar. This will now be visible under the gallery, the photos of which have now also become large and will be placed underneath each other. If I put the Enfold 4.5.5 back it is all okay again.
Have all plugins already turned off but nothing helps.
If I remove the Easy slider as a test via the avia builder, everything works fine.
Hey Peter,
Could you post a link to where we can see the problem in question please?
Best regards,
Rikard
Hi,
Thank you for the update.
Looks like the advance layout builder is not yet properly enabled for the custom post type segelboot-mieten. Please add this snippet in the functions.php file to register the post type.
function avf_alb_supported_post_types_mod( array $supported_post_types )
{
$supported_post_types[] = 'segelboot-mieten';
return $supported_post_types;
}
add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);
Best regards,
Ismael