- This topic has 5 replies, 3 voices, and was last updated 3 years, 11 months ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Legacy Theme Support › Background Image of Home Top not showing
Hi,
After upgrading to WordPress 5.2.2 and Genesis 3.0.0, Background Image for Home Top is now showing. I removed it and uploaded it again but it still showing just Black.
Thanks! I’m looking at this now
OK. Thank you!!
To fix this, make sure the Theme name in the functions.php is exactly the same as the theme name inside the style.css.
For example: in functions.php make sure the name in this section –
//* Child theme (do not remove)
define( 'CHILD_THEME_NAME', 'Aspire Pro' )
….matches the theme name in style.css –
/*
Theme Name: Aspire Pro
Theme URI: https://appfinite.com/shop/aspire/
The theme name can be whatever you want, just make sure they match. I had Aspire
in the functions file, and Aspire Theme
in the style.css of a couple themes. They’re supposed to be the same. (I’m using the Aspire theme here as an example)
I will go through and make sure they match up in all of my themes and release the update today.
Bingo! Thank you Wes!
It is working.
Before I made a change, it was like this:
//* Child theme (do not remove)
define( ‘CHILD_THEME_NAME’, ‘Legacy’ );
define( ‘CHILD_THEME_URL’, ‘https://appfinite.com/shop/legacy’ );
define( ‘CHILD_THEME_VERSION’, ‘1.5’ );
Now, it has been changed to:
//* Child theme (do not remove)
define( ‘CHILD_THEME_NAME’, ‘Legacy Theme’ );
define( ‘CHILD_THEME_URL’, ‘https://appfinite.com/shop/legacy’ );
define( ‘CHILD_THEME_VERSION’, ‘1.5’ );
Thanks Wes!!