custom.css does not included
I put my changes to custom.css - a commonly used file to put own changes in the theme, and I expect that this file will be used to override default styles. Than I seen that no changes happen on a page, and analyzing page source I found that custom.css does not included to any page.
Confusion.
In the theme changelog_supershop.txt file I found a record about custom.css
===========================================
Supper Shop Theme(22.07.2015)
===========================================
***** Released version 2.5.8 *****
1. Fixed: Add to cart on mobile
2. Added: custom.css
Files:
../themes/supershop/css/global.css
../themes/supershop/css/custom.css
../themes/supershop/header.tpl
Also I seen that any css file should be included by this code in the header.tpl file
{if isset($css_files)}
{foreach from=$css_files key=css_uri item=media}
{/foreach}
{/if}
Next I made a hack in header.tpl adding direct link (I found it recommended on prestashop forum)
and that piece of code now looks like below:
{if isset($css_files)}^M
{foreach from=$css_files key=css_uri item=media}^M
^M
{/foreach}^M
then I clean cache and reload my page, and... Magic! It works!
Is there a functional regression? If yes, say hello to QA team.
Anyway look forward for theme updates and new version.
P.S.: Is the changelog_supershop.txt placed in proper folder supershop/js ? I expect to see it in top theme folder (supershop/)