You're probably not going to be able to help me but I just had a question on the off-chance that this was available somewhere. I have tried searching the site and was unable to find anything. I was wondering if one could download blank .php template files for categories and products (without all the variables and php checks for everything) just with the bare minimum code required to query the database and pull out a product loop.
Hikashop has a lot of awesome features to let you just specify the amount of products per column and let it just do the rest but for my needs I would like to structure my products in a certain way. For example, I would like to use HTML 5 to future-proof my site and layout my products like this:
<div class="items col-3 grid-block">
<div class="item grid-box">
<header>
<h1>Product Name</h1>
</header>
<article class="item">
<div class="content">
{product info}
</div>
</article>
</div>
<div class="item grid-box">
<header>
<h1>Product Name</h1>
</header>
<article class="item">
<div class="content">
{product info}
</div>
</article>
</div>
<div class="item grid-box">
<header>
<h1>Product Name</h1>
</header>
<article class="item">
<div class="content">
{product info}
</div>
</article>
</div>
</div>
However, when I go into the .php file and make a template override (for example listing_div.php for my category template) there are so many variables and if statements checking for features that Hikashop offers I am not able to determine where to place things properly.
I was hoping maybe there were some templates somewhere (possibly for developer use) that just had the basic queries to the database?
Thank you for your time.