In the comments section of Side by side images Landing page with centered widget areas in Genesis tutorial, a user asked:
Hi Sridhar,
How can I add this landing page in Altitude Pro? I’ve tried to change the static front page with a custom page having the side-by-side template and it doesn’t work. Any suggestions?
Thanks.
In this article, I share the code tailored for Altitude Pro to set up a side-by-side images front landing page.
Step 1
Add the following in Altitude Pro's functions.php:
// Register left-side widget area
genesis_register_widget_area(
array(
'id' => 'left-side',
'name' => __( 'Left Side', 'altitude-pro' ),
'description' => __( 'Left Side widget area in Side by Side Template', 'altitude-pro' ),
)
);
// Register right-side widget area
genesis_register_widget_area(
array(
'id' => 'right-side',
'name' => __( 'Right Side', 'altitude-pro' ),
'description' => __( 'Right Side widget area in Side by Side Template', 'altitude-pro' ),
)
);
Step 2
Rename front-page.php to say front-page-notusing.php.
Create a new front-page.php having the following:
To view the full content, please sign up for the membership.
Already a member? Log in below or here.