Feature Requests
« Back to Vistered Little ThemeThanks everyone who voted in the previous poll. The results had a definite impact on the development direction of Vistered Little. I've created a new feature poll below, carrying over features that didn't make it into Vistered Little 1.7.5. If I've missed something, feel free to add it yourself.
What new features would you most like to see in Vistered Little?
Tags: WordPress, Theme, Skin, Skinner, Presentation Toolkit, Vistered Little, Transparent, GPL
3 comments.










Any chance you could create some more page templates? Like a contact page or a photo gallery page?
Thanks,
Kris
What about a translation?. I could help with the spanish version.
first: its a wonderful theme. thank you.
but it has some glitches.
one of them is that you can not use multiple themes (via a theme switcher) an the widgets.
because the first widget-config-area is the one for the banner on top of the posts. normally i don’t place anything there. in order to put all the widgets that are supposed go into the the sidebar are put into the second widget-config-area.
but when you now switch to another theme, this setting remains somehow and the new theme tries to get the widget information from the banner-area, which is empty.
unfortunately the code is far too complicated for me to fully understand. nevertheless i’ve managed to change the positions of the widget-config-areas. so now the sidebar config is the first one and can also be used by other themes.
as far i can see, nothing is messed up.
here is what i’ve done in the functions.php (line 311 to 328):
if ( function_exists('register_sidebar') ) {
register_sidebar(array(
'name' =] __('Sidebar', VL_DOMAIN),
'before_widget' =] '[div class="menubefore"][/div][div class="menu"]‘,
‘after_widget’ =] ‘[/div][div class="menuafter"][/div]‘,
‘before_title’ =] ‘[h4]‘,
‘after_title’ =] ‘[/h4]‘
));
if( !function_exists('get_theme_option') || get_theme_option('quadpossidebar') != 'quad' ) {
register_sidebar(array(
'name' =] __('Banner', VL_DOMAIN),
'before_widget' =] '[div class="post"]‘,
‘after_widget’ =] ‘[/div]‘,
‘before_title’ =] ‘[h4]‘,
‘after_title’ =] ‘[/h4]‘
));
}
(replace the [] with the proper ones to work)
basicly the arrays have changed position.
perhaps you find it as useful as i did and can implement in a future release.
greetings from germany, calibretto.