Devio
Devio is a 3 columns fixed width WordPress theme by MagPress.com. This WordPress template comes with theme options, featured content and categories, Adsense ready, etc.
Tags: Adsense Ready, Custom Menu, Featured Content, Fixed Width, Free WordPress Themes, Left Sidebar, Right Sidebar, Rounded Corner, Theme Options, Threaded Comments, Three Columns, Twitter Ready, White, Widget Ready, Wordpress Templates, WP Themes
Hi,
I’ve bought this template, works fine, but 1 thing is not working:
I’d like to show the “Featured Categories” panel not only on homepage.
ow can I do it?
Hai. Please open sidebar-left.php and look for php code:
[php]
<?php $featured_category_active = get_theme_option(‘featured_category_activate’); if(($featured_category_active == ”) || ($featured_category_active == ‘No’)) { ?>
<?php { /* nothing */ } ?>
<?php } else { ?>
<?php if((is_home()) && (is_front_page())) { ?>
<?php include (TEMPLATEPATH . ‘/includes/featured-category.php’); ?>
<?php } ?>
<?php } ?>
[/php]
change to:
[php]
<?php $featured_category_active = get_theme_option(‘featured_category_activate’); if(($featured_category_active == ”) || ($featured_category_active == ‘No’)) { ?>
<?php { /* nothing */ } ?>
<?php } else { ?>
<?php include (TEMPLATEPATH . ‘/includes/featured-category.php’); ?>
<?php } ?>
[/php]
If you’re using widget, please also open functions.php and change the code on “Custom Featured Category Widget”. Thanks,
sorry, in the previus post i wrong to write my mail adresses. now is correct
I write again the problem.
Hi, I recently bought this template and I need to add the plugin wp-paginavi. I installed it but now I don’t know how show only 5 post in the home e move the others to the page 2 and 3, like you did in the demo.Can you help me? Thanks.
Hai. You don’t need to install wp-paginavi plugin because it’s already built-in. If you want to show only 5 posts on homepage and so on, please go to wp-admin > settings > reading > blog pages show at most, setup the number of posts there. Thanks.
Hello,
I am trying the free version of this theme, and have plans to buy next week.
Everything is fine, just I am not able to get the “Featured Category” sidebar and slider working.
I have put it on right sidebar(as a widget), enabled from theme options but it isn’t appearing on side bar.
OK. Looks like you’re using static frontpage. Please email me regarding this matter, I’ll send in the modified files. Thanks.
Thanks Ronald,
When I changed “Front page displays” (Under WP Setting ->Reading)
to
“Your latest posts”
in-place of
“A static page (select below) ”
It started working !
Hi, I have been using devio theme free template, for my site. The facebook share does not pick images from the post.? I tried with different theme its working not with this.. why?
The saving options for theme (like google adsense, google analitics, banner, logo, twitter, ets.) is not work.
What I do wrong? 🙂
That’s weird. Please check your web cache and also make sure you’re using the latest version of wordpress.
Please, help me with “Devio”. I want my posts display full size on my home page. I know I can change this (Under WP Setting ->Reading) but switcher doesn’t work. Maybe something wrong with php-sсripts?
open index.php and edit line 37+
[php]
<div class="post-content">
<?php if ( has_post_thumbnail() ) { ?>
<div class="thumb"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(array(160,120), array(‘class’ => ‘alignleft’)); ?></a></div>
<?php } else { ?>
<div class="thumb"><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=160&h=120&zc=1&q=100&a=t" alt="<?php the_title(); ?>" class="alignleft" /></a></div>
<?php } ?>
<?php the_post_excerpt($excerpt_length=40); ?>
</div>[/php]
to
[php]
<div class="post-content">
<?php the_content(‘…read more’); ?>
</div>[/php]
Thank you very much!It’s working!