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?
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.
My thumbnails are not displaying. What I am doing wrong?
Check out the Troubleshooting documentation page.
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 hide the social buttons in fancybox.
Add this to a css file, e.g. to the style.css of your theme: .fancybox-title iframe, .fancybox-title .pin-it-button { display: none !important; }
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.
Why is the media not shared on facebook when I like it?
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
How can I center the thumbnails so there is equal margin space on left and right of the gallery thumbnails?
Set the number of columns to a value higher than 0. For example if you would like to have 3 columns, just set it to 3.
What kind of lightboxes does the plugin support?
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?
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