I'm using lowercase "home" everywhere already. And I've tried with and without the wildcard fix; they both give me different issues. Without the fix, I get the "Undefined variable: wildcard_location" error, but the page loads with the custom fields.…
It is set to $config['fuel_mode'] = 'auto';
And it is editable in the CMS, as seen here: https://i.imgur.com/9GPUJxn.png
Looking at the steps in my original post, have I done something wrong or missed a step? The heading and tagline fields display o…
I realized if I switch it to if (empty($data) OR ($data['location'] != $location AND (!empty($wildcard_location) AND $data['location'] != $wildcard_location.'/:any'))) that the full toolbar displays at the top, but still having an issue with the Hom…
I also have a question about inline editing. The docs say "A FUEL logo will be displayed in the upper right area of the page that can slide out and provide you the ability to toggle inline editing, publish status and caching. Clicking the inline edi…
Hello again. I tried that (though it was missing a closing parenthesis), but then the Home page doesn't load at all, just the header and footer blocks.
I also tried creating application/views/_variables/home.php and removing fuel_set_var('layout', 'home'); from application/views/home.php, but it didn't help. If I delete the page from the CMS, the error goes away. I know it's just a notice, but I'd …
After upgrading to 1.1, one of the users can no longer see entries in the modules (loading icon spins forever). They're using IE11. Have you encountered this problem before?
I found this issue. The query is
SELECT `articles`.* FROM (`articles`) WHERE `id` IN ('3, 2') AND `articles`.`published` = 'yes' ORDER BY FIELD(id, '3, 2')
When I need it to be:
SELECT `articles`.* FROM (`articles`) WHERE `id` IN (3, 2) AND `article…
I'm not quite how to do it.
$CI->load->model('articles_model'); $articles = $CI->articles_model->find_within(array(1, 2, 3, 6), array('published' => 'yes'));
I tried that, and a few other combinations, and my page times out.