This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Possible to download current templates

Hey Guys,

I am trying to customize the web templates, I have downloaded the example templates, but they are different than the default pages.
Is it possible to download the default Sophos templates and change them? I would like to change some terms in language..
Even when it's possible to find the html files through Shell i would like to know where to find them.

Also i have a question about the example templates,
In the block template there is a list of category id's, but when i try to use this template no category is shown.
Anyone experienced this before? And how can i resolve this?

Hope to hear from you.



This thread was automatically locked due to age.
Parents
  • I solved the mistery about the blank category.
    The reason code would be like 112,112,112 these multiple codes would prevent the lookup.
    Now i have added this code (after the reason list) to split the reason code:
    var str = "<?category?>";
    var CategoryID = str.split(",", 1);
    if (document.getElementById("categoryName") && categories[CategoryID]) {
    document.getElementById("categoryName").innerHTML = categories[CategoryID];
    }
    <?categoryName?>

    Now it will return only the first code (112) and will translate it succesfully into (Entertainment)

Reply
  • I solved the mistery about the blank category.
    The reason code would be like 112,112,112 these multiple codes would prevent the lookup.
    Now i have added this code (after the reason list) to split the reason code:
    var str = "<?category?>";
    var CategoryID = str.split(",", 1);
    if (document.getElementById("categoryName") && categories[CategoryID]) {
    document.getElementById("categoryName").innerHTML = categories[CategoryID];
    }
    <?categoryName?>

    Now it will return only the first code (112) and will translate it succesfully into (Entertainment)

Children
No Data