Shortcode not working on static front page

It looks like you need to change your front-page.php page, you are using the wrong variable.

$static_page_content = get_the_content();

to

$static_page_content = the_content();

Edit: I see you just updated your question to this, yes this will work fine. Shouldn’t see any negative side effects from this.