News, css and template copy issues
Design and Skin Customization
Yes, it looks like the URL for the image in the Latest News image slider did not get changed to use an ID. I'll get that fixed for the next release.
For now, you can fix this by modifying your skins/jrProJam/news_slider.tpl file, and find the code for the image link:
Quote:
{ jrCore_module_function function="jrImage_display" module="jrBlog" type="blog_image" item_id=$row._item_id size="xxlarge" crop="width" width="495" alt=$row.blog_title title=$row.blog_title style="max-width:495px;max-height:370px;"}
and then add the item id variable to the URL:
Quote:
/{$row._item_id}/{$row.blog_title_url}">{ jrCore_module_function function="jrImage_display" module="jrBlog" type="blog_image" item_id=$row._item_id size="xxlarge" crop="width" width="495" alt=$row.blog_title title=$row.blog_title style="max-width:495px;max-height:370px;"}
the bold text is what needs to be added.
Hope this helps,
Douglas
updated by @douglas: 02/08/14 10:35:34AM