katart17
Forum Replies Created
-
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Hide Slider Info box when Empty@andreabianchini I solved it by surrounding all the Slide Info text in a
<blockquote>
and styling that element and not thems-info
element.I hope this helps.
This is still not working for me. I’ve tried an
alert('Hello World')
function on both On Slider Init and On Slide Change Start and it only fires on the On Slide Change Start and NOT the On Slider Init callback.Any ideas why?
@cellobrutos and @brook
Should the Post ID = 0? I’m using v3.11 on 4.2.3 and I’m using the Theme Page Template and the output looks similar to yours where the Post ID = 0. I don’t think this is correct.
I can’t use the Single Event Conditional Tags if the ID is reading 0.
Any ideas why?
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Hide Slider Info box when EmptyThanks for the response. I figured out a solution with CSS.
Did you ever get a chance to look at the ‘on_slider_init’ issue? I posted here: https://www.ads-software.com/support/topic/on-slider-init-function-not-triggering?replies=3
Thanks again
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] 2.5.0 Release Notes?Thanks for the response. I was wondering if there was a fix to the ‘On Slider init’ triggering bug. I noticed it wasn’t triggering in my current version.
Forum: Plugins
In reply to: [Zero Spam for WordPress] Gravity Forms entry sent to spam in errorI don’t think the client being blocked was a GF issue, but I did have a client show up in the Blocked IP list and I don’t know why.
Forum: Plugins
In reply to: [Zero Spam for WordPress] Gravity Forms entry sent to spam in errorI am having the same problem.
I would like to know what the criteria might be that count legitimate entries as SPAM.
My clients were being locked out of their own websites.
I’m having the same problem. Did you ever find a solution for this?
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Play/Pause ToggleI want to use the following function to create a Play/Pause toggle function:
function(event) { var api = event.target; var autoplay = true; var mySlider; if(typeof api !== 'undefined') { mySlider = api; } else { return; } var isPlaying = autoplay, playPause = jQuery('<div class="prefix-play-pause" />'), play = jQuery('<div class="prefix-play" />').appendTo(playPause), pause = jQuery('<div class="prefix-pause" />').appendTo(playPause); if(!autoplay) { pause.hide(); play.show(); } playPause.on('click', function() { if(isPlaying) { pause.hide(); play.show(); mySlider.pause(); } else { play.hide(); pause.show(); mySlider.resume(); } isPlaying = !isPlaying; }).appendTo(jQuery('.ms-view')); }
I’m using this with the
on slider init
callback but it doesn’t seem to be loading. This function worked with theon slide change start
callback, but it was repeating the function after every slide transition.How can I get this working with the
on slider init
callback?Forum: Plugins
In reply to: [ShiftNav - Responsive Mobile Menu] ShiftNav always visible in IE8I don’t see reference to IE in your CSS code?
Is it possible for you to show the site you’re working on?
Forum: Plugins
In reply to: [ShiftNav - Responsive Mobile Menu] ShiftNav always visible in IE8@lavi_j Does your HTML tag have the
lt-ie9
class attached to it? It is a good idea to use conditional IE statements for your HTML tag. Here is a basic example for your WordPress header.php file:<!--[if IE 8]><html class="no-js lt-ie9" <?php language_attributes(); ?>> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]-->
I hope this helps.
Forum: Plugins
In reply to: [IW Magnific Popup] Hide Title – Don't use Title FallbackThat makes sense. Thanks
@dwinden Thanks for your help
Thanks for the response and I’m sorry for my delayed response. I don’t see any JS errors in the console and the Show Intro modal works fine. After seeing your previous posts, maybe this is what I should expect to see. Here are my screenshots:
404 Error: https://cl.ly/image/312k2P2F2C2q
Host or User Lockout: https://cl.ly/image/0s0u1y3R0g0pDo these screenshots help?
Forum: Plugins
In reply to: [ShiftNav - Responsive Mobile Menu] ShiftNav always visible in IE8Chris, that helped. Sometimes I over complicate things and it usually is an easy solution. Thanks for the help!