Thumb docs

Hooks

November 21, 2015 10:27

Hooks are functions that listen for specific process where you can customize the normal functionality of Camaleon CMS. This customization can be: Customize results Load custom assets Load custom t...

Thumb docs

Custom Fields

November 19, 2015 10:20

Camaleon CMS Custom Fields is the perfect solution for any website which needs more flexible data. Visually create your FieldsSelect from multiple input types (text, textarea, wysiwyg, image, file...

Thumb docs

Model Diagram

November 20, 2015 11:16

Thumb docs

Class Docs

June 15, 2016 20:52

You will be redirected in 2 seconds...

Thumb docs

How to add new frontend language?

November 01, 2017 09:22

This are the steps to add a new language for Admin Panel. Create a new yml file in config/locales/camaleon_cms/my_locale.yml Add your language key in config/system.json =>available_languages, c...

Thumb docs

How to add new admin language?

September 05, 2016 22:59

This are the steps to add a new language for Admin Panel. Create a new yml file in config/locales/camaleon_cms/admin/my_locale.yml Add your language name in config/locales/camaleon_cms/languages.y...

Thumb docs

Custom Authentication

October 19, 2016 22:14

Option 1) Change Authentication Into Devise Install Camaleon CMS Install devise gem 'devise'rails g devise:installrails g devise blogger Change migration disabling existent attributes (email, ti...

Thumb docs

Custom AWS Params

October 26, 2016 14:46

Sample to add and read extra attribute from AWS for each file: def my_hook_for_on_uploader(args) args[:aws_settings][:aws_file_upload_settings] = lambda{|settings| settings[:cache_control] = 'max-a...

Thumb docs

Custom Frontend Login

October 26, 2016 23:17

This is a sample to add your custom frontend login for your theme (Be careful with theme folder name). Create a controller within your themeapps/themes/{theme_folder_name}/frontend_sessions_contro...

Thumb docs

Create Simple Custom Field

November 08, 2016 11:36

#/themes/e_shop/views/custom_field/_country_select.html.erb<div class="group-input-fields-content"> <%= select_tag "#{field_name}[#{field.slug}][values][]", options_for_select(ISO3166::Co...