Select assets within subfolders in wysiwyg editor
Hi everyone. I wasn't sure where to post this question as it isn't really a news and announcements or certainly doesn't qualify as a bug report. So my project with porting a CI website into Fuel CMS is coming along well for me. One thing I'm trying to do is insert images located in a subfolder in assets into my webpages. Asset path in question is assets/images/resources
I have all the images uploaded, I just don't know how to access them from the Insert Image option in the editor. Thanks much
Comments
Also, if you are using the FUEL 1.0 beta, there is a "folder" parameter you can set with Form_builder that will allow you to just display images from that folder in the asset select:
$fields['my_field']['folder'] = 'images/resources';
http://docs.getfuelcms.com/general/forms#asset
$fields['class'] = 'asset_select images/resources';
$fields['image']['class'] = "asset_select " . assets_server_path('products', 'images', 'store');
Any way to make this asset select button look in the fuel/modules/store/assets/images directory instead of /assets/images?