/ are replaced for _ on around line 96 of modules/fuel/views/_blocks/fuel_header
It's late, but I don't see anything obviously wrong with what you have there. Can you output $key around line 94.
1) I'd write a block and have it pull the data out of the blog posts model. There is a method of blog_block() in the blog_helper file that will make it easier with themes.
2) Not sure I follow.
3) You're meaning presentation/layout formatting of t…
I've not looked at this much but I would think your best bet to check the permission in one place would be modules/fuel/controllers/dashboard
In there you'll see it doing it's per module fuel_auth::has_permission() checks.
Just to clarify, are you talking about the actual dashboard or the list_items view modules use? They're not the same thing.
If you want to override the sql generated in list_items you can do this->db calls in there. Do these before calling paren…
The select is populated if you add an options array to your config though right?
For example this works for me:
$config['modules']['posts'] = array( 'filters' => array( 'post_type' => array( 'default' => 'blog', 'label' => 'P…
Is massmail_authenticate true? Could we see "blocks/_file_header.php".
By the looks of that, you have no $user variable defined.
Assuming _lista() is running, what happens when you add $vars['user'] = 'suw'; to it?
Strange, this seems to work for me without any problems.
Nav settings: http://dev.whats-on.co.nz/assets/images/grab.jpg
Click 'test' in the left of the footer here: http://dev.whats-on.co.nz
Apologies if I've misunderstood.
There is a number of examples for both of those relationships already.
One-to-many example: The select used for the author of a blog post.
Many-to-many example: Supercombos used for blog post categories.
# quote
EcotypeS: On hooks, I'm pretty unclear how I get the data or return it. I desperately need a simple example -- my ignorance biting again.
# quote
Maybe irrelevant now, but the hooks are defined MY_model which your models extend.
MY_Model::…
As Admin says, please be specific with what you're having trouble with. People are here to help but need to know the problem. "It doesn't work" doesn't help much.
FWIW, we've installed Fuel on OSX native, xampp/mamp, win xammp and production VPS wi…
You have the above in an editable cms page?
Can you post your jQuery functions?
Try placing {literal}{/literal} around them. I've found that if the js has regex in there it still fails, best to put the code in /assets/js/main.js
Hmm works for me.
I just set it to true on my site:
http://redgemmedia.co.nz - just a view
http://redgemmedia.co.nz/portfolio - advanced module
http://redgemmedia.co.nz/services - cms page
http://redgemmedia.co.nz/contact - cms page with controll…
Ah, not on initial display, after a click in list_items..
So you want to go list_items -> list_items -> form_fields?
I'm not sure you can do that without using an advanced module. We'll need Dave's expertise!
Given your example though, in t…
This is the list_items table in the Fuel admin?
If so you'd probably be better off rewriting the sql in your version of the list_items method in your model.
See "Changing the list view columns" here: http://getfuelcms.com/user_guide/modules/tutori…
No you're good, I missed the inline bar bit!
Not 100% what I'm looking at? The drop down or the bar being over the top your other links?
I'll take a look tomorrow
The signature for fuel_var is:
fuel_var($key, $default = '', $edit_module = 'pages', $evaluate = TRUE)
If you empty out $edit_module there with an empty string or NULL it should empty the markers:
var slider={}; slider.data=[ <?php echo fuel_…
Scratch page_router comment.
Assuming a config flag would do:
Backup your fuel_routes file and try this one.
<?php /* |-------------------------------------------------------------------------- | FUEL ROUTES |--------------------------------…
Obviously if you're in a pinch and have access, replace the root level index file.
Is a config file setting good enough or are you wanting checkbox type thing in fuel admin?
Best spot is likely fuels page_router controller
Struggling to remember.. I think I've struck this before, is there any regex in your version of the cke config file? I remember I had to remove two regex lines in there .
If I were you I'd roll your own using bitwise for groups if you need inheritance (well even if you don't).
I have a public login area for my site, it's inside a bigger module but could be pulled out. Doesn't have groups however so might not be any …