Tagged: Breakpoints, Custom Post Type, enfold, Responsive Layout
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!
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
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
Hi Rikard,
I updated your user permissions to have admin rights.
Thanks
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
Amazing! Thank you so much! That worked perfectly.
Hi,
I’m glad this was resolved, If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon