After reading a few other discussions I think I've solved it, if I extend the CI_Controller as you suggest, then using the following solved the problem with undefined variables.
//$this->load->view('order'); //Removed $vars = array('page_ti…
I found that if I remove
<?php echo css($css); ?> <?php echo css($js); ?>
then the page displays fine, but I was reluctant to remove it incase it was relied upon by another part of fuel.
Also, I also found that if I use Fuel_base_co…
Thanks Admin, that was the problem. I found that if I changed
$month = (int) $this->uri->rsegment(3);
to this
$month = (int) date('m', strtotime($this->uri->rsegment(3)));
then I could use
/blog/2013/december
/blog/2013/dec
Thanks for that. I managed to reformat the links to display correctly.
The next thing I have noticed, is that in order to filter the archive by month that I need to parse month number through the url
/index.php/blog/2013/12
By using
/index.php/blog…
Hi Admin
I upgraded to V1 today, which went relatively smoothly. However when I updated /blog/libraries/fuel_blog.php with $key = date('Y/F', strtotime($post->date_added)); in order to change the archive url to use a full textual month, it cause…
I've figured out how to override the form_builder parameters, and how to pass additional attributes to the input elements. But 'placeholder' => 'some text here' doesnt seem to work.
I also cant see where to add additional attributes to the label…
Strangely enough I did think I shouldnt be so lazy, and had read up a little on codeigniter and managed to make the changes i needed. My only questions are though;
Can i set $render_format = 'divs' for only the blog comments form? I made the change…