<?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 : Show BreadCrumbs on showsearchresults.asp</title>
  <link>https://forum.productcart.com/</link>
  <description><![CDATA[This is an XML content feed of; ProductCart Shopping Cart Software Forums : Customizing ProductCart : Show BreadCrumbs on showsearchresults.asp]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 12 Apr 2026 19:37:11 +0000</pubDate>
  <lastBuildDate>Sat, 23 Aug 2008 12:33:04 +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=1690</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[Show BreadCrumbs on showsearchresults.asp : 1. In &amp;#034;inc_srcPrdQuery.asp&amp;#034;...]]></title>
   <link>https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post6498.html#6498</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=1234">cmason</a><br /><strong>Subject:</strong> 1690<br /><strong>Posted:</strong> 23-August-2008 at 12:33pm<br /><br />1. In "inc_srcPrdQuery.asp" add "categories.idParentCategory" so the rsCat query results include the id for the parent category.<br /><br />2. In "inc_srcPrdsCAT.asp" use the idParentCategory from rsCat to pull the parent category's description and add it to the link that displays the categories.<br /><br />It's pretty simple, once you know where the code is located.<br /><br />]]>
   </description>
   <pubDate>Sat, 23 Aug 2008 12:33:04 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post6498.html#6498</guid>
  </item> 
  <item>
   <title><![CDATA[Show BreadCrumbs on showsearchresults.asp : cmason,  Can you please summarize...]]></title>
   <link>https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post6497.html#6497</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=1242">angel</a><br /><strong>Subject:</strong> 1690<br /><strong>Posted:</strong> 23-August-2008 at 12:19pm<br /><br />cmason,<DIV>&nbsp;</DIV><DIV>Can you please summarize your thoughts so that I can have the same?</DIV>]]>
   </description>
   <pubDate>Sat, 23 Aug 2008 12:19:12 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post6497.html#6497</guid>
  </item> 
  <item>
   <title><![CDATA[Show BreadCrumbs on showsearchresults.asp : Note: to keep the categories grouped...]]></title>
   <link>https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post6060.html#6060</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=1234">cmason</a><br /><strong>Subject:</strong> 1690<br /><strong>Posted:</strong> 18-July-2008 at 1:11am<br /><br />Note: to keep the categories grouped together under their parent category.<br /><br />In inc_srcPrdQuery.asp near the bottom of the page add idParentCategory first in the Order By.  It won't be alpha order but at least all the categories will appear under the same parent.<br /><br />query=query& "ORDER BY categories.idParentCategory,categories.categoryDesc; "]]>
   </description>
   <pubDate>Fri, 18 Jul 2008 01:11:25 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post6060.html#6060</guid>
  </item> 
  <item>
   <title><![CDATA[Show BreadCrumbs on showsearchresults.asp : Figured it out.  the first query...]]></title>
   <link>https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post6058.html#6058</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=1234">cmason</a><br /><strong>Subject:</strong> 1690<br /><strong>Posted:</strong> 18-July-2008 at 12:05am<br /><br />Figured it out.  the first query didn't have any error catching so it was trying to continue on an that's why it timed out.  That query is a Group By query so in inc_srcPrdQuery.asp "query=query& "GROUP BY categories.idcategory, categories.categoryDesc" needs to have the idParentCategory added to become query=query& "GROUP BY categories.idcategory,categories.categoryDesc,categories.idParentCategory"<br /><br />The other problem was the typo mentioned previously so the li in s/b<br />&lt;li&gt;&lt;a href="javascript:document.ajaxSearch.idcategory.value='&lt;%=tmp_CatID%&gt;';document.ajaxSearch.submit();" &lt;%if scStoreUseToolTip="1" then%&gt;onmouseover="javascript:document.ajaxSearch.idcategory.value='&lt;%=tmp_CatID%&gt;'; sav_callxml='1'; runXML('cat_&lt;%=tmp_CatID%&gt;');" onmouseout="javascript: sav_callxml=''; hidetip();"&lt;%end if%&gt;&gt;&lt;%=cw_ParentDesc%&gt; / &lt;%=tmp_CatName%&gt;&lt;/a&gt; (&lt;%=tmp_CatCount & tmp_CatCountMessage%&gt;)&lt;/li&gt;<br /><br />This will give an output of "Parent Description / Category Description" as the link.]]>
   </description>
   <pubDate>Fri, 18 Jul 2008 00:05:27 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post6058.html#6058</guid>
  </item> 
  <item>
   <title><![CDATA[Show BreadCrumbs on showsearchresults.asp : Small oops the link s/b cw_ParentDesc...]]></title>
   <link>https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post6051.html#6051</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=1234">cmason</a><br /><strong>Subject:</strong> 1690<br /><strong>Posted:</strong> 17-July-2008 at 6:56pm<br /><br />Small oops the link s/b cw_ParentDesc not cwParentDesc]]>
   </description>
   <pubDate>Thu, 17 Jul 2008 18:56:31 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post6051.html#6051</guid>
  </item> 
  <item>
   <title><![CDATA[Show BreadCrumbs on showsearchresults.asp : It&amp;#039;s not exactly straightforward...]]></title>
   <link>https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post6049.html#6049</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=1234">cmason</a><br /><strong>Subject:</strong> 1690<br /><strong>Posted:</strong> 17-July-2008 at 5:12pm<br /><br />It's not exactly straightforward because the category display in showsearchresults.asp is very different than viewcategories.asp. Plus there are two queries involved on showsearchresults.asp, one for the details and one for the scrolling category list in the JavaScript window.  We've removed the JavaScript scrolling window code so I can't give you line numbers.  Also, we've standardized on linking products to categories only on tier 3 categories so this idea may not work for everyone.<br /><br />Below is what I think should work but every time I add "categories.idParentCategory" to the first step it slows the query down so much it's unusable.  I can't figure out why adding a field to the select is having that effect.  Can anyone spot where I'm stinking thinking?<br /><br />1. Go to inc_srcPrdQuery.asp and find the line "SELECT "& pcv_strLimitPhrase &" COUNT(categories.idcategory) AS ProductCount, categories.idcategory, categories.categoryDesc "  and add categories.idParent so it looks like "SELECT "& pcv_strLimitPhrase &" COUNT(categories.idcategory) AS ProductCount, categories.idcategory, categories.categoryDesc, categories.idParentCategory " <br /><br />2. Next go to inc_srcPrdsCAT.asp page find "&lt;%Do while not rsCAT.eof" and under "tmp_CatName=rsCAT("categoryDesc")" add<br />  cw_ParentID = rsCat("idParentCategory")&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />  cwSQL="SELECT categoryDesc FROM categories WHERE (idCategory = "&cw_ParentID&""<br />  set rsParent=conntemp.execute(cwSQL)<br />  cw_ParentDesc = rsParent("categoryDesc")<br /><br />Then find the link "&lt;li&gt;&lt;a href="javascript:document.ajaxSearch.idcategory.value='&lt;%=tmp_CatID%&gt;';document.ajaxSearch.submit();" &lt;%if scStoreUseToolTip="1" then%&gt;onmouseover="javascript:document.ajaxSearch.idcategory.value='&lt;%=tmp_CatID%&gt;'; sav_callxml='1'; runXML('cat_&lt;%=tmp_CatID%&gt;');" onmouseout="javascript: sav_callxml=''; hidetip();"&lt;%end if%&gt;&gt;&lt;%=tmp_CatName%&gt;&lt;/a&gt; (&lt;%=tmp_CatCount & tmp_CatCountMessage%&gt;)&lt;/li&gt;" <br /><br />and add the parent description by changing it to<br /><br />&lt;li&gt;&lt;a href="javascript:document.ajaxSearch.idcategory.value='&lt;%=tmp_CatID%&gt;';document.ajaxSearch.submit();" &lt;%if scStoreUseToolTip="1" then%&gt;onmouseover="javascript:document.ajaxSearch.idcategory.value='&lt;%=tmp_CatID%&gt;'; sav_callxml='1'; runXML('cat_&lt;%=tmp_CatID%&gt;');" onmouseout="javascript: sav_callxml=''; hidetip();"&lt;%end if%&gt;&gt;&lt;%=cwParentDesc%&gt; / &lt;%=tmp_CatName%&gt;&lt;/a&gt; (&lt;%=tmp_CatCount & tmp_CatCountMessage%&gt;)&lt;/li&gt;<br /><br />then find "set rsCAT=nothing" and above it put "set rsParent=nothing"<br />]]>
   </description>
   <pubDate>Thu, 17 Jul 2008 17:12:11 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post6049.html#6049</guid>
  </item> 
  <item>
   <title><![CDATA[Show BreadCrumbs on showsearchresults.asp : Hi, A good starting point may...]]></title>
   <link>https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post5429.html#5429</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=303">Hamish</a><br /><strong>Subject:</strong> 1690<br /><strong>Posted:</strong> 06-June-2008 at 3:49am<br /><br />Hi,<br>&nbsp; A good starting point may be the code for dynamic category navigation from the EA website.<br>I haven't looked at it in a while, but I reckon it would be fairly straight forward to&nbsp; extract a list of the "breadcrumbs"  for each category which could then be used as you wish.<br>There may already be suitable code in the search for adapting as well.<br>]]>
   </description>
   <pubDate>Fri, 06 Jun 2008 03:49:43 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post5429.html#5429</guid>
  </item> 
  <item>
   <title><![CDATA[Show BreadCrumbs on showsearchresults.asp : Hello, After performing a search,...]]></title>
   <link>https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post5427.html#5427</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=47">bkats</a><br /><strong>Subject:</strong> 1690<br /><strong>Posted:</strong> 05-June-2008 at 10:49pm<br /><br />Hello,<DIV>After performing a search, the results are displayed with a section at the top where you can narrow the search by category. We would like to display the entire category tree due to the fact we have many categories with the same name under different parent categories. </DIV><DIV>&nbsp;</DIV><DIV>To give an example we have 2 categories as follows:</DIV><DIV>ROOT&gt;Men's&gt;Jackets</DIV><DIV>and</DIV><DIV>ROOT&gt;Women's&gt;Jackets</DIV><DIV>&nbsp;</DIV><DIV>So when a search is performed the user may see 2 links name "Jackets" in the section at the top where they can narrow the search. However, as it is, they don't know which one to click on depending if they are looking for a Men's or Women's Jacket.</DIV><DIV>&nbsp;</DIV><DIV>We would like to have it display as follows in the section at the top where they can narrow the search:</DIV><DIV><DIV>Men's&gt;Jackets</DIV><DIV>Women's&gt;Jackets</DIV><DIV>&nbsp;</DIV><DIV>rather than:</DIV><DIV>Jackets</DIV><DIV>Jackets</DIV><DIV>&nbsp;</DIV><DIV>I hope this is making sense.</DIV><DIV>Can anyone out there help us?</DIV><DIV>&nbsp;</DIV><DIV>Thank you!</DIV></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 05 Jun 2008 22:49:30 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/show-breadcrumbs-on-showsearchresults-asp_topic1690_post5427.html#5427</guid>
  </item> 
 </channel>
</rss>