Forum Replies Created
- AuthorPosts
RattusKeymasterFixed.
RattusKeymasterFixed.
September 14, 2016 at 14:00 in reply to: Slider Module Galleries are not working with Easy Responsive Tab #7482
RattusKeymasterDifferent modules render the gallery differently. Slider module generate gallery after page fully loaded and then begin load images,
Phantom gallery load thumbnail images with the page and then just apply styles after page fully loaded, so you can see thumbnails, but they are in one column, because of Phantom module thinks that wrapper element has 0 width (display: none == width:0).September 14, 2016 at 13:50 in reply to: Slider Module Galleries are not working with Easy Responsive Tab #7479
RattusKeymasterBecause all tabs except first one are set to display none, Gmedia can’t calculate the size of the element in which the gallery should be rendered.
You can go to Appearence -> Edit -> and add code below to theme’s Stylesheet (style.css) file:
.osc-res-tab .tab-content { position:relative; padding:0 !important; } .osc-res-tab .tab-content > .tab-pane { display:block !important;visibility:hidden;position:absolute;z-index:-100;pointer-events:none;width:100%;padding:10px; } .osc-res-tab .tab-content > .active { display:block;visibility:visible !important;position:relative !important;z-index:initial !important;pointer-events:auto !important; }September 14, 2016 at 12:01 in reply to: Slider Module Galleries are not working with Easy Responsive Tab #7477
RattusKeymasterCan you post link to the page with galleries?
RattusKeymasterThe only way to change lightbox background is add CSS code below to your theme’s style.css. Just go to Appearence -> Editor -> edit your theme’s Stylesheet (style.css) and add to the very end:
div.pp_overlay { background: #ffffff !important; opacity: 0.8 !important; }If your theme have Custom CSS field in theme’s options, then you can add code above to that field instead of editing file.
opacity = 0 – full transparent background;
opacity = 1 – no transparency.
RattusKeymasterYou can check “Prevent Crop” option to respect the ratio of images. Also try set different “prettyPhoto Theme” on Lightbox settings tab.
RattusKeymasterPlayer should full load the track in memory, so it could create waveform and save it to database. It also depends on what the weight of the track in megabytes.
RattusKeymaster@ashwini-mane: No, Gmedia doesn’t support hierarchical taxonomies.
RattusKeymasterThis is conflict with some other plugin, which loads own JS on all admin pages instead of only on own admin pages. Try disable other plugins one by one to find which one bad coded and is in conflict with Gmedia.
RattusKeymasterWaveform for music file can’t be generated during upload.
It is automatically saves waveform after first play in WaveSurfer module and after you reload page you’ll see waveforms for already played music.
Also you can go to Gmedia Library and manually click “Generate & Save WaveFrom” button under each music file.
RattusKeymaster@felixrb86: Send me admin access to your WP Dashboard via Contact page, so I’ll try to solve your problem.
RattusKeymasterUpdate plugin to the latest version (1.8.71). It should fix your problem.
RattusKeymasterThe problem is that your theme uses Magnific Popup JS older version then Gmedia Gallery.
So there are two versions of the same JS plugin loaded on the one page. This could call JS and CSS conflicts.But the bigger problem is that your theme scan page content to find all images and add “hasimg” class to all of them. Then when you click on any image it tries to open it in own Lightbox – the result is error when it tries to open image from Gmedia Gallery.
You could edit “/wp-content/themes/optimizer/assets/js/magnific-popup.js” and add code below to line #9:
jQuery('.gmedia_gallery .hasimg').removeClass('hasimg');I can see that you have link “Click here to view all..”, so to lighten the weight you could limit query result on this page:
If you use galleries then in Build Query set “Limit” field to 6 or 10.
If you use shortcode with albums (categories or tags) then add query parameter to shortcode: query=”limit=10″.
Example:[gm album=3 module=phantom query="limit=10"]Also you could use Phantom Pro module which have pagination and you can limit how many items to show on the page:
https://codeasily.com/portfolio-item/gmedia-phantom-pro/
RattusKeymasterYes, go to Modules page and edit your Preset for PhotoBox module -> add CSS code below to Advanced Settings tab: Custom CSS field:
ul.gmPhotoBox li:nth-child(n+6) { display:none; }This code will hide all thumbs after 5th item in the grid, but there will be all items in the Lightbox.
- AuthorPosts
