<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>ProductCart Shopping Cart Software Forums : Moving De&#115;cripti&#111;n below product image</title>
  <link>https://forum.productcart.com/</link>
  <description><![CDATA[This is an XML content feed of; ProductCart Shopping Cart Software Forums : Customizing ProductCart : Moving De&#115;cripti&#111;n below product image]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 11 Apr 2026 12:11:57 +0000</pubDate>
  <lastBuildDate>Tue, 13 Feb 2007 16:49:37 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.productcart.com/RSS_post_feed.asp?TID=656</WebWizForums:feedURL>
  <image>
   <title><![CDATA[ProductCart Shopping Cart Software Forums]]></title>
   <url>https://forum.productcart.com/forum_images/pc_logo_50.png</url>
   <link>https://forum.productcart.com/</link>
  </image>
  <item>
   <title><![CDATA[Moving De&#115;cripti&#111;n below product image : You&amp;#039;re a genius! Thanks for...]]></title>
   <link>https://forum.productcart.com/moving-description-below-product-image_topic656_post1919.html#1919</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=384">fidjiti</a><br /><strong>Subject:</strong> 656<br /><strong>Posted:</strong> 13-February-2007 at 4:49pm<br /><br />You're a genius! Thanks for that, it totally worked. See a sample product page <a href="http://www.fidjiti.com/shop/pc/viewPrd.asp?idcategory=&amp;idproduct=859" target="_blank">here</a>. <br><br>Thanks again! ]]>
   </description>
   <pubDate>Tue, 13 Feb 2007 16:49:37 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/moving-description-below-product-image_topic656_post1919.html#1919</guid>
  </item> 
  <item>
   <title><![CDATA[Moving De&#115;cripti&#111;n below product image : In the first section of code,...]]></title>
   <link>https://forum.productcart.com/moving-description-below-product-image_topic656_post1918.html#1918</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=77">netprofits</a><br /><strong>Subject:</strong> 656<br /><strong>Posted:</strong> 13-February-2007 at 4:36pm<br /><br /><P>In the first section of code, delete all the lines except the first and last so you have something like this:<BR><table width="99%"><tr><td><pre class="BBcode"><BR>Public Sub pcs_ProductDescription<BR>End Sub<BR></pre></td></tr></table></P><P>In the 2nd section of code, remove JUST this text:<BR><table width="99%"><tr><td><pre class="BBcode"><BR>if psDesc &lt;&gt; "" then <BR></pre></td></tr></table></P><P>Make sure to KEEP the %&gt; after the THEN jeyword.</P><P>Then remove the "end if" that is one line above the "End Sub" line.</P>]]>
   </description>
   <pubDate>Tue, 13 Feb 2007 16:36:47 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/moving-description-below-product-image_topic656_post1918.html#1918</guid>
  </item> 
  <item>
   <title><![CDATA[Moving De&#115;cripti&#111;n below product image : K...so here&amp;#039;s the code that...]]></title>
   <link>https://forum.productcart.com/moving-description-below-product-image_topic656_post1917.html#1917</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=384">fidjiti</a><br /><strong>Subject:</strong> 656<br /><strong>Posted:</strong> 13-February-2007 at 4:18pm<br /><br />K...so here's the code that i found that would display the description next to the product, I just don't know what I should do to remove it from the right of the image and just leave the description below it. <br><br>This code is closer to the top of the page: <br><br> '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <br>' START:&nbsp; Show Product Description<br> '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ &nbsp;&nbsp;&nbsp; <br>Public Sub pcs_ProductDescription<br>&nbsp;&nbsp;&nbsp; if psDesc &lt;&gt; "" then <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; response.write "&lt;div class='pcShowProductSDesc' style='padding-top: 5px'&gt;"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; response.Write psDesc &amp; " &lt;a href='#details'&gt;" &amp; dictLanguage.Item(Session("language")&amp;"_viewPrd_21") &amp; "&lt;/a&gt;"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; response.write "&lt;/div&gt;"<br>&nbsp;&nbsp;&nbsp; else<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; response.write "&lt;div class='pcShowProductSDesc' style='padding-top: 5px'&gt;"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; response.Write pDetails<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; response.write "&lt;/div&gt;"<br>&nbsp;&nbsp;&nbsp; end if<br>End Sub<br> '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <br>' END:&nbsp; Show Product Description<br> '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <br><br><br>Then this code is lower and says it's the long description. <br><br> '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <br>' START: Long Product Description<br> '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <br>Public Sub pcs_LongProductDescription <br>' Display long product description if there is a short description<br>&nbsp;&nbsp;&nbsp; if psDesc &lt;&gt; "" then %&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;table class="pcShowContent"&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;tr&gt; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;&lt;a name="details"&gt;&amp;nbsp;&lt;/a&gt;&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/tr&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;tr&gt; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td class="pcSectionTitle"&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;  &lt;%=dictLanguage.Item(Session("language")&amp;"_viewPrd_22 ")%&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/td&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/tr&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;tr&gt; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td style="padding:8px;"&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;%=pDetails%&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/td&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/tr&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;tr&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;%<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; response.write "&lt;div align='right'&gt;&lt;a href='#top'&gt;" &amp; dictLanguage.Item(Session("language")&amp;"_viewPrd_23") &amp; "&lt;/a&gt;&lt;/div&gt;"<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; %&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/td&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/tr&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/table&gt;<br>&lt;%<br>&nbsp;&nbsp;&nbsp; end if<br>End Sub<br> '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <br>' END: Long Product Description<br> '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <br><br>So does anyone know what I would have to change to make the "long" description be the only thing that shows and it's below the product image? (without the more details link at the top) It's probably something simple, I just don't know what that simple thing is. :) I'll play around with it. I guess I could just delete all of the code from that fisrt section. Maybe that would do the trick.&nbsp;<img src="https://forum.productcart.com/smileys/smiley5.gif" border="0"> (good thing I made a copy of the original file)]]>
   </description>
   <pubDate>Tue, 13 Feb 2007 16:18:46 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/moving-description-below-product-image_topic656_post1917.html#1917</guid>
  </item> 
  <item>
   <title><![CDATA[Moving De&#115;cripti&#111;n below product image : Sorry, my bad...the description...]]></title>
   <link>https://forum.productcart.com/moving-description-below-product-image_topic656_post1911.html#1911</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=77">netprofits</a><br /><strong>Subject:</strong> 656<br /><strong>Posted:</strong> 13-February-2007 at 8:10am<br /><br />Sorry, my bad...the description field is the required field, not the short description. But if the short description is completely blank, then PC displays the description field to the right of the product picture. If the short description has a&nbsp;blank, then the "More Details" link displays (as you mentioned). So you would just need to modify viewprdcode.asp to turn not even check the short description field (then you won't need to put in a space, hide the More Details link and just have the description displayed below the picture.]]>
   </description>
   <pubDate>Tue, 13 Feb 2007 08:10:12 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/moving-description-below-product-image_topic656_post1911.html#1911</guid>
  </item> 
  <item>
   <title><![CDATA[Moving De&#115;cripti&#111;n below product image : Short description isn&amp;#039;t required...]]></title>
   <link>https://forum.productcart.com/moving-description-below-product-image_topic656_post1910.html#1910</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=384">fidjiti</a><br /><strong>Subject:</strong> 656<br /><strong>Posted:</strong> 12-February-2007 at 8:34pm<br /><br />Short description isn't required on my version of PC. Just the regular description is required in the admin section. So i just want to move the data from the "product description" below the image. I'll look at those files and post my findings. <br><br>]]>
   </description>
   <pubDate>Mon, 12 Feb 2007 20:34:58 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/moving-description-below-product-image_topic656_post1910.html#1910</guid>
  </item> 
  <item>
   <title><![CDATA[Moving De&#115;cripti&#111;n below product image : The space is needed becasue the...]]></title>
   <link>https://forum.productcart.com/moving-description-below-product-image_topic656_post1908.html#1908</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=77">netprofits</a><br /><strong>Subject:</strong> 656<br /><strong>Posted:</strong> 12-February-2007 at 2:44pm<br /><br /><P>The space is needed becasue the short description is a required field. You would need to modify admin/instaprd.asp and admin/modprda.asp to not require those fields. </P><P>To change the "More details" link and anything about the display of a product details page, you modify viewPrdCode.asp. There are sections labeled for each section of the display.</P>]]>
   </description>
   <pubDate>Mon, 12 Feb 2007 14:44:10 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/moving-description-below-product-image_topic656_post1908.html#1908</guid>
  </item> 
  <item>
   <title><![CDATA[Moving De&#115;cripti&#111;n below product image : Okay I&amp;#039;m trying to move the...]]></title>
   <link>https://forum.productcart.com/moving-description-below-product-image_topic656_post1907.html#1907</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=384">fidjiti</a><br /><strong>Subject:</strong> 656<br /><strong>Posted:</strong> 12-February-2007 at 1:39pm<br /><br />Okay I'm trying to move the description from showing up on the right side of the product image to below the product image. <br><br>Heres and example of what it looks like now: <br><a href="http://www.fidjiti.com/shop/pc/viewPrd.asp?idcategory=&amp;idproduct=589" target="_blank"> http://www.fidjiti.com/shop/pc/viewPrd.asp?idcategory=&amp;i dproduct=589</a><br><br>Heres and example of what i would like it to look like: <br><a href="http://www.fidjiti.com/shop/pc/viewPrd.asp?idcategory=&amp;idproduct=859" target="_blank"> http://www.fidjiti.com/shop/pc/viewPrd.asp?idcategory=&amp;i dproduct=859</a><br>I had to add a SPACE BAR to the "short description" field in order to get it to move the text below the image. But the "more details" link is still there. I would prefer no link there and I would also prefer not to have to add a SPACE BAR to the "short description" field in order to move the info below the image. <br><br>If you know which page I can edit to do this and what I need to change to make it work, I would greatly appreciate it. Just trying to get it to look good and not be so cluttered. :)<br>Thanks in advance. <br>]]>
   </description>
   <pubDate>Mon, 12 Feb 2007 13:39:19 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/moving-description-below-product-image_topic656_post1907.html#1907</guid>
  </item> 
 </channel>
</rss>