Forum Replies Created
- AuthorPosts
RattusKeymasterTry edit “/wp-content/themes/spacia-v1.2/css/style.css” file and add to the very end:
html, body { height: auto !important; } body { overflow: auto !important; } .page-loader { width: auto; height: auto; position: fixed; top: 0; left: 0; right: 0; bottom: 0; }
RattusKeymasterNo, Gmedia doesn’t have feature to set video as a background for page.
RattusKeymasterWhich gallery module you use for your galleries?
RattusKeymasterYou can disable comments in WordPress Settings -> Discussion -> “Allow people to post comments on new articles”.
Also if you select items in Gmedia Library and click Batch Edit in Action dropdown you can set Comment Status to Closed.
RattusKeymasterBecause of autoptimize combine all CSS in one file it’s impossible for me to tell which file you can modify to solve this issue.
January 27, 2018 at 00:02 in reply to: How to hide info under Images inside Gallery (Title, Tags, Album, Category) ? #10465
RattusKeymasterAdd code below to the Custom CSS field of Phantom Module:
.gmPhantom_description, .gmPhantom_terms { display: none; }January 26, 2018 at 23:59 in reply to: Uploading images to a Specific Gallery from a Android Phone #10464
RattusKeymasterYou can try modify wordpress admin elements with some other plugin. As for Categories, Tags, Albums I’ll hide them in the future plugin version if user role doesn’t have capabilities to Manage term.
RattusKeymasterThanks @Goos, you are right. There are few gallery modules which allow that and you just need to choose which layout to fit your needs more. See the demo page and note that some of the modules are sold exclusively on CodeCanyon Marketplace.
RattusKeymasterautoptimize and minify plugins could break gallery’s code. I’ve checked your site and gallery works fine for me (iPhone).
January 25, 2018 at 23:04 in reply to: Uploading images to a Specific Gallery from a Android Phone #10450
RattusKeymasterCreate shared Album by setting author to Shared. Create Gallery with this shared album.
Set capabilities for user role in Gmedia Settings to allow them Upload Media and assign available terms (Albums, Tags…).
RattusKeymasterOn the demo page there are 5 separate galleries (shortcodes) with different settings.
RattusKeymasterTo install Gmedia plugin follow instructions:
https://codeasily.com/install-and-activate-gmedia-gallery-plugin/
RattusKeymasterTry add this code to Custom CSS field:
.gmmp-tracklist { overflow: auto !important; max-height: 250px; }Set max-height value to fit your needs.
RattusKeymasterYou can add something like this to your theme’s functions.php:
add_action( 'parse_request', 'gmediacloud_redirect', 8 ); function gmediacloud_redirect( $wp ){ global $gmGallery; $endpoint = ! empty( $gmGallery->options['endpoint'] ) ? $gmGallery->options['endpoint'] : 'gmedia'; if ( isset( $wp->query_vars[ $endpoint ] ) && isset( $wp->query_vars['t'] ) && in_array( $wp->query_vars['t'], array( 'g', 'a', 't', 's', 'k', 'u' ) ) ) { // some conditions here to prevent load the GmediaCloud page // for example redirect to Home Page wp_redirect( home_url() ); exit(); } }This code will redirect all GmediaCloud pages to your home page.
RattusKeymasterGmediaCloud pages are not stored in the database, but generated automatically with unique ID.
There is no way to know the GmediaCloud url until you publish or share it somewhere.- AuthorPosts
