Open radyka-fancy-gallery.php and go to line 46: $this->maximum_filesize = 1024 * 1000; By default its set to 1MB, you set the value as byte value. Just change it to your desired size.
How can I show the recent media at the beginning of my gallery?
1. Open radykal-fancy-gallery.php 2. Go to line 517: $album_files = $this->wpdb->get_results(“SELECT * FROM {$this->images_table_name} WHERE album_id=’$album->ID’ ORDER BY sort ASC” 3. Change ASC to DESC: $album_files = $this->wpdb->get_results(“SELECT * FROM {$this->images_table_name} WHERE album_id=’$album->ID’ ORDER BY sort DESC”
How can I assign the plugins admin to different roles?
The plugin comes with a custom capability, that you can assign easily to your roles. You only need a plugin for assiging capabilities to roles. I recommend this one.
How to load the necessary javascript files into an ajaxified theme?
1. Open radykal-fancy-gallery.php and go to line 34 line that starts with these lines: public static $add_script = false; //loads the core js files public static $add_pp_script = false; //loads prettyphoto js files public static $add_fb_script = false; //loads fancybox js files public static $add_inline_script = false; //loads inline js files 2. Set the first to true and also the … Read More
How to install an addon?
Unzip the downloaded zip and move the unzipped folder into the addons directory of the radykal-fancy-gallery directory.