cyclops12 wrote:You could disable your mods and refresh the cache then see if the changes are taking place.
If so then just add the mods back one at a time, refreshing each time, until then changes disappear then you will have found the mod that is overwriting the code(hopefully)
Okay, so I fixed the error. I added a code in index.php footer to return all included files.
Code: Select all
<?php
echo '<h1>FAILU SARAKSTS</h1><br/>';
$included_files = get_included_files();
$i = 1;
foreach($included_files as $file){
echo $i . '. ' . $file . '<br/>';
$i++;
}
?>
I noticed that there are both Default and Custom theme files. Then I went in admin panel in Themes and saw that there were enabled both Default & Custom theme by theme itself. I turned it off. Then I cleared cache. After that I went to Modifications and CLEARED all the modificators and the REFRESHED them and the changes appeared. Sadly, after each updates I will have to do it. Thank you very much for help cyclops12.
P.S. Also sI just now noticed that sometimes I need to manualy clear the cache in vqmod too. This is actually really time-consuming and I hope that in future OpenCart team will create automotive module that will do all of this.
You are the semicolon to my statements.