firimar
Forum Replies Created
-
Hi @stepasyuk
Main problem with decimals is calculating max value for range. For example, we have values from 3.4 to 7.8. When plugin calculates min/max values it takes min/max values from meta field and applies “floor” function to them. So as a result we have values from 3 to 7 in range control, and we cannot select 7.8 in it.
We tried to replace floor function with ceil function for max value when value has non-zero fractional part and it worked correctly, but this change will be lost after plugin update.
So would be great either make this adjustment in plugin code or provide some filters so we can adjust min/max values for range using them.
Thanks
Forum: Plugins
In reply to: [WP Magnific Popup] POP UP NOT WORKING AFTER INSTALLATIONhref attribute of each link should point directly to image file, for example href=”http://lesfacons.com/wp-content/uploads/2016/12/CHANEL-NEW-EPHEMERAL-BOUTIQUE-IN-PARIS-1.jpg”
And in admin area need to go to Settings -> WP Magnific Popup -> Galleries Tab and change CSS class for galleries to “tiled-gallery” without quotes and click “Save Changes”
Popup should work after these actions.
- This reply was modified 9 years, 5 months ago by firimar.
Forum: Plugins
In reply to: [WP Magnific Popup] POP UP NOT WORKING AFTER INSTALLATIONHello, what gallery are you speaking about, can you give direct link to it? Or you want those wide images on front page to be clickable?
Forum: Plugins
In reply to: [WP Magnific Popup] Suggestion: Make script depend on jQueryHi
Thanks, fixed that.
Forum: Plugins
In reply to: [WP Magnific Popup] Video Popup not workingHi
I don’t see that plugin scripts are included into your page’s code. Is plugin active now? Also does your theme performs wp_head and fp_footer calls?
Forum: Plugins
In reply to: [WP Magnific Popup] Video on mobile not working as expectedPls try quick fix from that thread, it should work for your case too.
Forum: Plugins
In reply to: [WP Magnific Popup] Make lightbox bigger?Hi
What type of popup are you talking about?
For iframe you can add css rule like this to your css file:
.mfp-iframe-holder .mfp-content { max-width: 1200px; }I’ll add the option in next version, thanks.
Forum: Plugins
In reply to: [WP Magnific Popup] Video on mobile not working as expectedHello
Sorry for late response – was away from internet for a week.
Your issue looks similar as this one https://ww.wp.xz.cn/support/topic/iframe-popup-disabled-at-lower-resolutions?replies=4
And if you want just to open link in a new tab, add attribute
target="blank"to your link.Forum: Plugins
In reply to: [WP Magnific Popup] Iframe popup disabled at lower resolutionsRight now you can do a quick fix by editing the file wp-content/plugins/wp-magnific-popup/js/wpmp.js at line 44 change
disableOn: 700,
to
disableOn: 0,
Forum: Plugins
In reply to: [WP Magnific Popup] Iframe popup disabled at lower resolutionsOh yes, there is such feature in script to disable it when screen width is below some value.
I’ll add an option to set this value in admin area in next version.
Thanks