Forum Replies Created
- AuthorPosts
RattusKeymasterHere is the Custom CSS code which will prevent click on the title:
.ws-soundTitle__titleWrapper { pointer-events: none; }
RattusKeymasterThe problem could be in W3TC plugin. Try disable minify JS, CSS in it because it modifies gallery’s scripts and strip stylesheets.
RattusKeymasterI need a link to the gallery, so I can see the problem and try to find the solution.
RattusKeymasterThis reply has been marked as private.
RattusKeymasterWordPress announced removing adobe flash based plugins from WordPress v4.9.
So, we decide to remove all flash based gallery modules (like Minima and Optima) from Gmedia plugin. Anyway you can still download them here: https://codeasily.com/portfolio/gmedia-gallery-modules/ (scroll to the very bottom) and install via Gmeida Modules page (Install Module ZIP form)
Adobe Flash is disabled by default in all major browsers. Your visitor doesn’t see flash skin, but only ugly alternative gallery for browsers without flash support.
Gallery modules which can show albums (and categories) as a thumbnails called: AlbumsStripes, AlbumsSwitcher, AlbumsGrid, AlbumsView, PhotoCluster. Go to Demo to see how they works: https://codeasily.com/portfolio/gmedia-gallery-modules/
Some of the modules sells exclusively at CodeCanyon market: https://codecanyon.net/user/gallerycreator/portfolio
October 26, 2017 at 23:07 in reply to: My images have all been replaced with Green blank images with a file icon #10207
RattusKeymaster@vanessakim: Could be corrupted database table records or so. Try reupload missed files.
October 26, 2017 at 20:50 in reply to: Nothing happens after clicking on Create & Save WaveForm #10206
RattusKeymaster@amirbios93: It’s could be plugins conflict. I need access to your WP Dashboard to say more. Use contact form for credentials
RattusKeymasterMinima and other adobe flash based skins are not supported anymore. Adobe Flash technology is dead. Use JavaScript skins instead. See Demo page.
October 20, 2017 at 16:24 in reply to: Fullscreen photos doesn't works when "show info button" checked #10148
RattusKeymasterThank you for your kind words. I’ll be very appreciate if you also leave a review at wordpress.org: https://wordpress.org/plugins/grand-media/#reviews
Thanks again.
October 20, 2017 at 14:05 in reply to: Fullscreen photos doesn't works when "show info button" checked #10146
RattusKeymasterNew fixed version of the module is on review and will be available soon at CodeCanyon Marketplace.
RattusKeymasterI’ve rewrote some code in your functions.php, because it was completely wrong and now you’ll get the right direction to complete it:
function gmedia_albums_func() { global $wpdb, $gmDB; $categories = $gmDB->get_terms('gmedia_category'); // $appTable = $wpdb->prefix . "gmedia_term"; // $query = $wpdb->prepare("SELECT * FROM $appTable WHERE taxonomy = 'gmedia_category'"); // $categories = $wpdb->get_results($query); foreach ( $categories as $category ) { echo '<div class="col-xs-12 col-md-12 col-sm-12 categories_title wpb_content_element "><h4> '.$category->name.'</h4></div>'; $albums_with_category_meta = $wpdb->get_col($wpdb->prepare("SELECT gmedia_term_id FROM {$wpdb->prefix}gmedia_term_meta WHERE meta_key = 'category' AND meta_value = %d", $category->term_id)); if(!empty($albums_with_category_meta)){ $albums_cat = $gmDB->get_terms('gmedia_album', array( 'include' => $albums_with_category_meta )); } else { $albums_cat = array(); } // $albums = $wpdb->prepare("SELECT * FROM $appTable WHERE status = '".$category->term_id."'"); // $albums_cat = $wpdb->get_results($albums); foreach($albums_cat as $application){ echo '<div class="col-xs-12 col-md-3 col-sm-4 album_title wpb_content_element '.$category->name.'"> <a href="gallery/?id='. $application->term_id .'&category_name='.$category->name.'"><h5>'. $application->name . "</h5></a></div>"; } } ... ... ...
RattusKeymasterCan your hosting provide some proves, that Gmedia cause any errors? The error_log files should record all errors on the server, but I can see nothing related to Gmedia.
RattusKeymasterHave no idea, you are the first with such problem. The status in database was “43” instead of “publish”.
What do you mean “memory errors”?
RattusKeymasterFixed. Updated album’s status, because there was wrong value in database.
RattusKeymasterlogin / password you sent not working for me
- AuthorPosts
