This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!--- Force Image Resave for All Images ---> | |
| <cfset application.serviceFactory.getBean('fileManager').rebuildImageCache(siteid='YOURSITEID')> | |
| <!--- or to just reset a specific image size you can use ---> | |
| <cfset application.serviceFactory.getBean('fileManager').rebuildImageCache(siteid='YOURSITEID' ,size='YOURSIZE')> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfoutput> | |
| <div> | |
| <form action="#$.content('url')#?keywords=#$.event('keywords')#"> | |
| <dl> | |
| <dt>Keywords</dt> | |
| <dd><input type="text" name="keywords" value="#HTMLEditFormat($.event('keywords'))#" /></dd> | |
| <dd><input type="submit" value="Search" /></dd> | |
| </dl> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| // Category Iterator of Children of the Current Content Node | |
| itKidsCats = $.content().getKidsCategoryIterator(); | |
| // Category Iterator of the CURRENT Content Node | |
| itCats = $.content().getCategoriesIterator(); | |
| </cfscript> | |
| <cfoutput> | |
| <!--- Children of the Current Content Node ---> | |
| <h4>Kids Categories</h4> | |
| <cfif itKidsCats.hasNext()> |
OlderNewer