That works perfectly! Thank you! For some reason I forgot all about that and it all makes sense. For anyone that was is doing something similar, here is the end result:
Code:
<?xml version="1.0" standalone="yes" ?>
<package version="2.1" displayname="Entity Simple Product List" debug="false" includeentityhelper="true">
<query name="FPProducts" rowElementName="FrontPageProducts">
<sql>
<![CDATA[
select fpp.name,
fpp.bulletlist1,
fpp.bulletlist2,
pv.price,
isnull(pv.saleprice, 0) saleprice,
p.sku,
p.sename,
p.productid
from frontpageproducts fpp
join productvariant pv on fpp.productid = pv.productid
join product p on fpp.productid = p.productid
where fpp.position = 'left top product'
]]>
</sql>
</query>
<PackageTransform>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:aspdnsf="urn:aspdnsf" exclude-result-prefixes="aspdnsf">
<xsl:output method="html" omit-xml-declaration="yes" />
<xsl:param name="LocaleSetting" select="/root/Runtime/LocaleSetting" />
<xsl:param name="WebConfigLocaleSetting" select="/root/Runtime/WebConfigLocaleSetting" />
<xsl:template match="/">
<xsl:param name="link">
<xsl:value-of select="/root/System/StoreUrl" />
<xsl:value-of select="aspdnsf:ProductLink(/root/FPProducts/FrontPageProducts/productid, sename, 0, '')" disable-output-escaping="yes" />
</xsl:param>
<xsl:param name="site">http://www.archerycenter.com/images/product/icon/</xsl:param>
<xsl:param name="jpg">.jpg</xsl:param>
<xsl:param name="image"><xsl:value-of select="$site" /><xsl:value-of select="/root/FPProducts/FrontPageProducts/sku" /><xsl:value-of select="$jpg" /></xsl:param>
<a href="{$link}"><p class="leftProductTitle"><xsl:value-of select="/root/FPProducts/FrontPageProducts/name" /></p></a>
<a href="{$link}"><img src="{$image}" width="75" height="75" alt="{/root/FPProducts/FrontPageProducts/name}" /></a>
<ul>
<li><xsl:value-of select="/root/FPProducts/FrontPageProducts/bulletlist1" /></li>
<li><xsl:value-of select="/root/FPProducts/FrontPageProducts/bulletlist2" /></li>
<li class="regularPrice">Regular Price: $<xsl:value-of select="format-number(/root/FPProducts/FrontPageProducts/price, '###0.00')" /></li>
<li class="salePrice">Sale Price: $<xsl:value-of select="format-number(/root/FPProducts/FrontPageProducts/saleprice, '###0.00')" disable-output-escaping="yes" /></li>
<li class="click"><a href="{$link}">Click Here<img id="arrow" src="../../images/homeProducts/arrow.gif" /></a></li>
</ul>
</xsl:template>
</xsl:stylesheet>
</PackageTransform>
</package>
Again THANK YOU!