Darkseal
Forum Replies Created
-
I just did. Thank you, let me know.
Forum: Themes and Templates
In reply to: [evolve] Header pattern disappearedNot public yet ?? But I can assure you it was working until the upgrade I just made.
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Slide Info box height?Yes, !important would work too.
html body .master-slider .ms-slide-info { min-height: 0px !important; }
Great suggestion, better to avoid messing up with javascript and thus altering the plugin code.
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Slide Info box height?I just found a quick’n’dirty workaround in order to overcome this strange behaviour, which fixed the issue. I’ll explain it here so @jmtripp, @jodilarue and other users will also be able to fix it aswell until @averta will be able to solve the issue for good.
The
min-height
is set by themasterslider.js
file, line 5098, where the js code adjust the min-height for the slide info panel: all sliders withoptions.dir equals to 'h'
(horizontal sliders, i.e. the default) get amin-height
equal to theoption.size
to their slide info boxes. I suppose that all these options are related to the Master Slider pro-version, cause there is no way of setting them by the free version Admin panel: the free version just lives with the default values, which arethis.options.size = 100px
andthis.options.dir = 'h'
as we can see in the js file (lines 5046-5047). Problem is, that default value can be kinda troublesome, so we might want to disable it.In order to do so real quick you can comment this single line (5098), which will fix the issue.
if( this.options.dir === 'v' ){ this.$element.width(this.options.size); }else{ /* 'min-height:100px' bugfix */ // this.$element.css('min-height', this.options.size); }
You can apply the changes directly on the
masterslider.js
source file and then shrink/minify it intomasterslider.min.js
, overwriting the previous one.An even better solution, which I feel like suggesting to @averta, would be to set
this.option.size
default value tonull
and then add anif (this.options.size)
check before line 5098… Or something like that.Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Slide Info box height?I ran into that same issue. Any news on that? It seems to me a bit premature to flag it as [resolved] since that min-height: 100px in the element style cannot be easily overridden.
Forum: Plugins
In reply to: [Complete Google Seo Scan] HTML5 elements being flagged as invalidHello and thanks, did 5 stars.
A couple questions:
– Why the SEO Server scan is saying that Cache is missing? I use WPTotalCache plugin and its Cache Enabled timestamp check seems to be ok. Am I missing something?
– Why the SEO Server scan is saying that WWW Resolve is missing?
If you have a FAQ page explaining how these checks are performed and/or suggesting fixes, please let me know.
Anyway, thanks for the great work.
Forum: Plugins
In reply to: [Complete Google Seo Scan] HTML5 elements being flagged as invalidThank you for the feedback, I’ll eagerly wait ^__^
Forum: Plugins
In reply to: [Polylang] Conflict between Polylang and MailpoetI also have either MailPoet and Polylang latest versions. Both are perfectly working – i made two different NL for the two languages I’m supporting.
The only exception is, I didn’t find a way to translate the MailPoet default messages (Unsubscribe, Read it on the web and so on).
Anyone found a way to do so?