Book Store Requirements:Create a Simple Bookstore Site with the following requirements: Support for Languages: English and Spanish Books Structure: ISBN Code, Author (support for multiple Authors)...
To install Camaleon CMS you need to do the following steps or watch this video: Updated installation steps here. Open a browser and navigate to https://localhost:3000 (First time will...
Camaleon CMS can be integrated into existent Rails Project. Note: Check here for updated install steps.Steps to install: Add camaleon_cms to your Gemfile (review github for the last stable versio...
Themes permit you to create and customize content visualizations for all devices like: Desktop, Mobile and Tablet. This themes can be assigned for multiples sites at the same time without affe...
Install Ruby on Rails 4.1+ Visit here. Create your rails project rails new my_project Add the gem in your Gemfile gem 'camaleon_cms', '1.1.0' Install the gem bundle install # bundle update ...
Plugins permit you to add or extend (through hooks) the CMS functionalities for all your needs without affecting the core of the CMS. These plugins are small rails apps that include ...
Sometimes is necessary to use custom url's for post types (content groups), these are the steps to customize: Append custom url support in your config/route.rb scope PluginRoutes.system_info["rela...
Documentation in Progress.. Sample: # add a custom field group to current thememy_group = current_theme.add_field_group({name: "My Group", slug: "my_group_key"})# add a custom field group to speci...