[Support request] Custom Post template will not go full-width (GP + Elementor + AE + Toolset)

Home Forums Support [Support request] Custom Post template will not go full-width (GP + Elementor + AE + Toolset)

Home Forums Support Custom Post template will not go full-width (GP + Elementor + AE + Toolset)

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #466239
    James

    hello, good evening. I am having a bit of trouble and would seriously appreciate any assistance you could offer.

    I am using the following combination: Generatepress + Elementor + Anywhere Elementor + Toolset.

    The issue i’m having is that a custom post type created with toolset, using a custom post template made in elementor, is not displaying full width. It always displays boxed layout by GP. Any chance you can help me finish this?

    You can view the page here:
    http://bluepointdigital.com/sites/elitehomes1/property/the-laurel/

    #466299
    James

    Hello, any help with this one?

    #466313
    Tom
    Lead Developer
    Lead Developer

    Hi James,

    Typically you would use the Page Builder Container metabox section:

    Or you can add the class to all single property types with a function:

    add_filter( 'body_class', 'tu_add_property_body_class' );
    function tu_add_property_body_class( $classes ) {
        if ( is_singular( 'property' ) ) {
            $classes[] = 'full-width-content';
        }
    
        return $classes;
    }
Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.