Hi!
there are some things that you may fix:
1. Forms - form field type - "text" creates a textarea field, not input type="text".
2.
Configuring FUEL CMS site_name superfluous description.
3.
Caching, Page Caching - bad link (404) $config['use_page_cache'].
Comments
also notice one thing today:
fuel_edit('$id', ['$label'=NULL], ['$module'='pagevariables'], ['$is_published'=TRUE], ['$xoffset'=NULL], ['$yoffset'=NULL])
$xoffset - does not work (it takes params, but don't change position)...
<span class="__fuel_marker__"...>
example from docs:
// long version <?=fuel_edit($article->id, 'Edit article: '.$article->title, 'articles', 10, 10)?>
It worked when i pass this params:
<?=fuel_edit($article, 'Edit: '.$article->title, '', '', 5, 20)?>
third and fourth param does no effect, to change marker position need to pass 5th and 6th param...