I do not have access to the ftp site but I do see a files called in the editor section:
Does this help?
Templates
Category Template
(category.php)
corpus_panel_functions.php
corpus_panel_ui – Copy.php
corpus_panel_ui.php
Footer
(footer.php)
Theme Functions
(functions.php)
Header
(header.php)
admin_page.php
custom-posts.php
my-meta-box-class.php
shortcodes.php
Main Index Template
(index.php)
index_bk.php
Page Template
(page.php)
Sidebar
(sidebar.php)
Single Post
(single.php)
Blog Page Template
(template_blog.php)
Contact Page Template
(template_contact.php)
Portfolio Page Template
(template_portfolio.php)
Testimonial Page Template
(template_testimonial.php)
Styles
Stylesheet
(style.css)
<?php $themename = “PressurePro Panel”; $themefolder = “pressurepro_wp”; define (‘theme_name’, $themename ); define (‘theme_ver’ , 3 ); // Notifier Info $notifier_name = $themename; $notifier_url = “”.$themefolder.”.xml”; //Docs Url $docs_url = “”.$themefolder; // Constants for the theme name, folder and remote XML url define( ‘MTHEME_NOTIFIER_THEME_NAME’, $themename ); define( ‘MTHEME_NOTIFIER_THEME_FOLDER_NAME’, $themefolder ); define( ‘MTHEME_NOTIFIER_XML_FILE’, $notifier_url ); define( ‘MTHEME_NOTIFIER_CACHE_INTERVAL’, 1 ); // corpus-Panel include (TEMPLATEPATH . ‘/corpus_panel/corpus_panel_ui.php’); include (TEMPLATEPATH . ‘/corpus_panel/corpus_panel_functions.php’); /* Theme Administration */ include ( TEMPLATEPATH . ‘/includes/custom-posts.php’ ); add_theme_support( ‘post-thumbnails’ ); function excerpt($text, $chars) { $text = $text . ” “; $text = strip_tags($text); $text = substr($text,0,$chars); $text = substr($text,0,strrpos($text,’ ‘)); $text = $text . “…”; echo $text; } register_nav_menus( array ( ‘main’ =>’Main menu’ ) ); if ( function_exists(‘register_sidebars’) ) register_sidebar( array( ‘name’ => ‘Sidebar’, ‘before_widget’ => ”, ‘after_widget’ => ”, ‘before_title’ => ”, ‘after_title’ => ”)); ?>
Documentation: