Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1127418

    I am not sure if this is connected to updating our Enfold theme but recently the breakpoints for Layout Elements aren’t working. When the custom post type single page is viewed on the phone all of the blocks are just shrunk down rather than changed to 100% width.

    I was able to find a thread I thought would relate but the answers in the thread got lost in other questions and comments.

    Any help you can give would be great!

    Thank you!

    #1127568

    Hey TeachBeyond,

    Please send us a temporary WordPress admin login and login URL so that we can have a closer look. You can post the details in the Private Content section of your reply.

    Best regards,
    Rikard

    #1127663
    This reply has been marked as private.
    #1127810

    Hi,

    Thanks for that, please upgrade the account to have admin rights as well. Otherwise we can’t see the custom post type you are referring to.

    Best regards,
    Rikard

    #1127811

    Hi Rikard,
    I updated your user permissions to have admin rights.

    Thanks

    #1128921

    Hi,

    Thank you for the update.

    You can add this snippet in the functions.php file to include the “support” post type in the list of supported post type by the ALB.

    function avf_alb_supported_post_types_mod( array $supported_post_types )
    {
      $supported_post_types[] = 'support';
      return $supported_post_types;
    }
    add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);
    

    Best regards,
    Ismael

    #1128927

    Amazing! Thank you so much! That worked perfectly.

    #1128970

    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 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Breakpoints not working on Custom Post Types’ is closed to new replies.