Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1105797

    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

    #1105853

    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.

    #1106123

    Hi Dan,

    Have you tried the solution suggested above?


    @stoudenmirel
    thank you for your input :)

    Best regards,
    Victoria

    #1107271

    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);

    #1107289

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Equal height cols within a CPT not behaving like normal.’ is closed to new replies.