Hello,
i'm using this little trick on my theme (based on modern theme) and i want to share it:
1) Create a php file and call it page-my_page.php (this is your static page);
2) Create a copy of main.php and rename it whatever you want (example, 'latest-listing.php');
3) Open main.php and replace code with :
<?php
$filename = 'oc-content/themes/my-theme-name/my_page.php';
if (file_exists($filename)) {
osc_current_web_theme_path('my_page.php') ;
} else {
osc_current_web_theme_path('latest-listing.php') ;
}
?>
Hope will be useful!