function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Firoz KamdarFiroz Kamdar 

Home Page Template - Aura

I created a simple home page template for LEX.  When I use it though, I see all these extra fields vertically displayed.  I'm trying to hide all of these showing up- I want just the handful that show up with the default home page template.  Can someone please point me in the right direction on how to get it working?

CustomHome Page Template Image
User-added image

Standard Default Home Page Template Image
User-added image

.design Code
<design:component label="1 Top 2 Below">
    <flexipage:template>
            <flexipage:region name="left" defaultWidth="small">
                <flexipage:formfactor type="medium" width="large"/>
            </flexipage:region>
            
            <flexipage:region name="center" defaultWidth="small">
                <flexipage:formfactor type="medium" width="small"/>
            </flexipage:region>
                   
            <flexipage:region name="right" defaultWidth="small">
                <flexipage:formfactor type="medium" width="large"/>
            </flexipage:region>
    </flexipage:template>
</design:component>
.cmp code
<aura:component implements="lightning:homeTemplate" access="global">
    
	<aura:attribute name="center" type="Aura.Component[]" />
    <aura:attribute name="left" type="Aura.Component[]" />
    <aura:attribute name="right" type="Aura.Component[]" />
    
        	<div class="slds-grid slds-wrap">
			<div class="slds-col slds-size_1-of-2 slds-order_2">
				<span>{!v.left}</span>
			</div>
			<div class="slds-col slds-size_1-of-1 slds-order_1 slds-scrollable" style="max-height: 50%;">
        	    <span>{!v.center}</span>
            </div>
            <div class="slds-col slds-size_1-of-2 slds-order_3">
                <span>{!v.right}</span>
            </div>
	    </div>
	
</aura:component>

I have very little development experience, but need a simple template that is one row across on the top and then 2 columns below- shocked it's not an available one by default.