Helgi, > I figured I could take a copy of the breadcrumb.cfm file > from the farcry/farcry_core/tags/webskin directory and > drop that into my project directory (arbitrary location... > But now none of my pages render at all... no errors, no > rendering at all. Any ideas?
I like to make a tags folder within my project folder and then make a webskin folder under that (replicating what's in core). Then for custom tag libraries like that I prefix them with the string "my" so that I can use the tags found in FarCry core as well as custom ones on the same page and not have to think too hard about them. So, my question to you: Do you have the <cfimport/> tag used more than once on that page both setting the tag library name "skin"? Example of code I might use at the top of page when mixing custom tags and tags from core: <cfimport taglib="/farcry/farcry_core/tags/webskin" prefix="skin"> <cfimport taglib="/farcry/#application.applicationname#/tags/webskin" prefix="mySkin"> Hope that's helpful, --- Jeff Coughlin Web Application Developer http://www.jeffcoughlin.com -----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Helgi Rudd Sent: Tuesday, September 26, 2006 3:28 AM To: farcry-dev Subject: [farcry-dev] Change Default Breadcrumb I have used the breadcrumb creator in the farcry core, using the following code: <cfimport taglib="/farcry/farcry_core/tags/webskin" prefix="skin"> <skin:breadcrumb separator=">" here="#stobj.title#"> That works nicely... however I don't want the breadcrumb trail to render the 'Home' page at all. So, I figured I could take a copy of the breadcrumb.cfm file from the farcry/farcry_core/tags/webskin directory and drop that into my project directory (arbitrary location... I thought i'd create a new folder /tags under the existing webskin folder in my project directory).... intending to make minor changes to the code such that it ignored the home page. I took a copy and did not make any changes to the file contents (wanting to make sure just copying breadcrumb.cfm accross and referencing it from my project folder would work).... my template page code was changed to reference my version of the tag file: <cfimport taglib="/farcry/#application.applicationname#/webskin/tags" prefix="skin"> <skin:breadcrumb separator=">" here="#stobj.title#"> But now none of my pages render at all... no errors, no rendering at all. Any ideas? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "farcry-dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/farcry-dev -~----------~----~----~----~------~----~------~--~---
