on submit.php
after this like
PHP Code:
$main_smarty->assign('Story_Content_Tags_To_Allow', htmlspecialchars(Story_Content_Tags_To_Allow));
add something like this
PHP Code:
$main_smarty->assign('Show_google', true);
now in your side panel .tpl
just do
PHP Code:
{if $Show_google eq 'true'}
//code
{else}
//code
{/if}