• Resolved kumaresaniderize

    (@kumaresaniderize)


    Hi Team,

    Below custom layout for CPT not working. https://13.235.139.222/directories/new-directory-1/ we are trying to make a full with

    add_filter( 'astra_get_content_layout', 'custom_post_type_content_layout');
    
    // Update the container layout based on Custom Post Type.
    function custom_post_type_content_layout ( $layout ){
        // Add your CPT instead of newspaper, book. If it's only for one CPT then add just one CPT.
        if ( is_singular( 'directory' ) ) ) {
            $layout = 'page-builderpage-builder'; // This is Boxed layout
        }
        return $layout;
    }

    Can you please check and let me know ?

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Issue in astra_get_content_layout’ is closed to new replies.