Search found 5 matches
- Mon Apr 06, 2009 1:50 pm
- Forum: Layout and Design (CSS & HTML)
- Topic: [solved] Image Linking issue (1.5.1)
- Replies: 21
- Views: 12054
Re: Image Linking issue (1.5.1)
Sure, that works, but is this a bug and will it be fixed? Some of my users are only comfortable with the WYSIWYG editor (isn't that the point of a CMS?) and won't be willing to try using smarty tags.
- Mon Apr 06, 2009 2:26 am
- Forum: Layout and Design (CSS & HTML)
- Topic: [solved] Image Linking issue (1.5.1)
- Replies: 21
- Views: 12054
Re: Image Linking issue (1.5.1)
I am experiencing the same problem with 1.5.3. The CMS Self Link option doesn't work on images. It takes an image tag and converts it into something like this: {cms_selflink page="home" text="<img style="width: 300px; height: 33px;" src="uploads/headline_welcome.gif&q...
- Thu Jan 01, 2009 8:16 pm
- Forum: CMSMS Core
- Topic: Unexpected behavior with page-specific Smarty data [SOLVED]
- Replies: 1
- Views: 5006
Re: Unexpected behavior with page-specific Smarty data
I wrestled with this for a while today and finally found the answer in the 1.4.0 changelog: * A new text area in the options tab of content pages allows specifying page specific data (as opposed to putting page specific data into the metadata section of the page) * A new plugin {process_pagedata} pr...
- Fri Oct 24, 2008 3:15 pm
- Forum: Modules/Add-Ons
- Topic: Include database template in UDT?
- Replies: 2
- Views: 1082
Re: Include database template in UDT?
Templates for what?... I'd like my tag to be able to use smarty templates. In some cases I am copying small existing apps from our old site, and they rely on smarty templates for their output. It'd be easier for me to manage them if they were stored in the database so I could edit them from the CM...
- Thu Oct 23, 2008 1:52 pm
- Forum: Modules/Add-Ons
- Topic: Include database template in UDT?
- Replies: 2
- Views: 1082
Include database template in UDT?
Is it possible to include a database template in a user defined tag? I am currently storing my templates in tmp/templates/ and using code like this: global $gCms; $smarty->assign("a_variable", "value"); $template="my_template.tpl"; $smarty->display($template); I'd love...