Templete Is Missing

ERROR: Template is missing. Standalone themes need to have a index.php template file. Child themes need to have a Template header in the style.css stylesheet.

OK, my client had a company create his website, he lost his license in the transition, he purchased a new license, but his home page is missing & there is a error as indicated about.

Can I have some guidance, https://cabinetknobsandmore.com, I have checked & there is no graphic for his home page or no page that was named home page, where can it be?

Hi,

Try to reinstall your child theme.

You can download it from dashboard forum

I can also see that you have old version of cornerstone, please update it to the latest version (Cornerstone 2.1.7 ).

Thanks

Hello There,

Thanks for writing in!

Please be advised that you are using an older version of Cornerstone (1.3.0). Please update it to the latest which is version 2.1.7. You can check out what have changed in the recent release by reviewing our changelog: https://theme.co/changelog/

The X theme has a different way of doing the template. We do have index.php in wp-content/themes/x/. This file is in charge of displaying everything. In your child theme’s style.css file, you have modified and you only have this code:


.x-navbar-inner {
	  background-color: white;
	}

.x-nav span {
	  color: black;
	}

[data-x-icon], [class*="x-icon-"] {
  font-size: 2em !important;
	}
	
.desktop .sub-menu {
		  background-color: lightgrey !important;
		}
.desktop .menu-item, .desktop .menu-item>a{
				background-color: transparent!important;
			  }
				
				.x-colophon.bottom {
					  background-color: lightgrey !important;
					}
					.x-nav li a{
						  color: black;
						}
						
						#shipping {
						  color: black;
						}
.x-brand {
  font-size: 3.4rem!important;
  color: black!important;
  margin-top: 20px !important;

Please have it updated and use this code instead:

/*

Theme Name: X – Child Theme
Theme URI: http://theme.co/x/
Author: Themeco
Author URI: http://theme.co/
Description: Make all of your modifications to X in this child theme.
Version: 1.0.0
Template: x

*/



.x-navbar-inner {
	background-color: white;
}

.x-nav span {
	color: black;
}

[data-x-icon], [class*="x-icon-"] {
	font-size: 2em !important;
}

.desktop .sub-menu {
	background-color: lightgrey !important;
}

.desktop .menu-item, .desktop .menu-item>a{
	background-color: transparent!important;
}

.x-colophon.bottom {
	background-color: lightgrey !important;
}
.x-nav li a{
  color: black;
}

#shipping {
  color: black;
}

.x-brand {
	font-size: 3.4rem!important;
	color: black!important;
	margin-top: 20px !important;
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.