What version of the blog module are you using?
The fuel/application/config/MY_config.php file has a date_format value which will change the display formatting in the form. On the saving side, the MY_Model::clean function converts dates using the en…
Is there a block layout specified for the block itself (above looks to be the page layout)?
http://docs.getfuelcms.com/general/layouts#layouts_block_layouts
I've pushed an update to this in the develop branch so you that there is now an additional "row_delimiter" parameter you can pass to the custom field:
https://github.com/daylightstudio/FUEL-CMS/commit/0208bf319fe4741cc1887dd89884b57e4745ee61
restrict_to_remote_ip applies only to the admin area. There is a "dev_password" config parameter that can be used as well to help restrict users. Otherwise, you can use .htaccess:
order deny,allow deny from all allow from xx.xxx.xx.xx #IP 1 allow f…
There is a fix in the develop branch that may help which you could try and cherry pick:
https://github.com/daylightstudio/FUEL-CMS/commit/0690a9651c2c5a65806219b8f9abdba30ad6d31d
Is the error disallowed characters error? Please provide the following additional info:
1. The URI path of the first page of the form
2. The URI path of the page it's submitting to
3. Any route information in the custom modules fuel/modules/config/…
The $auto_encode_entities is mostly to ensure that HTML input is escaped and safe for displaying on the front end. Since that is a public property of the object the default value would need to be changed to a third option of NULL and if NULL is dete…
It submits an array so you you'll either need to handle the saving of that data in an on_after_save model hook or you can set the field to be serialized:
http://docs.getfuelcms.com/general/models#hooks
http://docs.getfuelcms.com/general/models#seri…
Some follow up questions:
1. How many pages do you have on the site?
2. Are there multiple lists of pages (pagination links) displayed and does it display on one of those?
3. Are there any plugins installed on your browser that may be causing this d…
The Show 50 displayed in the upper right is controlled by the modules "limit_options" parameter which by default is the follow for all modules but can be changed:
// ... 'limit_options' => array('50' => '50', '100' => '100', '200' => '2…
Inline styles will trigger things being altered by the xss_clean function which is being used by default. You may also want to try the following which will give you some sanitization:
'sanitize_input' => array('template','php'),