Hi,
When someone writes my site adress:
http://www.adaoconde.art
I want them to go to this page:
http://www.adaoconde.art/index.php/home3/
You should pick up page home03 as front page here:
https://seatheme.net/documentation/air/index.html#frontpage
Then, when navigating inside my site, when someone hits my logo, I want them to go to this page:
http://www.adaoconde.art/index.php/home-alternative/
It needs to change the theme file, wp-content/themes/air-theme/functions/interface/interface-functions.php : line 313:
$output .= '<div id="logo"><a class="logo-a" href="' . esc_url($home_url) . '" title="' . get_bloginfo('name') . '">';
update as:
$output .= '<div id="logo"><a class="logo-a" href="http://www.adaoconde.art/index.php/home-alternative/" title="' . get_bloginfo('name') . '">';
Regards!