Theme: Evolve numerous 404 errors after update?
-
I’m using the Evolve theme, I believe it is version 3.6.0. Just recently, I started receiving numerous 404 errors regarding “pattern_8.png” One example https://lifeskillssa.com/faqs/pattern_8.png
I searched forums and one reference was made to edit the custom-css.php to change the .header, .footer code. I’m not comfortable making changes but I searched the code and found this code://@since 2.0.2 mod by denzel
//do not remove the extra slash, it’s a folder path mistake in option-init.php at line 806, try to fix now will cause problem to users.
$none = $evolve_template_url . ‘/library/media/images//header-two/none.jpg’;
if ( $evolve_main_pattern != $none && ! empty( $evolve_main_pattern ) && @getimagesize( $evolve_main_pattern ) ) {
//fix it here, remove the extra slash, before we produce background image url.
$evolve_main_pattern = str_replace(‘images//’, ‘images/’, $evolve_main_pattern);
$evolve_css_data .= ‘
.header-pattern,
.footer {
background-image:url(‘ . $evolve_main_pattern . ‘);It sure looks like the source of the problem, but I’m still unsure what I should change. Can someone help?
- The topic ‘Theme: Evolve numerous 404 errors after update?’ is closed to new replies.