<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>AndrewEnsley.com - Latest Comments</title><link>http://andrewensley.disqus.com/</link><description>Personal website of Andrew Ensley</description><atom:link href="https://andrewensley.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Fri, 15 May 2015 10:56:51 -0000</lastBuildDate><item><title>Re: YouTube Feeder WordPress Plugin</title><link>https://andrewensley.com/projects/youtube-feeder-wordpress-plugin/#comment-2026787048</link><description>&lt;p&gt;Is this dead? Is there any way to fix the device error that my site is now showing, the same that your demo above is showing? Thanks!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Scott Thornton</dc:creator><pubDate>Fri, 15 May 2015 10:56:51 -0000</pubDate></item><item><title>Re: Override alert() With jQuery UI Dialog</title><link>https://andrewensley.com/2012/07/override-alert-with-jquery-ui-dialog/#comment-1582809877</link><description>&lt;p&gt;got it thanks lot !!!!!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">B.M.DOSS Murugadoss</dc:creator><pubDate>Wed, 10 Sep 2014 12:52:02 -0000</pubDate></item><item><title>Re: Override alert() With jQuery UI Dialog</title><link>https://andrewensley.com/2012/07/override-alert-with-jquery-ui-dialog/#comment-1582797384</link><description>&lt;p&gt;Are you sure you have jQuery UI loaded? I don't see it in your code.&lt;/p&gt;&lt;p&gt;&lt;a href="https://developers.google.com/speed/libraries/devguide#jquery-ui" rel="nofollow noopener" target="_blank" title="https://developers.google.com/speed/libraries/devguide#jquery-ui"&gt;https://developers.google.com/speed/libraries/devguide#jquery-ui&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Andrew</dc:creator><pubDate>Wed, 10 Sep 2014 12:43:42 -0000</pubDate></item><item><title>Re: Override alert() With jQuery UI Dialog</title><link>https://andrewensley.com/2012/07/override-alert-with-jquery-ui-dialog/#comment-1453349516</link><description>&lt;p&gt;This is new alert is not stopping process. even before we click on Ok button in Alert box it is executing.&lt;/p&gt;&lt;p&gt;Ex:&lt;/p&gt;&lt;p&gt;$(document).ready(function () {&lt;br&gt;$('#test').click(function () {&lt;br&gt;    testAlter();&lt;br&gt;    });&lt;br&gt;});&lt;br&gt;function testAlter(){&lt;br&gt;alert('This is a &lt;strong&gt;new&lt;/strong&gt; alert!');&lt;br&gt;    $('#test1').text('Hello Mister java script is not stopping'+new Date());&lt;br&gt;}&lt;/p&gt;&lt;p&gt;in this example if user clicks on #test element then it has to show some alert then once user clicks on ok it should update the text #test1 element&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">pavan</dc:creator><pubDate>Wed, 25 Jun 2014 05:22:10 -0000</pubDate></item><item><title>Re: YouTube Feeder WordPress Plugin</title><link>https://andrewensley.com/projects/youtube-feeder-wordpress-plugin/#comment-1363341795</link><description>&lt;p&gt;Hi... I am trying to find best widget for YouTube, and one of three best choices is yours. However, there is two flaws. Is there any chance to fix this?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Marko Relic</dc:creator><pubDate>Wed, 30 Apr 2014 21:45:53 -0000</pubDate></item><item><title>Re: YouTube Feeder WordPress Plugin</title><link>https://andrewensley.com/projects/youtube-feeder-wordpress-plugin/#comment-1363337176</link><description>&lt;p&gt;Hi... I am trying to find best widget for YouTube, and one of three best choices is yours. However, there is two flaws. Any chance to fix this?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guest</dc:creator><pubDate>Wed, 30 Apr 2014 21:41:18 -0000</pubDate></item><item><title>Re: YouTube Feeder WordPress Plugin</title><link>https://andrewensley.com/projects/youtube-feeder-wordpress-plugin/#comment-1361914102</link><description>&lt;p&gt;1st install seems working but then, not sure what happen.. didnt do anything much..&lt;br&gt;i got this issue &amp;gt;&amp;gt; Invalid argument supplied for foreach() in line 475&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">sam</dc:creator><pubDate>Wed, 30 Apr 2014 01:14:18 -0000</pubDate></item><item><title>Re: Override alert() With jQuery UI Dialog</title><link>https://andrewensley.com/2012/07/override-alert-with-jquery-ui-dialog/#comment-1346360588</link><description>&lt;p&gt;Hi Andrew, first of all, thanks a lot, is what i was looking for. Now, i change it to include title definition, hope be helpfull:&lt;br&gt;/* since old alert has no title, if you send title as false, assumes old alert */&lt;/p&gt;&lt;p&gt;window.old_alert = window.alert;&lt;/p&gt;&lt;p&gt;window.alert = function(message, title){&lt;br&gt;    // if title is false, send old_alert&lt;br&gt;    if(title === false)&lt;br&gt;    {&lt;br&gt;        old_alert(message);&lt;br&gt;        return;&lt;br&gt;    }&lt;/p&gt;&lt;p&gt;    // set default value to title if undefined&lt;br&gt;    title = (typeof title === 'undefined') ? "Alert" : title;&lt;/p&gt;&lt;p&gt;    $(document.createElement('div'))&lt;br&gt;        .attr({title: title, 'class': 'alert'})&lt;br&gt;        .html(message)&lt;br&gt;       .dialog({&lt;/p&gt;&lt;p&gt;            buttons: {OK: function(){$(this).dialog('close');}},&lt;/p&gt;&lt;p&gt;            close: function(){$(this).remove();},&lt;/p&gt;&lt;p&gt;            draggable: true,&lt;/p&gt;&lt;p&gt;            modal: true,&lt;/p&gt;&lt;p&gt;            resizable: false,&lt;/p&gt;&lt;p&gt;            width: 'auto'&lt;br&gt;        });&lt;br&gt;};&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pablo Fiumidinisi</dc:creator><pubDate>Sat, 19 Apr 2014 12:26:35 -0000</pubDate></item><item><title>Re: Override alert() With jQuery UI Dialog</title><link>https://andrewensley.com/2012/07/override-alert-with-jquery-ui-dialog/#comment-1327245847</link><description>&lt;p&gt;thanks a lot&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">tauqeer</dc:creator><pubDate>Wed, 09 Apr 2014 16:54:43 -0000</pubDate></item><item><title>Re: YouTube Feeder WordPress Plugin</title><link>https://andrewensley.com/projects/youtube-feeder-wordpress-plugin/#comment-1242387060</link><description>&lt;p&gt;Great plugin! However, I really miss the opportunity to switch between asc/dec ordering. Just at little checkbox right next to the order-by Dropdown would be fantastic :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Brian</dc:creator><pubDate>Thu, 13 Feb 2014 04:10:38 -0000</pubDate></item><item><title>Re: YouTube Feeder WordPress Plugin</title><link>https://andrewensley.com/projects/youtube-feeder-wordpress-plugin/#comment-1236399312</link><description>&lt;p&gt;Only shows 2 vids no matter what limit I put.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">rookhaven</dc:creator><pubDate>Sat, 08 Feb 2014 19:41:47 -0000</pubDate></item><item><title>Re: Override alert() With jQuery UI Dialog</title><link>https://andrewensley.com/2012/07/override-alert-with-jquery-ui-dialog/#comment-1222258408</link><description>&lt;p&gt;Can I change somehow the color? Because it is yellow! thank you&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Brat</dc:creator><pubDate>Wed, 29 Jan 2014 14:52:12 -0000</pubDate></item><item><title>Re: Override alert() With jQuery UI Dialog</title><link>https://andrewensley.com/2012/07/override-alert-with-jquery-ui-dialog/#comment-1208366252</link><description>&lt;p&gt;Can do the same with confirm? it will me awesome!I have tried but it's over me... Lots of thanks if any can help me..&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">augustin</dc:creator><pubDate>Sun, 19 Jan 2014 14:59:57 -0000</pubDate></item><item><title>Re: YouTube Feeder WordPress Plugin</title><link>https://andrewensley.com/projects/youtube-feeder-wordpress-plugin/#comment-1167759700</link><description>&lt;p&gt;Trying to use wp_enqueue_script to allow my wp pages to load prior to execution of jquery.youtubeplaylist.js. What is the handle for this script?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous_MRA1975</dc:creator><pubDate>Tue, 17 Dec 2013 13:44:50 -0000</pubDate></item><item><title>Re: YouTube Feeder WordPress Plugin</title><link>https://andrewensley.com/projects/youtube-feeder-wordpress-plugin/#comment-1138818434</link><description>&lt;p&gt;"Unable to get Youtube feed. Did you supply the correct feed information?"&lt;/p&gt;&lt;p&gt;I am using the search string option. I noticed on your own description page for this plugin, you have the same thing under the search option. Is this on Youtube side? or incompatability with WP. The plugin was working, then this. Help?&lt;/p&gt;&lt;p&gt;Castlemum, &lt;a href="http://aroundthecabin.com/emnews/" rel="nofollow noopener" target="_blank" title="http://aroundthecabin.com/emnews/"&gt;http://aroundthecabin.com/e...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Castle Mum</dc:creator><pubDate>Mon, 25 Nov 2013 18:15:40 -0000</pubDate></item><item><title>Re: YouTube Feeder WordPress Plugin</title><link>https://andrewensley.com/projects/youtube-feeder-wordpress-plugin/#comment-1120934545</link><description>&lt;p&gt;The same problem i have too... :(&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John</dc:creator><pubDate>Wed, 13 Nov 2013 03:51:06 -0000</pubDate></item><item><title>Re: YouTube Feeder WordPress Plugin</title><link>https://andrewensley.com/projects/youtube-feeder-wordpress-plugin/#comment-1113435753</link><description>&lt;p&gt;HI,&lt;/p&gt;&lt;p&gt;Great Plugin. Does exactly what my client was looking for :-) One small issue we are experiencing is that the plugin is displaying the video from about 3 days go instead of the most recent one. We are only showing 1 video.. I also tried to clear the cache, set the cache to 1 minute and installed on another site but the same results appear. The videos are coming from here :  &lt;a href="https://www.youtube.com/user/TFO247/videos" rel="nofollow noopener" target="_blank" title="https://www.youtube.com/user/TFO247/videos"&gt;https://www.youtube.com/use...&lt;/a&gt;  Not sure what to try next.&lt;/p&gt;&lt;p&gt;Thanks in advance for any assistance.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Craig</dc:creator><pubDate>Thu, 07 Nov 2013 22:09:57 -0000</pubDate></item><item><title>Re: C# Detect Windows OS Version – Part 2 (WMI)</title><link>https://andrewensley.com/2009/10/c-detect-windows-os-version-%e2%80%93-part-2-wmi/#comment-1096049661</link><description>&lt;p&gt;there is any other method for determining the version of windows 8 and windows 8.1 other than windows WMI(ManagementObjectSearcher) and Environment.OSVersion???&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nikita jain</dc:creator><pubDate>Fri, 25 Oct 2013 02:17:11 -0000</pubDate></item><item><title>Re: YouTube Feeder WordPress Plugin</title><link>https://andrewensley.com/projects/youtube-feeder-wordpress-plugin/#comment-1083147572</link><description>&lt;p&gt;Hello,&lt;br&gt;i installed the youtube feeder on my site.&lt;br&gt;In the options, i choosed the "User uploads" But some videos (seems random) are not displayed on my site. how could that be?&lt;br&gt;for sure i can say, there are no contents in this video for wich arent the copyrights in my hands...&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Markus Zurbrüggen</dc:creator><pubDate>Tue, 15 Oct 2013 10:47:44 -0000</pubDate></item><item><title>Re: YouTube Feeder WordPress Plugin</title><link>https://andrewensley.com/projects/youtube-feeder-wordpress-plugin/#comment-1082121344</link><description>&lt;p&gt;I get an error with WordPress 3.6.1 Multisite.&lt;/p&gt;&lt;p&gt;Notice: has_cap was called with an argument that is deprecated since version 2.0! Usage of user levels by plugins and themes is deprecated. Use roles and capabilities instead. in /xxxxxxxx/wp-includes/functions.php on line 2998&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Downhill</dc:creator><pubDate>Mon, 14 Oct 2013 13:39:18 -0000</pubDate></item><item><title>Re: YouTube Feeder WordPress Plugin</title><link>https://andrewensley.com/projects/youtube-feeder-wordpress-plugin/#comment-1066228342</link><description>&lt;p&gt;Hi, this plugin with user id or without  user id or playlist post the follow error: "Unable to get Youtube feed. Did you supply the correct feed information?"&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Niko</dc:creator><pubDate>Tue, 01 Oct 2013 13:44:30 -0000</pubDate></item><item><title>Re: YouTube Feeder WordPress Plugin</title><link>https://andrewensley.com/projects/youtube-feeder-wordpress-plugin/#comment-1028256287</link><description>&lt;p&gt;Thanks for catching that. I'll looking into using WP's proxy settings and see what I can do.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Andrew</dc:creator><pubDate>Tue, 03 Sep 2013 10:54:16 -0000</pubDate></item><item><title>Re: YouTube Feeder WordPress Plugin</title><link>https://andrewensley.com/projects/youtube-feeder-wordpress-plugin/#comment-1028243160</link><description>&lt;p&gt;We have a dev/test Wordpress server inside our firewall with the plugin on it and the pageload slows to around 90 seconds with an error from the Youtube plugin.  We have set the wp-config.php with proxy details and Wordpress itself now picks this up and updates fine, but the Youtube plugin doesn't seem to pick up these settings.  Is there any way to have the plugin work through a proxy for a server behind a firewall?  It is a good plugin but we can't keep pushing stuff to production that we can't test properly on our dev/test servers.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Laurie Calverley</dc:creator><pubDate>Tue, 03 Sep 2013 10:47:54 -0000</pubDate></item><item><title>Re: Override alert() With jQuery UI Dialog</title><link>https://andrewensley.com/2012/07/override-alert-with-jquery-ui-dialog/#comment-1028168351</link><description>&lt;p&gt;You also need to include &lt;a href="http://jqueryui.com/" rel="nofollow noopener" target="_blank" title="http://jqueryui.com/"&gt;jQuery UI&lt;/a&gt;. There are dozens of online tutorials on how to get up and running with it. Just make sure to include it after jQuery.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Andrew</dc:creator><pubDate>Tue, 03 Sep 2013 10:01:27 -0000</pubDate></item><item><title>Re: Override alert() With jQuery UI Dialog</title><link>https://andrewensley.com/2012/07/override-alert-with-jquery-ui-dialog/#comment-1026249882</link><description>&lt;p&gt;Can't get it work!&lt;br&gt;What header script tags do I need, just jquery.js or something else as well?&lt;br&gt;Thanks&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">cane</dc:creator><pubDate>Mon, 02 Sep 2013 07:50:41 -0000</pubDate></item></channel></rss>