Hi, im not sure why/how this is happening but when using equal height columns with my custom post type is seems to be breaking. It does not layout the content with the correct column structure. Please see the links for some samples.
CTP with broken layout. Using equal heights on the columns.
CPT when I remove the equal height settings.
Also, this seemed to be working when I was first building the site but then just changed/broke with no explanation? Not sure what to do about that part of it.
Thanks
-Dan
Could be related to https://kriesi.at/support/topic/change-in-page-since-installing-4-5-7/ . I’ve seen several threads pertaining to custom post types and version 4.5.6 and 4.5.7. Hopefully will be an easy fix.
Hi Dan,
Have you tried the solution suggested above?
@stoudenmirel thank you for your input :)
Best regards,
Victoria
This did the trick. Thank you!
/* ————————————————————————–
Fixes CPT Color Section / Equal Height Breaking
————————————————————————– */
function avf_alb_supported_post_types_mod( array $supported_post_types )
{
$supported_post_types[] = ‘CPT NAME’;
$supported_post_types[] = ‘CPT NAME’;
return $supported_post_types;
}
add_filter(‘avf_alb_supported_post_types’, ‘avf_alb_supported_post_types_mod’, 10, 1);
Hi,
I’m glad this was resolved. If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon