Forum Replies Created
- AuthorPosts
RattusKeymasterDid you try different browser / computer?
RattusKeymasterThere is no way to change transitions in Afflux module.
But here is Afflux Mod I’ve made one day: https://dl.dropboxusercontent.com/u/6295502/gmedia_modules/afflux-mod.zip
Maybe it will fit you better.
RattusKeymasterWaiting for access to WP admin… Asked in another topics
RattusKeymasterSorry, moved to another hosting and emails about new topics and replies stopped coming. Fixed now.
I’m the only person who develop and support these plugins and all time I spent to improve plugin, to add some features, bugs, fixes, to answer questions on forum. Also I’m not good in writing tutorials or video, but I’ll make one somewhen.
Can you give me access to your WP admin, so I’ll try to solve your problem?
RattusKeymasterGo to Gmedia Modules and install or update Module you use for gallery.
RattusKeymasterSorry, moved to another hosting and emails about new topics and replies stopped coming. Fixed now.
What about latest version of the plugin?
RattusKeymasteryou can set width for thumbnails bar by adding CSS to Advanced tab:
.gmpm_photo_show .gmpm_carousel .gmpm_photo_carousel { width: 320px; }
This will make thumbnails width larger.November 29, 2015 at 23:22 in reply to: Gmedia gallery- phantom titles not showing when in Google chrome #5768
RattusKeymasterWorks fine for me. What version of Chrome you use? What is your OS?
November 29, 2015 at 23:18 in reply to: Music Player not starting automatically on iphone or ipad #5767
RattusKeymasterUnfortunately, Apple forbid autoplay media on websites on iDevices.
RattusKeymasterIf you can’t see only recently added images then you should clear browser cache and reset cache plugins if you have any.
November 29, 2015 at 23:09 in reply to: Upgraded to v.1.7.21, site crashed. Can't activate the plugin due to error msg #5765
RattusKeymasterSorry, moved to another hosting and emails about new topics and replies stopped coming. Fixed now.
What about latest version of plugin?
November 29, 2015 at 23:07 in reply to: Mosaic Plugin / Background color when lightbox open. Style of light Box signes #5764
RattusKeymasterSorry, moved to another hosting and emails about new topics and replies stopped coming. Fixed now.
Put code below to your theme’s style.css
1. White background for popup:
div.pp_overlay { background-color: #ffffff !important; opacity: 1 !important }
2. Center title between controls:
.pp_description { text-align: center; }
Center image description:
.pp_description_long { text-align: center; }
3. Thumbnail opacity:
.gmediaMosaic a:hover img { opacity: 0.5 !important; }November 29, 2015 at 22:44 in reply to: New version 1.17.30 not working and fatal error code moved to line 2762 #5763
RattusKeymasterCan you give me access to your WP admin, so I’ll try to fix it?
RattusKeymasterCan you post link to your gallery? Screenshot was not uploaded.
RattusKeymaster$skip_if_file_name_already_exists = true; $folder_path = 'PATH_TO_FOLDER_WITH_FILES'; // if you do not want to assign any album or tags $terms = array(); // else /* $terms = array( 'gmedia_album' => 'Album Name', 'gmedia_tag' => 'tags, separated, by comma' ); */ $files = glob($folder_path . '?*.?*', GLOB_NOSORT); if (! empty($files)) { global $gmCore; $allowed_ext = get_allowed_mime_types(); $allowed_ext = array_keys($allowed_ext); $allowed_ext = implode('|', $allowed_ext); $allowed_ext = explode('|', $allowed_ext); if ($skip_if_file_name_already_exists) { $exists = false; } else { $exists = 0; } foreach ($files as $i => $filepath) { $ext = pathinfo($filepath, PATHINFO_EXTENSION); if (! in_array(strtolower($ext), $allowed_ext)) { unset($files[$i]); } } $gmCore->gmedia_import_files($files, $terms, $move = false, $exists); }- AuthorPosts
