Main
Index
Search
Posts
Who's
Online
Log
In

Home: Discontinued/Classic Products: Article Manager 1:
including images in summary

 

 


kimberleyb
User

Feb 13, 2007, 7:43 AM

Post #1 of 3 (2189 views)
Shortcut
including images in summary Can't Post

www.activelivingmagazine.com/newsite/almindex4.shtml

this page will be our new index when it's all tweaked - the mechanics of all the areas are working fine except where I'm trying to call in a category called readers choice which has a custom search template

Summary Image is in art_field4 - it is enabled and its set to text field

when I go to the article that I'm using to test, in the Summary Article field I have ***image7:url***

the template is calling the article summary with no problem, but there is no image - can you help?

this is the code I'm using

<!-- the table below is the readers choice article manager space -->

<table border="0" cellspacing="0" cellpadding="0" width="500" style="
margin-left:3px ">
<tr>
<td width=180>
<!-- templatecell : img_caption -->
<table border=0 cellspacing=2 cellpadding=0 width=160 align=$img_align$>
<tr><td><
img src="$art_field4$" align="left" height="100"></td></tr>
<tr><td><span class="image_caption">$img_caption$</span></td></tr>
</table>
<!-- /templatecell : img_caption -->
<!-- templatecell : img_nocaption -->
<table border=0 cellspacing=2 cellpadding=0 width=$img_width$ align=$img_align$>
<tr><td><
img src="$art_field4$" align="left" height="100"></td></tr>
</table>
<!-- /templatecell : img_nocaption --></td>

<td width=320>


<!-- template insert : $article_list$ -->
<!-- templatecell : row -->

<
a href="$detail_link$"><span class="txt_2">$art_name$</a></span><br>
$art_summary$<br>

<!-- /templatecell : row -->

<!-- templatecell : row_summary -->

<span class="txt_2">$art_name$</span><br>
$art_summary$<br>

<!-- /templatecell : row_summary -->

<!-- templatecell : row_link -->

<span class="txt_2">$art_name$</span><br>
$art_summary$<br>

<!-- /templatecell : row_link -->

<!-- templatecell : row_ufile -->

<span class="txt_2">$art_name$</span><br>
$art_summary$<br>

<!-- /templatecell : row_ufile -->
<!-- templatecell : not_found -->
<!-- /templatecell : not_found -->
<!-- template insert : $prev$ -->
<!-- templatecell : prev -->
<!-- /templatecell : prev -->
<!-- templatecell : no_prev -->
<!-- /templatecell : no_prev -->
<!-- template insert : $next$ -->
<!-- templatecell : next -->
<!-- /templatecell : next -->
<!-- templatecell : no_next -->
<!-- /templatecell : no_next -->
<!-- template insert : $more$ -->
<!-- templatecell : more -->
<!-- /templatecell : more -->
<!-- templatecell : no_more -->
<!-- /templatecell : no_more -->
</td></tr>
</table>
<!-- end of the article manager content space -->


Donna
Staff / Moderator


Feb 13, 2007, 5:37 PM

Post #2 of 3 (2185 views)
Shortcut
Re: [kimberleyb] including images in summary [In reply to] Can't Post

Hi Kimberly,

The main problem you've got is that the <img> tag is inside the img templatecell. The img templatecell is what the software uses for a regular ***imageX*** placeholder, so right now... it's not actually doing anything. :)

Revert the templatecell code back to how it was, and add the <img src="$art_field4$"> into the regular row templatecell, and you should be good to go. :)

Donna

--
support@interactivetools.com


kimberleyb
User

Feb 14, 2007, 6:53 AM

Post #3 of 3 (2176 views)
Shortcut
Re: [Donna] including images in summary [In reply to] Can't Post

THANK YOU DONNA..

you have saved the day again :)