Skip to content

Instantly share code, notes, and snippets.

@Reyjay
Reyjay / Check_URL_For_String.cfm
Created August 13, 2013 16:13
Check URL For String
<cfset currentURL = replace($.slatwall.getURL(),'/index.cfm','','all') />
<cfif currentURL.endsWith("shopping-cart/")>
Still haven't found what I'm looking for.
<cfelse>
Choose your own song then...
</cfif>
@Reyjay
Reyjay / slatwall_related_items.cfm
Created July 31, 2013 17:42
Slatwall Related items feed
@Reyjay
Reyjay / Slatwall_Product_variables.cfm
Created July 31, 2013 17:37
Slatwall Product variables
#$.slatwall.product('productDescription')#
#$.slatwall.product()#
#$.slatwall.getProduct()#<!---This is the proper way of doing it--->
#$.slatwall.product('productDescription')#
#$.slatwall.getProduct().getProductDescription()#<!---This is the proper way of doing it--->
#$.slatwall.product('productDescription', 'my-new-description')#
#$.slatwall.getProduct().setProductDescription('my-new-description')#<!---This is the proper way of doing it--->