I've got sidebar with bunch of blocks that wouldn't be rendered in mobile theme. But i need some of them to be rendered in custom region for mobile theme. Tried:
mytheme_preprocess_block(&$vars) {
$vars['block']->region = 'my_region';
}
$my_region variable in my page.tpl.php is empty for some reason. The block has content and region is defined and valid. What's the solution to switch block position? Many thanks!