How can I change the maximum upload size?

admin

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?

admin

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 to load the necessary javascript files into an ajaxified theme?

admin

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?

admin

Unzip the downloaded zip and move the unzipped folder into the addons directory of the radykal-fancy-gallery directory.