The fuel/modules/fuel/controllers/pages.php controller contains a lot of special logic for saving page variables for a page. The fuel/modules/fuel/assets/js/fuel/controller/PageController.js file is the javascript logic used to switch between the di…
If you are using the main admin template, the form tag may already be in there so check to see if you actually have a form within a form already (which isn't valid HTML). You can pass the variable 'form_action' if you want to set a different action …
The Admin can be rendered with different modes.
http://docs.getfuelcms.com/libraries/fuel_admin
$this->fuel->admin->set_display_mode(Fuel_admin::DISPLAY_COMPACT_TITLEBAR);
Below are the list of provided constants that can be used for the …
It's under your MY_fuel_modules.php for the particular simple modules' configuration. As an example, look at the fuel/modules/fuel/config/fuel_modules.php and the pages module's configuration.
You can upgrade the folder fuel/modules/fuel/assets/js/editors/ckeditor/. You'll need to include the 2 additional plugin folders for fuelimage and fuellink:
http://forum.getfuelcms.com/discussion/2613/ck-editor-safari-bug#Item_4
There is a down triangle in the search dialog that should show those filters. There are 3 different filter views you can use which can be set using the "advanced_search" property in the module's configuration:
popover = shows dropdown arrow in searc…
Thanks for the report. I've posted a fix for that issue. It had to do with some core changes to how the main CodeIgniter class is executed and required a small overwrite for the show_404 Exception method:
https://github.com/daylightstudio/FUEL-CMS/c…
There would be potentially 2 places that you would need to change. The first would be in the fuel/modules/fuel/libraries/Fuel_custom_fields.php file keyval method. This is what parses the returned data and changes it to the JSON to be saved. The sec…
It sounds like you are just wanting a number field that has decimals and a before_html value of "£" correct? If so, try the following:
'type' => 'number', 'before_html' => '£', 'decimal' => TRUE
That parameter is only applicable to post pages. It sounds like in your case you'll need to add some code in your layout_model.php file to display content if no model record exists.
The form_fields method will automatically populate the options for you based on the model relationship specified. However, these values can be overwritten like any other select/enum form type by changing the 'options' parameter for your field:
http:…
If the detail pages are generated from a model's data, you can look at the module's post pages example:
http://docs.getfuelcms.com/modules/simple#post_pages
Note that in the example there is a 'empty_data_show_404' parameter you can use to
Add the parameter "ignore_representative" => TRUE to your field. Form_builder is setup to automatically use the URL field type with any field that has the name of url or link.
If you overwrite the 404_override route, then all non-controller pages will get routed there instead which means all pages in the CMS will need to be rendered via another controller.
Are you using the forms advanced module for this and creating the form field in the CMS?
http://docs.getfuelcms.com/modules/forms
If so, do the option1, option2 values have spaces, commas or pipes in them?
For your $branch_block block layout, try adding the following model parameter (but substitute 'my_model' with your model name):
$branch_block->set_model('my_model');