Customizing the WordPress theme ‘Studio Pro’: a few tricks to get you up and running

coding on a laptop
Customizing a wordpress child theme can be challenging involving coding and design expertise makes it much easier.
Not every designer has the coding expertise required to take a child-theme and make the required changes to apply all branding design and functionality to create a website that is going to meet your objective needs.

Add widgets and sort widgets on front-page.php

Remove:

[php]<?php else :
genesis_widget_area(
"front-page-$i", array(
‘before’ =>
sprintf( ‘<div class="front-page-%s widget-area">%s’, $i, 3
!== $i ? ‘<div class="wrap">’ : ” ),/*—SW WIDGETS GO HERE—-*/
‘after’ =>

sprintf( ‘</div>%s’, 3 !== $i ? ‘</div>’ : ” ),
) );
endif;
}
}[/php]

And replace with:

[php]<?php
// PORTFOLIO WIDGET
genesis_widget_area( "front-page-3", array(
‘before’ => ‘<div class="front-page-3
widget-area">’,
‘after’ => ‘</div>’,
) );
genesis_widget_area( "front-page-2", array(
‘before’ => ‘<div class="front-page-2
widget-area"><div class="wrap">’,
‘after’ => ‘</div></div>’,
) );
genesis_widget_area( "front-page-4", array(
‘before’ => ‘<div class="front-page-4

widget-area"><div class="wrap">’,
‘after’ => ‘</div></div>’,
) );
genesis_widget_area( "front-page-5", array(
‘before’ => ‘<div class="front-page-5
widget-area"><div class="wrap">’,
‘after’ => ‘</div></div>’,
) );
genesis_widget_area( "front-page-6", array(
‘before’ => ‘<div class="front-page-6
widget-area"><div class="wrap">’,
‘after’ => ‘</div></div>’,
) );
}[/php]

You can then swap the widgets around

[php]genesis_widget_area( "front-page-6", array(
‘before’ => ‘<div class="front-page-6
widget-area"><div class="wrap">’,
‘after’ => ‘</div></div>’,
) );[/php]

Contact Us
Change the map location under Dashboard>Settings>Google Maps