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.

I get a spinner icon on every page. How can I remove it?

admin

Thats because another plugin or your theme is using an older version of fancybox. I am using the newest version of fancybox and a lot of themes are using fancybox V1. You need to choose another lightbox for fancy galleries or replace my fancybox package with the older version, but therefore you need some coding knowledge.

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”  

Why is the media not shared on facebook when I like it?

admin

When you like a media, the current showing url will be shared. The Like button shares always the current showing URL. Facebook checks the site if there are any open graph meta tags. These tags are set in the head of the HTML document, it stores amongst others the image that should be shown on facebook. If there are no open … Read More

What kind of lightboxes does the plugin support?

admin

You can choose between prettyphoto and fancybox as lightbox. You can also enable an inline gallery or just disable the gallery, so the media opens in the browser window.

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