Cataloger, image problem
Posted: Tue Feb 21, 2017 3:25 pm
After updating to CMSMS 2.0 and Cataloger 1.0.2, the images on the Category Page are not visible. Also they are not visible in the item page either, but I don't need that.
After a few hours I reinstalled the module.
Then I tried to Re-import example sub-templates and I tried both Category-CSS and table bases templates. I can see the images when I'm editing the items (Cataloger Images -tab), but not in the front end.
The front end source code is:
And the image is there:
Here is the CSS-based template (this should be the default):
After a few hours I reinstalled the module.
Then I tried to Re-import example sub-templates and I tried both Category-CSS and table bases templates. I can see the images when I'm editing the items (Cataloger Images -tab), but not in the front end.
The front end source code is:
Code: Select all
<img src="http://www.visavuori.com/cataloger_image?i=mielikki_s_1_180_1.jpg&ac=80077" title="Mielikki" alt="Mielikki"/>Code: Select all
<img src="/uploads/images/catalog_src/mielikki_src_1.jpg">
Code: Select all
{$main_content}
{section name=numimg loop=$image_url_array}
<img src="{$image_url_array[numimg]}" alt="{title}" title="{title}" />
{sectionelse}
{/section}
<div class="category_items">
{if $hasnav == 1}
<div class="catnav">{$prev}{$navstr}{$next}</div>
{/if}
{section name=numloop loop=$items}
<div class="category_item"><a href="{$items[numloop].link}"><img src="{$items[numloop].image}" title="{$items[numloop].title}" alt="{$items[numloop].title}"/></a><br /><a href="{$items[numloop].link}">{$items[numloop].title}</a></div>
{sectionelse}
{/section}
{if $hasnav == 1}
{*
The number that is without a link (a href) have a <span class="nolink" ) have a look in source code-html
*}
<div class="catnav">{$prev}{$navstr}{$next}</div>
{/if}
</div>