I'm new to OpenCart and i'm now trying create a new customized template.
Unfortunately, I'm running into problems and I have some fundamental questions about the architecture of the framework (which is very nice, I must say!).
I want to output the categories with this jQuery plugin: http://razorjack.net/quicksand/
Will I have to make changes to the core category module?: catalog/controller/module/category.php
For instance on line 59-63 (catalog/controller/module/category.php) we have:
Code: Select all
if ($this->category_id == $result['category_id']) {
$output .= '<a href="' . $this->model_tool_seo_url->rewrite(HTTP_SERVER . 'index.php?route=product/category&path=' . $new_path) . '"><b>' . $result['name'] . '</b></a>';
} else {
$output .= '<a href="' . $this->model_tool_seo_url->rewrite(HTTP_SERVER . 'index.php?route=product/category&path=' . $new_path) . '">' . $result['name'] . '</a>';
}
If so, where do I do this?
Best regards and thank you for helping!
Soren