Hi dmathiasen,
I am not sure if you are still interested, however I removed the right sidebar from the search page, by removing the below snippet of code from the bottom of the search.php
<?php if ($sidebar_config == “left-sidebar”) { ?>
<aside class=”sidebar left-sidebar span4″>
<?php dynamic_sidebar($left_sidebar); ?>
</aside>
<?php } else if ($sidebar_config == “right-sidebar”) { ?>
<aside class=”sidebar right-sidebar span4″>
<?php dynamic_sidebar($right_sidebar); ?>
</aside>
<?php } else if ($sidebar_config == “both-sidebars”) { ?>
<aside class=”sidebar right-sidebar span3″>
<?php dynamic_sidebar($right_sidebar); ?>
</aside>
<?php } ?>