Websim
Websim is 3 columns fixed width WordPress theme developed by MagPress.com. Some of the features contain on this theme are user friendly theme options, customizable header image, built-in breadcrumbs, featured content slider, Google Adsense and many more.
Websim WordPress theme is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.
Tags: Adsense Ready, Featured Content, Fixed Width, Free WordPress Themes, Horizontal Navigation, Theme Options, Threaded Comments, Three Columns, Three Level Dropmenu, White, Widget Ready, Wordpress Templates, WP Themes
Thanks for your very nice template, i like it v much
May u brief me how to change the post-default & feat default picture?
thank you very much.
… also I’m saying Thank you from Germany.
And I have also the same Question, how I can disable the post-default and feat-default pictures.
In this moment I have renamed the files, but I will make my own pictures for the files.
Greetings from Germany
Hai. You can just make your own image, name it the same and upload it into the theme images folder.
I find this template simply great. One question, though: how can I get the central flash animation (it is flash, right?)??
I am not able to see how to activate it, or am I doing something wrong?
Ah ok, I found it…. never mind. 😛
What did you do to get this working? I cannot figure it out at the moment?
Hai. You have to enable it on the theme options and choose the category to feature. Also, please make sure the category has more than 1 post on it. Thanks.
I have the same problem as Mus and Werner. I tried uploading my own pic but the default pic doesn’t change. I removed the pic as well and still no change. How do change it?
Hai. Try opening functions.php and under heading “get post image”, change:
$first_img = $img_dir . ‘/images/post-default.jpg’;
rename the post-default.jpg to your manually added default pic.
I have problem, why header image in my website cannot change. I have change header but in my website still default picture. How do change it?
Did you change it via admin panel – custom header setting. Please do that and let me know if you need more help.
The featured slider is no longer working with the latest version of wordpress. Is there any way I can update fix it?
the demo also using the latest wordpress 3.5 and all seem workin.
do you have any edits or plugins install recently that cause the slider to stop working?
Thanks for the reply. I sent an email to you guys and you were able to point me in the right direction. One of my plugins was interfering with the slider. Thanks for your help!
Why I can’t set features image for posts. please help
open index.php edit this
[php]<div class="post-img">
<?php $timthumb_activate = get_theme_option(‘timthumb_activate’); if($timthumb_activate == ‘Yes’) { ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><img src="<?php echo bloginfo(‘template_url’); ?>/scripts/timthumb.php?src=<?php echo get_post_image(); ?>&w=<?php $thumbwidth = get_theme_option(‘thumb_width’); if($thumbwidth == ”) { ?>200<?php } else { ?><?php echo stripcslashes($thumbwidth); ?><?php } ?>&h=<?php $thumbheight = get_theme_option(‘thumb_height’); if($thumbheight == ”) { ?>150<?php } else { ?><?php echo stripcslashes($thumbheight); ?><?php } ?>&zc=1&q=100&cropfrom=<?php $thumbcrop = get_theme_option(‘timthumb_cropping’); if($thumbcrop == ”) { ?>topcenter<?php } else { ?><?php echo stripcslashes($thumbcrop); ?><?php } ?>" alt="<?php the_title(); ?>" /></a>
<?php } else { ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><img src="<?php echo get_post_image(); ?>" width="<?php $thumbwidth = get_theme_option(‘thumb_width’); if($thumbwidth == ”) { ?>200<?php } else { ?><?php echo stripcslashes($thumbwidth); ?><?php } ?>" height="<?php $thumbheight = get_theme_option(‘thumb_height’); if($thumbheight == ”) { ?>150<?php } else { ?><?php echo stripcslashes($thumbheight); ?><?php } ?>" alt="<?php the_title(); ?>" /></a>
<?php } ?>
</div><!– POST IMG END –>[/php]
to
[php]<div class="post-img">
<?php if ( has_post_thumbnail() ) : ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<?php the_post_thumbnail(‘thumbnail’); ?>
</a>
<?php endif; ?>
</div><!– POST IMG END –>[/php]