pretty much as what the titles says, "can i add images into my content" if so how?
i'm trying to reproduce www.gunacgme.co.nz into cms made simple so my old boss can update the site add new pictures easily. since i no longer work there
Can i add images in Content
Re: Can i add images in Content
Of course you can and you have multiple ways do implement it:
1. You can enable adding images in the wysiwyg editor.
Extensions -> MicroTiny WYSIWYG editor -> Settings (tab) -> 'Allow images'
2. use {content_image} tag
3. install GBFilePicker module and add some code in template:
Option 2 and 3 need some extra 'coding' to do something useful with the image(s).
Whatever option you choose, have a look at CGSmartImage module too to make it fool proof.
1. You can enable adding images in the wysiwyg editor.
Extensions -> MicroTiny WYSIWYG editor -> Settings (tab) -> 'Allow images'
2. use {content_image} tag
3. install GBFilePicker module and add some code in template:
Code: Select all
example:
{content_module block="filepicker_block_4" module="GBFilePicker" assign="image4" label="Logo rechts onder" mode="browser" media_type="image" dir="images"}
Whatever option you choose, have a look at CGSmartImage module too to make it fool proof.
Re: Can i add images in Content
Cheersvelden wrote:Of course you can and you have multiple ways do implement it:
1. You can enable adding images in the wysiwyg editor.
Extensions -> MicroTiny WYSIWYG editor -> Settings (tab) -> 'Allow images'
2. use {content_image} tag
3. install GBFilePicker module and add some code in template:Option 2 and 3 need some extra 'coding' to do something useful with the image(s).Code: Select all
example: {content_module block="filepicker_block_4" module="GBFilePicker" assign="image4" label="Logo rechts onder" mode="browser" media_type="image" dir="images"}
Whatever option you choose, have a look at CGSmartImage module too to make it fool proof.
Mate