In ManagePortalPages.php in the prepareEditor function you will need to add a line to the $editorOptions = [] array.
Find
$editorOptions = [
'id' => 'content',
'value' => $context['SPortal']['page']['body'],
'width' => '100%',
'height' => '275px',
'preview_type' => 1,
'smiley_container' => 'smileyBox_message',
'bbc_container' => 'bbcBox_message',
];
Update (basically just adding the disable_smiley_box line)
$editorOptions = [
'id' => 'content',
'value' => $context['SPortal']['page']['body'],
'width' => '100%',
'height' => '275px',
'preview_type' => 1,
'smiley_container' => 'smileyBox_message',
'bbc_container' => 'bbcBox_message',
'disable_smiley_box' => $GLOBALS['context']['smiley_set'] === 'none' || !empty($GLOBALS['options']['show_no_smileys']),
];