Sorry. I posted just the exact line of code to place within your page(s). depending on exactly where the code is placed within the page you may have to add additional code.
Depending on the location you place that line of code you may have to add additional code such as the php start/end like this:
<?php osc_show_widgets('sidebar'); ?> <?php osc_show_widgets('header'); ?> <?php osc_show_widgets('footer'); ?>
Above is example depending on the widget settings in index.php. You can create widgets for item page, item_post page, etc.
Keep in mind that depending on code placement widget(s) will pick up the styling of that function. Notice in my first screenshot the widget text " Header Widget Test" is large and bold. That is because code was placed within the same styling as the breadcrumbs:
<div class="wrapper wrapper-flash">
<?php
osc_show_widgets('header');
$breadcrumb = osc_breadcrumb('»', false, get_breadcrumb_lang());
if( $breadcrumb !== '') { ?>
<div class="breadcrumb">
<?php echo $breadcrumb; ?>
<div class="clear"></div>
</div>
To show that this does work, I attached 2 screenshots showing widgets in Bender header, main sidebar and footer.
Tom