Wow big big thank you for your time with this, i really appreciate it, ok i found the con_archive this is the php file
[php]<?php //load template actions
//get breaking panel
function con_get_breaking() {
do_action( ‘con_get_breaking’ );
if ( file_exists( TEMPLATEPATH . ‘/inc/breaking.php’) ){
load_template( TEMPLATEPATH . ‘/inc/breaking.php’);
}
do_action( ‘con_after_get_breaking’ );
}
//get spotlight panel
function con_get_spotlight() {
do_action( ‘con_get_spotlight’ );
if ( file_exists( TEMPLATEPATH . ‘/inc/spotlight.php’) ){
load_template( TEMPLATEPATH . ‘/inc/spotlight.php’);
}
do_action( ‘con_after_get_spotlight’ );
}
//get the latest panel
function con_get_latest() {
do_action( ‘con_get_latest’ );
if ( file_exists( TEMPLATEPATH . ‘/inc/latest.php’) )
load_template( TEMPLATEPATH . ‘/inc/latest.php’);
}
//get the normal single post page
function con_get_single_normal() {
do_action( ‘con_get_single_normal’ );
if ( file_exists( TEMPLATEPATH . ‘/inc/single-normal.php’) )
load_template( TEMPLATEPATH . ‘/inc/single-normal.php’);
}
//get the enhanced single review post page
function con_get_single_review() {
do_action( ‘con_get_single_review’ );
if ( file_exists( TEMPLATEPATH . ‘/inc/single-review.php’) )
load_template( TEMPLATEPATH . ‘/inc/single-review.php’);
}
//get the feed panel
function con_get_feed() {
do_action( ‘con_get_feed’ );
if ( file_exists( TEMPLATEPATH . ‘/inc/feed.php’) )
load_template( TEMPLATEPATH . ‘/inc/feed.php’);
}
function con_get_feed_review(){
do_action( ‘con_get_feed_review’ );
if ( file_exists( TEMPLATEPATH . ‘/inc/feed-review.php’) )
load_template( TEMPLATEPATH . ‘/inc/feed-review.php’);
}
//get category listing
function con_get_category() {
do_action( ‘con_get_category’ );
if ( file_exists( TEMPLATEPATH . ‘/inc/category.php’) )
load_template( TEMPLATEPATH . ‘/inc/category.php’);
}
//get archive listing
function con_get_archive() {
do_action( ‘con_get_archive’ );
if ( file_exists( TEMPLATEPATH . ‘/inc/archive.php’) )
load_template( TEMPLATEPATH . ‘/inc/archive.php’);
}
//get search results
function con_get_search() {
do_action( ‘con_get_search’ );
if ( file_exists( TEMPLATEPATH . ‘/inc/search.php’) )
load_template( TEMPLATEPATH . ‘/inc/search.php’);
}
function con_get_home_template() {
do_action( ‘con_get_home_template’ );
if ( file_exists( TEMPLATEPATH . ‘/template-home.php’) )
load_template( TEMPLATEPATH . ‘/template-home.php’);
}
//get sharebox
function con_get_sharebox() {
do_action( ‘con_get_sharebox’ );
if ( file_exists( TEMPLATEPATH . ‘/inc/sharebox.php’) )
load_template( TEMPLATEPATH . ‘/inc/sharebox.php’);
}
//get social links
function con_get_social() {
do_action( ‘con_get_social’ );
if ( file_exists( TEMPLATEPATH . ‘/inc/social.php’) )
load_template( TEMPLATEPATH . ‘/inc/social.php’);
}
//get comments
function con_get_comments() {
do_action( ‘con_get_comments’ );
if ( file_exists( TEMPLATEPATH . ‘/inc/con-comments.php’) )
load_template( TEMPLATEPATH . ‘/inc/con-comments.php’);
}
?>[/php]
Hope this helps 