Yes! That worked.
Thank you. I kept putting the module_name into the module_name spot instead of thinking it was the key 🤦♂️
I adjusted the code to be even simpler since all I want is the default value to be no.
class My_blog_posts_model ext…
That sounds like the optimal solution, but I'm having a hard time getting the system to see My_blog_posts_model.php in /fuel/applications/models/
I've searched for the proper technique to overwrite the Blog module specifically, but no luck.
He…
It doesn't seem to work. I set it as FALSE and turned the Settings-> Blog -> Allow Comments as checked and it makes the radio select yes by default. If the checkbox is unchecked it hides the option completely.
If there's nothing built-in, I c…
Interesting. That helps a lot. Thank you
It's been a while since I worked in Fuel so just need to refresh my mind. I work in CI a lot, but Fuel is just different enough to forget the important parts
Is there a better way to do this then?
This is all that I'm doing right now:
<?php $posts = $this->fuel->blog->get_recent_posts(); ?> <?php print_r($posts); $this->db->debug_query(); ?>
I couldn't find anything …
Hi @admin, I've updated to the new version of Fuel 1.4.7 and now seeing the following messages I thought you might like to look into for PHP 7.4. No rush for me, I can keep using 7.3 or 7.2 for now.
Severity: 8192
Message: implode(): Passing glu…
I just got this same thing with the latest version of Fuel. Once I changed /fuel/codeigniter/libraries/Upload.php line 883 to:
public function is_allowed_filetype($ignore_mime = TRUE)
It worked fine.
It returns false at the last return which me…
It looks like a new bug has surfaced with line 327 in fuel\modules\fuel\controllers\Module.php
$url = fuel_url("'.$this->module_uri.'/delete/".$cols[$CI->model->key_field()]);
Needs to be changed to:
$url = fuel_url($this->module_ur…
My apologies, I was expecting something different so I didn't fully read your comment. I applied that fix and with no other adjustments that error is gone.
Thank you
I updated the files that had been most recently modified which include:
* /fuel/modules/fuel/libraries/parser/Fuel_dwoo_parser.php
* /fuel/modules/fuel/libraries/Fuel_custom_fields.php
I noticed you updated the following within the last co…
I found that the Fuel cache was causing it so I wouldn't see the errors. I've cleared the cache and the errors re-appear. I'm going to implement your fix and make sure the errors are gone now.
Yes, those are set. As you saw in the error message I posted earlier:
Message: The each() function is deprecated. This message will be suppressed on further calls
So, it doesn't look like it'll show the error to me again. I need a way…
It looks like the spacing thing happens when an error shows up. If there are no PHP errors, the script tags are shown correctly. I just need to make sure I go to the website and acknowledge the each() deprecated error once per page when I update to…
The $l_delim warnings have been taken care of, however, this popped up next:
A PHP Error was encountered Severity: 8192 Message: The each() function is deprecated. This message will be suppressed on further calls Filename: Dwoo/C…
Interesting, it's not doing it to all the pages, only the front page. Any clue what could be causing it?
I put a <?php die(); ?> at the bottom of my footer block view file and it fixed this issue but created new issues with various tags, ob…
This is also very weird. It seems that everything within my header view between tags is looking like this:
f u n c t i o n m as k I t ( $ e l e m e n t ) {
Nothing else looks like this on the page, just the code between the tags.
…
Hi!
This is great, but I've noticed a "Notice" error you might want to be aware of:
A PHP Error was encountered Severity: Notice Message: Undefined variable: l_delim Filename: parser/Fuel_dwoo_parser.php Line Number: 1…