Tecom
Tecom is a 3 columns fixed width WordPress theme by MagPress.com. This WordPress template comes with theme options, featured content slider, featured categories, Adsense ready and many more.
Tags: Adsense Ready, Custom Menu, Featured Content, Featured Video, Fixed Width, Free WordPress Themes, Horizontal Navigation, Red, Right Sidebar, Theme Options, Threaded Comments, Three Columns, Three Level Dropmenu, Twitter Ready, White, Widget Ready, Wordpress Templates, WP Themes
hey thats a good lookin template mang
The Featured Categories in the sidebar only appear on the front page but disappears on the individual post page. How do I make it appear on the post pages?
Hai. Open index.php and look for code below:
[?php if((is_home()) && (is_front_page()) && ($paged < 1)) { ?]
[?php include (TEMPLATEPATH . '/includes/featured.php'); ?]
[?php } ?]
change to only by removing the conditional tags:
[?php include (TEMPLATEPATH . '/includes/featured.php'); ?]
Thanks.
Ok, thanks a lot. Love this theme.
Hi,
This is a wonderful theme, beautifully designed and the widgets are all good.
When in 1024X768 Screen Resolution, we need to scroll rightside to view the full site.
Is there any way to get rid of the scrolling?
Let me know.
Hi,
i’ve must appreciated Tecom Theme and others your products!
Now i need change the post order on Homepage: the default order is set by chronological order DESC but i would that the post appears with order by “Modified DESC”.
Is it possible on Tecom Theme?
Any suggest how to insert the related or similar code?: (‘&order=DESC&orderby=modified&post_type=post&paged=’.$paged)
Thanks very nice.
Hai. Try adding/replace below inside the index.php
[php]
<?php if((is_home()) && (is_front_page()) && ($paged < 1)) { ?>
<?php $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(‘order=DESC&orderby=modified&showposts=10&cat=&paged=’ . $paged);?>
<?php } else { ?>
<?php $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(‘showposts=10&cat=&paged=’ . $paged);?>
<?php } ?>
[/php]
Hello Ronald,
thank you for your reply.
I’ve replace on index.php the code like your suggest, but i’ve this error in db:
Parse error: syntax error, unexpected $end in my server folder/www/my website/wp-content/themes/tecom/index.php on line 70
the line 67 —>70 is :
i need to change also TEMPLATEPATH?
Thanks again for your help and have a good day!
Anto
I’ve sent an email regarding this matter. Please check. Thanks.
Hi there! I have fixed the problem of “insufficient access”… I disabled several plugins, and then everything now works. This is a GORGEOUS template and is exactly what I’m looking for, so thank you so much!
I saw the notes to use the “Regenerate Thumbnails” plugin, which I did. However, the thumbnails are still not appearing next to the posts on the sidebar. Do I have to re-upload each image for each post?
Thanks,
Jess
Hai. the ‘regenerate thumbnail’ only for resizing existing thumbnail. If your post is new and don’t have thumb attached to it, you need to use the post-thumbnail feature to create it. Please refer to the readme.txt > POSTING WITH IMAGES. Thanks.
feature catagory sidebar show only front page but disappear on other page
how to appear other page
plz solve
open sidebar.php line 23+ and edit this code
[php]
<?php if((is_home()) && (is_front_page())) { ?>
<?php include (TEMPLATEPATH . ‘/includes/featured-category.php’); ?>
<?php } ?>
[/php]
edit to
[php]
<?php include (TEMPLATEPATH . ‘/includes/featured-category.php’); ?>
[/php]