Version Description
Download this release
Release Info
Developer | embedplus |
Plugin | YouTube |
Version | 8.5 |
Comparing to | |
See all releases |
Code changes from version 8.4 to 8.5
- images/mobilecompat.png +0 -0
- images/tonido.db +0 -0
- readme.txt +6 -1
- youtube.php +39 -40
images/mobilecompat.png
ADDED
Binary file
|
images/tonido.db
DELETED
Binary file
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: YouTube Embed
|
|
4 |
Tags: at a glance, channel, annotations, music, music video, songs, song, lyrics, responsive, short code, shortcode, youtube shortcode, health, diagnostic, youtube status, seo, video seo, rich snippets, reddit, google+, google plus, comments, search, widget, sidebar, responsive, fluid, iphone, mobile, android, tablet, ipad, youtube playlist, playlists, playlist, wmode, hd, autohd, auto hd, video analytics, analytics, google, google analytics, view count, vlog, vlogging, web videos, youtube analytics, youtube, youtube plugin, youtube shortcode, embed youtube, plugin, video, video shortcode, embed videos, youtube player, shortcode, simple, simple youtube, smart youtube playback, youtube embed, wordpress youtube embed, embedding youtube, youtube embedding, video plugin, https, ssl, secure, no-cookie, cookie, html5, youtube html5
|
5 |
Requires at least: 2.9
|
6 |
Tested up to: 3.9.1
|
7 |
-
Stable tag: 8.
|
8 |
License: GPLv3 or later
|
9 |
|
10 |
YouTube embed plugin with basic features and convenient defaults. Upgrade now to add tracking, instant video SEO tags, and much more!
|
@@ -13,6 +13,7 @@ YouTube embed plugin with basic features and convenient defaults. Upgrade now to
|
|
13 |
|
14 |
**500,000+ downloads! Here are some recently added features:**
|
15 |
|
|
|
16 |
* Embed an entire channel as a playlist
|
17 |
* "At a Glance" direct access to your YouTube posts/pages
|
18 |
* Visual YouTube video searching and viewing
|
@@ -20,6 +21,7 @@ YouTube embed plugin with basic features and convenient defaults. Upgrade now to
|
|
20 |
* Review the latest web discussions about videos you want to embed before embedding
|
21 |
* Shortcode support for embedding multiple videos on one line
|
22 |
* Playlist support
|
|
|
23 |
* (PRO) One-click Video SEO tags
|
24 |
* (PRO) Analytics and deleted video alerts work with past YouTube videos that you embedded with many other YouTube plugins
|
25 |
* (PRO) Alerts when visitors from different countries are blocked from viewing your embeds
|
@@ -123,6 +125,9 @@ You can also start and end each individual video at particular times. Like the a
|
|
123 |
|
124 |
== Changelog ==
|
125 |
|
|
|
|
|
|
|
126 |
= YouTube Embed 8.4 =
|
127 |
This update features improved responsive theme support for both Free and PRO versions. It also adds refined schema tag support to the Pro SEO feature.
|
128 |
|
4 |
Tags: at a glance, channel, annotations, music, music video, songs, song, lyrics, responsive, short code, shortcode, youtube shortcode, health, diagnostic, youtube status, seo, video seo, rich snippets, reddit, google+, google plus, comments, search, widget, sidebar, responsive, fluid, iphone, mobile, android, tablet, ipad, youtube playlist, playlists, playlist, wmode, hd, autohd, auto hd, video analytics, analytics, google, google analytics, view count, vlog, vlogging, web videos, youtube analytics, youtube, youtube plugin, youtube shortcode, embed youtube, plugin, video, video shortcode, embed videos, youtube player, shortcode, simple, simple youtube, smart youtube playback, youtube embed, wordpress youtube embed, embedding youtube, youtube embedding, video plugin, https, ssl, secure, no-cookie, cookie, html5, youtube html5
|
5 |
Requires at least: 2.9
|
6 |
Tested up to: 3.9.1
|
7 |
+
Stable tag: 8.5
|
8 |
License: GPLv3 or later
|
9 |
|
10 |
YouTube embed plugin with basic features and convenient defaults. Upgrade now to add tracking, instant video SEO tags, and much more!
|
13 |
|
14 |
**500,000+ downloads! Here are some recently added features:**
|
15 |
|
16 |
+
* iOS playback preferences
|
17 |
* Embed an entire channel as a playlist
|
18 |
* "At a Glance" direct access to your YouTube posts/pages
|
19 |
* Visual YouTube video searching and viewing
|
21 |
* Review the latest web discussions about videos you want to embed before embedding
|
22 |
* Shortcode support for embedding multiple videos on one line
|
23 |
* Playlist support
|
24 |
+
* (PRO) See if your embeds have restrictions that block your site's mobile visitors from viewing
|
25 |
* (PRO) One-click Video SEO tags
|
26 |
* (PRO) Analytics and deleted video alerts work with past YouTube videos that you embedded with many other YouTube plugins
|
27 |
* (PRO) Alerts when visitors from different countries are blocked from viewing your embeds
|
125 |
|
126 |
== Changelog ==
|
127 |
|
128 |
+
= YouTube Embed 8.5 =
|
129 |
+
This update features a new iOS related option for both Free and PRO users. PRO users additionally have the new mobile compatibility checker.
|
130 |
+
|
131 |
= YouTube Embed 8.4 =
|
132 |
This update features improved responsive theme support for both Free and PRO versions. It also adds refined schema tag support to the Pro SEO feature.
|
133 |
|
youtube.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: YouTube
|
4 |
Plugin URI: http://www.embedplus.com/dashboard/pro-easy-video-analytics.aspx
|
5 |
Description: YouTube embed plugin with basic features and convenient defaults. Upgrade now to add tracking, instant video SEO tags, and much more!
|
6 |
-
Version: 8.
|
7 |
Author: EmbedPlus Team
|
8 |
Author URI: http://www.embedplus.com
|
9 |
*/
|
@@ -32,7 +32,7 @@
|
|
32 |
class YouTubePrefs
|
33 |
{
|
34 |
|
35 |
-
public static $version = '8.
|
36 |
public static $opt_version = 'version';
|
37 |
public static $optembedwidth = null;
|
38 |
public static $optembedheight = null;
|
@@ -47,6 +47,7 @@ class YouTubePrefs
|
|
47 |
public static $opt_modestbranding = 'modestbranding';
|
48 |
public static $opt_rel = 'rel';
|
49 |
public static $opt_showinfo = 'showinfo';
|
|
|
50 |
public static $opt_autohide = 'autohide';
|
51 |
public static $opt_controls = 'controls';
|
52 |
public static $opt_theme = 'theme';
|
@@ -121,6 +122,7 @@ class YouTubePrefs
|
|
121 |
self::$opt_modestbranding,
|
122 |
self::$opt_rel,
|
123 |
self::$opt_showinfo,
|
|
|
124 |
self::$opt_autohide,
|
125 |
self::$opt_controls,
|
126 |
self::$opt_html5,
|
@@ -562,6 +564,7 @@ class YouTubePrefs
|
|
562 |
$_defaultdims = 0;
|
563 |
$_defaultwidth = '';
|
564 |
$_defaultheight = '';
|
|
|
565 |
|
566 |
$arroptions = get_option(self::$opt_alloptions);
|
567 |
|
@@ -577,6 +580,7 @@ class YouTubePrefs
|
|
577 |
$_modestbranding = self::tryget($arroptions, self::$opt_modestbranding, 0);
|
578 |
$_rel = self::tryget($arroptions, self::$opt_rel, 1);
|
579 |
$_showinfo = self::tryget($arroptions, self::$opt_showinfo, 1);
|
|
|
580 |
$_html5 = self::tryget($arroptions, self::$opt_html5, 0);
|
581 |
$_theme = self::tryget($arroptions, self::$opt_theme, 'dark');
|
582 |
$_color = self::tryget($arroptions, self::$opt_color, 'red');
|
@@ -610,6 +614,7 @@ class YouTubePrefs
|
|
610 |
self::$opt_modestbranding => $_modestbranding,
|
611 |
self::$opt_rel => $_rel,
|
612 |
self::$opt_showinfo => $_showinfo,
|
|
|
613 |
self::$opt_autohide => $_autohide,
|
614 |
self::$opt_html5 => $_html5,
|
615 |
self::$opt_theme => $_theme,
|
@@ -1170,10 +1175,10 @@ class YouTubePrefs
|
|
1170 |
|
1171 |
$new_pointer_content = '<h3>' . __('New Update') . '</h3>'; // ooopointer
|
1172 |
|
1173 |
-
$new_pointer_content .= '<p>' . __('This update features
|
1174 |
if (!(self::$alloptions[self::$opt_pro] && strlen(trim(self::$alloptions[self::$opt_pro])) > 0))
|
1175 |
{
|
1176 |
-
$new_pointer_content .= __('
|
1177 |
}
|
1178 |
else
|
1179 |
{
|
@@ -1235,6 +1240,7 @@ class YouTubePrefs
|
|
1235 |
$new_options[self::$opt_modestbranding] = self::postchecked(self::$opt_modestbranding) ? 1 : 0;
|
1236 |
$new_options[self::$opt_rel] = self::postchecked(self::$opt_rel) ? 1 : 0;
|
1237 |
$new_options[self::$opt_showinfo] = self::postchecked(self::$opt_showinfo) ? 1 : 0;
|
|
|
1238 |
$new_options[self::$opt_controls] = self::postchecked(self::$opt_controls) ? 2 : 0;
|
1239 |
$new_options[self::$opt_autohide] = self::postchecked(self::$opt_autohide) ? 1 : 2;
|
1240 |
$new_options[self::$opt_html5] = self::postchecked(self::$opt_html5) ? 1 : 0;
|
@@ -1400,17 +1406,19 @@ class YouTubePrefs
|
|
1400 |
The ability to read the latest Internet discussions about the videos you want to embed is now free to all users.
|
1401 |
</p>
|
1402 |
<p>
|
1403 |
-
<b class="orange">Even more options are available to PRO users!</b> Simply click the <span class="button-primary cuz">► Customize</span> button on the wizard to further personalize your embeds without having to enter special codes yourself.
|
1404 |
<br>
|
1405 |
<br>
|
1406 |
-
|
|
|
|
|
1407 |
</p>
|
1408 |
<div class="jumper" id="jumpdefaults"></div>
|
1409 |
<h3 class="sect">
|
1410 |
<?php _e("Default YouTube Options") ?> <a href="#top" class="totop">▲ top</a>
|
1411 |
</h3>
|
1412 |
<p>
|
1413 |
-
<?php _e("One of the benefits of using this plugin is that you can set
|
1414 |
</p>
|
1415 |
<p class="submit">
|
1416 |
<input type="submit" onclick="return savevalidate();" name="Submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
@@ -1496,6 +1504,10 @@ class YouTubePrefs
|
|
1496 |
<input name="<?php echo self::$opt_autohide; ?>" id="<?php echo self::$opt_autohide; ?>" <?php checked($all[self::$opt_autohide], 1); ?> type="checkbox" class="checkbox">
|
1497 |
<label for="<?php echo self::$opt_autohide; ?>"><?php _e('<b class="chktitle">Autohide Controls:</b> Slide away the control bar after the video starts playing. It will automatically slide back in again if you mouse over the video.') ?></label>
|
1498 |
</p>
|
|
|
|
|
|
|
|
|
1499 |
<p>
|
1500 |
<input name="<?php echo self::$opt_oldspacing; ?>" id="<?php echo self::$opt_oldspacing; ?>" <?php checked($all[self::$opt_oldspacing], 1); ?> type="checkbox" class="checkbox">
|
1501 |
<label for="<?php echo self::$opt_oldspacing; ?>">
|
@@ -1512,13 +1524,13 @@ class YouTubePrefs
|
|
1512 |
<p>
|
1513 |
<input name="<?php echo self::$opt_ssl; ?>" id="<?php echo self::$opt_ssl; ?>" <?php checked($all[self::$opt_ssl], 1); ?> type="checkbox" class="checkbox">
|
1514 |
<label for="<?php echo self::$opt_ssl; ?>">
|
1515 |
-
<b>(PRO)</b> <b class="chktitle">HTTPS/SSL Player:</b> Use the secure YouTube player for all of your
|
1516 |
</label>
|
1517 |
</p>
|
1518 |
<p>
|
1519 |
<input name="<?php echo self::$opt_html5; ?>" id="<?php echo self::$opt_html5; ?>" <?php checked($all[self::$opt_html5], 1); ?> type="checkbox" class="checkbox">
|
1520 |
<label for="<?php echo self::$opt_html5; ?>">
|
1521 |
-
<b>(PRO)</b> <b class="chktitle">HTML5 First:</b> Speed up your pages containing YouTube videos by using YouTube's HTML5 player instead of the Flash player when available. It's been noted that using the HTML5 player offers visibly lower page load times than Flash. Our own internal tests along with data from some beta testers suggest the same thing. In fact, some experiments show that pages (with multiple embeds) can have over four times less size with HTML5 than Flash.
|
1522 |
</label>
|
1523 |
</p>
|
1524 |
<p>
|
@@ -1537,13 +1549,13 @@ class YouTubePrefs
|
|
1537 |
<p>
|
1538 |
<input disabled type="checkbox" class="checkbox">
|
1539 |
<label>
|
1540 |
-
<b class="chktitle">HTTPS/SSL Player:</b> <span class="pronon">(PRO Users)</span> Use the secure YouTube player for all of your
|
1541 |
</label>
|
1542 |
</p>
|
1543 |
<p>
|
1544 |
<input disabled type="checkbox" class="checkbox">
|
1545 |
<label>
|
1546 |
-
<b class="chktitle">HTML5 First:</b> <span class="pronon">(PRO Users)</span> Speed up your pages containing YouTube videos by using YouTube's HTML5 player instead of the Flash player when available. It's been noted that using the HTML5 player offers visibly lower page load times than Flash. Our own internal tests along with data from some beta testers suggest the same thing. <b>In fact, some experiments show that pages (with multiple embeds) can have over four times less size with HTML5 than Flash.</b>
|
1547 |
</label>
|
1548 |
</p>
|
1549 |
<p>
|
@@ -1564,23 +1576,6 @@ class YouTubePrefs
|
|
1564 |
|
1565 |
<hr>
|
1566 |
|
1567 |
-
<?php
|
1568 |
-
if ($all[self::$opt_pro] && strlen(trim($all[self::$opt_pro])) > 0)
|
1569 |
-
{
|
1570 |
-
?>
|
1571 |
-
<p>
|
1572 |
-
<b>(PRO)</b> We plan to promote this plugin right from our <a target="_blank" href="<?php echo self::$epbase; ?>">embedplus.com</a> homepage by listing example sites that use it. <a id="showcase-validate" class="button-primary" target="_blank">Click this button</a> to automatically include your site for evaluation. It will give you a chance to promote your quality site.
|
1573 |
-
</p>
|
1574 |
-
<?php
|
1575 |
-
}
|
1576 |
-
else
|
1577 |
-
{
|
1578 |
-
?>
|
1579 |
-
|
1580 |
-
<p>
|
1581 |
-
<span class="pronon">(PRO Users)</span> We plan to promote this plugin right from our <a target="_blank" href="<?php echo self::$epbase; ?>">embedplus.com</a> homepage by listing example sites that use it. <a class="button-primary" disabled>Click this button</a> to automatically include your site for evaluation. It will give you a chance to promote your quality site.
|
1582 |
-
</p>
|
1583 |
-
<?php } ?>
|
1584 |
</div>
|
1585 |
<div class="jumper" id="jumpoverride"></div>
|
1586 |
|
@@ -1605,6 +1600,7 @@ class YouTubePrefs
|
|
1605 |
_e("<li><strong>vq</strong> - Set this to 'hd720' or 'hd1080' to force the video to have HD quality. Leave blank to let YouTube decide. <em>Example: http://www.youtube.com/watch?v=quwebVjAEJA<strong>&vq=hd720</strong></em> </li>");
|
1606 |
_e("<li><strong>controls</strong> - Set this to 0 to completely hide the video controls (or 2 to show it). <em>Example: http://www.youtube.com/watch?v=quwebVjAEJA<strong>&controls=0</strong></em> </li>");
|
1607 |
_e("<li><strong>autohide</strong> - Set this to 1 to slide away the control bar after the video starts playing. It will automatically slide back in again if you mouse over the video. (Set to 2 to always show it). <em>Example: http://www.youtube.com/watch?v=quwebVjAEJA<strong>&autohide=1</strong></em> </li>");
|
|
|
1608 |
_e('</ul>');
|
1609 |
|
1610 |
_e("<p>You can also start and end each individual video at particular times. Like the above, each option should begin with '&'</p>");
|
@@ -1642,7 +1638,7 @@ class YouTubePrefs
|
|
1642 |
</li>
|
1643 |
<li>
|
1644 |
<img src="<?php echo plugins_url('images/vseo.png', __FILE__) ?>">
|
1645 |
-
One-Click Video SEO Tags (
|
1646 |
</li>
|
1647 |
<li>
|
1648 |
<img src="<?php echo plugins_url('images/html5.png', __FILE__) ?>">
|
@@ -1655,11 +1651,12 @@ class YouTubePrefs
|
|
1655 |
<li>
|
1656 |
<img src="<?php echo plugins_url('images/globe.png', __FILE__) ?>">
|
1657 |
Alerts when visitors from different countries are blocked from viewing your embeds <sup class="orange bold">NEW</sup>
|
1658 |
-
</li>
|
1659 |
<li>
|
1660 |
-
<img src="<?php echo plugins_url('images/
|
1661 |
-
|
1662 |
-
</li>
|
|
|
1663 |
|
1664 |
</ul>
|
1665 |
</div>
|
@@ -1673,21 +1670,23 @@ class YouTubePrefs
|
|
1673 |
<img src="<?php echo plugins_url('images/bulletgraph45.png', __FILE__) ?>">
|
1674 |
User-friendly video analytics dashboard
|
1675 |
</li>
|
|
|
1676 |
<li>
|
1677 |
-
<img src="<?php echo plugins_url('images/
|
1678 |
-
|
1679 |
</li>
|
1680 |
<li>
|
1681 |
<img src="<?php echo plugins_url('images/iconythealth.png', __FILE__) ?>">
|
1682 |
Instant YouTube embed diagnostic reports
|
1683 |
</li>
|
1684 |
<li>
|
1685 |
-
<img src="<?php echo plugins_url('images/
|
1686 |
-
|
1687 |
</li>
|
|
|
1688 |
<li>
|
1689 |
-
<img src="<?php echo plugins_url('images/
|
1690 |
-
|
1691 |
</li>
|
1692 |
<!-- <li>
|
1693 |
<img src="<?php echo plugins_url('images/questionsale.png', __FILE__) ?>">
|
@@ -1752,7 +1751,7 @@ class YouTubePrefs
|
|
1752 |
Priority Support <span class="pronon">(<a href="<?php echo self::$epbase ?>/dashboard/pro-easy-video-analytics.aspx" target="_blank">PRO Users »</a>)</span><a href="#top" class="totop">▲ top</a>
|
1753 |
</h3>
|
1754 |
<p>
|
1755 |
-
<strong>PRO users:</strong> Below, We've enabled the ability to have priority support with our team. Use this to get one-on-one help with any issues you might have or to send us suggestions for future features. We typically respond within minutes during normal work hours.
|
1756 |
</p>
|
1757 |
|
1758 |
|
3 |
Plugin Name: YouTube
|
4 |
Plugin URI: http://www.embedplus.com/dashboard/pro-easy-video-analytics.aspx
|
5 |
Description: YouTube embed plugin with basic features and convenient defaults. Upgrade now to add tracking, instant video SEO tags, and much more!
|
6 |
+
Version: 8.5
|
7 |
Author: EmbedPlus Team
|
8 |
Author URI: http://www.embedplus.com
|
9 |
*/
|
32 |
class YouTubePrefs
|
33 |
{
|
34 |
|
35 |
+
public static $version = '8.5';
|
36 |
public static $opt_version = 'version';
|
37 |
public static $optembedwidth = null;
|
38 |
public static $optembedheight = null;
|
47 |
public static $opt_modestbranding = 'modestbranding';
|
48 |
public static $opt_rel = 'rel';
|
49 |
public static $opt_showinfo = 'showinfo';
|
50 |
+
public static $opt_playsinline = 'playsinline';
|
51 |
public static $opt_autohide = 'autohide';
|
52 |
public static $opt_controls = 'controls';
|
53 |
public static $opt_theme = 'theme';
|
122 |
self::$opt_modestbranding,
|
123 |
self::$opt_rel,
|
124 |
self::$opt_showinfo,
|
125 |
+
self::$opt_playsinline,
|
126 |
self::$opt_autohide,
|
127 |
self::$opt_controls,
|
128 |
self::$opt_html5,
|
564 |
$_defaultdims = 0;
|
565 |
$_defaultwidth = '';
|
566 |
$_defaultheight = '';
|
567 |
+
$_playsinline = 0;
|
568 |
|
569 |
$arroptions = get_option(self::$opt_alloptions);
|
570 |
|
580 |
$_modestbranding = self::tryget($arroptions, self::$opt_modestbranding, 0);
|
581 |
$_rel = self::tryget($arroptions, self::$opt_rel, 1);
|
582 |
$_showinfo = self::tryget($arroptions, self::$opt_showinfo, 1);
|
583 |
+
$_playsinline = self::tryget($arroptions, self::$opt_playsinline, 0);
|
584 |
$_html5 = self::tryget($arroptions, self::$opt_html5, 0);
|
585 |
$_theme = self::tryget($arroptions, self::$opt_theme, 'dark');
|
586 |
$_color = self::tryget($arroptions, self::$opt_color, 'red');
|
614 |
self::$opt_modestbranding => $_modestbranding,
|
615 |
self::$opt_rel => $_rel,
|
616 |
self::$opt_showinfo => $_showinfo,
|
617 |
+
self::$opt_playsinline => $_playsinline,
|
618 |
self::$opt_autohide => $_autohide,
|
619 |
self::$opt_html5 => $_html5,
|
620 |
self::$opt_theme => $_theme,
|
1175 |
|
1176 |
$new_pointer_content = '<h3>' . __('New Update') . '</h3>'; // ooopointer
|
1177 |
|
1178 |
+
$new_pointer_content .= '<p>' . __('This YouTube plugin update features a new iOS related option for both Free and PRO users. '); // ooopointer
|
1179 |
if (!(self::$alloptions[self::$opt_pro] && strlen(trim(self::$alloptions[self::$opt_pro])) > 0))
|
1180 |
{
|
1181 |
+
$new_pointer_content .= __('PRO users additionally have the new <a class="bold orange" target="_blank" href="' . self::$epbase . '/dashboard/pro-easy-video-analytics.aspx?ref=frompointer">mobile compatibility checker »</a>');
|
1182 |
}
|
1183 |
else
|
1184 |
{
|
1240 |
$new_options[self::$opt_modestbranding] = self::postchecked(self::$opt_modestbranding) ? 1 : 0;
|
1241 |
$new_options[self::$opt_rel] = self::postchecked(self::$opt_rel) ? 1 : 0;
|
1242 |
$new_options[self::$opt_showinfo] = self::postchecked(self::$opt_showinfo) ? 1 : 0;
|
1243 |
+
$new_options[self::$opt_playsinline] = self::postchecked(self::$opt_playsinline) ? 1 : 0;
|
1244 |
$new_options[self::$opt_controls] = self::postchecked(self::$opt_controls) ? 2 : 0;
|
1245 |
$new_options[self::$opt_autohide] = self::postchecked(self::$opt_autohide) ? 1 : 2;
|
1246 |
$new_options[self::$opt_html5] = self::postchecked(self::$opt_html5) ? 1 : 0;
|
1406 |
The ability to read the latest Internet discussions about the videos you want to embed is now free to all users.
|
1407 |
</p>
|
1408 |
<p>
|
1409 |
+
<b class="orange">Even more options are available to PRO users!</b> Simply click the <span class="button-primary cuz">► Customize</span> button on the wizard to further personalize your embeds without having to enter special codes yourself.
|
1410 |
<br>
|
1411 |
<br>
|
1412 |
+
|
1413 |
+
<img style="width: 550px; margin: 0 auto; display: block;" src="<?php echo plugins_url('images/ssprowizard.png', __FILE__) ?>" >
|
1414 |
+
|
1415 |
</p>
|
1416 |
<div class="jumper" id="jumpdefaults"></div>
|
1417 |
<h3 class="sect">
|
1418 |
<?php _e("Default YouTube Options") ?> <a href="#top" class="totop">▲ top</a>
|
1419 |
</h3>
|
1420 |
<p>
|
1421 |
+
<?php _e("One of the benefits of using this plugin is that you can set site-wide default options for all your videos (click \"Save Changes\" when finished). However, you can also override them (and more) on a per-video basis. Directions on how to do that are in the next section.") ?>
|
1422 |
</p>
|
1423 |
<p class="submit">
|
1424 |
<input type="submit" onclick="return savevalidate();" name="Submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
1504 |
<input name="<?php echo self::$opt_autohide; ?>" id="<?php echo self::$opt_autohide; ?>" <?php checked($all[self::$opt_autohide], 1); ?> type="checkbox" class="checkbox">
|
1505 |
<label for="<?php echo self::$opt_autohide; ?>"><?php _e('<b class="chktitle">Autohide Controls:</b> Slide away the control bar after the video starts playing. It will automatically slide back in again if you mouse over the video.') ?></label>
|
1506 |
</p>
|
1507 |
+
<p>
|
1508 |
+
<input name="<?php echo self::$opt_playsinline; ?>" id="<?php echo self::$opt_playsinline; ?>" <?php checked($all[self::$opt_playsinline], 1); ?> type="checkbox" class="checkbox">
|
1509 |
+
<label for="<?php echo self::$opt_playsinline; ?>"><?php _e('<b class="chktitle">iOS Playback: <sup class="orange">NEW</sup></b> Check this to allow your embeds to play inline within your page when viewed on iOS (iPhone and iPad) browsers. Uncheck it to have iOS launch your embeds in fullscreen instead.') ?></label>
|
1510 |
+
</p>
|
1511 |
<p>
|
1512 |
<input name="<?php echo self::$opt_oldspacing; ?>" id="<?php echo self::$opt_oldspacing; ?>" <?php checked($all[self::$opt_oldspacing], 1); ?> type="checkbox" class="checkbox">
|
1513 |
<label for="<?php echo self::$opt_oldspacing; ?>">
|
1524 |
<p>
|
1525 |
<input name="<?php echo self::$opt_ssl; ?>" id="<?php echo self::$opt_ssl; ?>" <?php checked($all[self::$opt_ssl], 1); ?> type="checkbox" class="checkbox">
|
1526 |
<label for="<?php echo self::$opt_ssl; ?>">
|
1527 |
+
<b>(PRO)</b> <b class="chktitle">HTTPS/SSL Player:</b> Use the secure YouTube player for all of your past and future embeds.
|
1528 |
</label>
|
1529 |
</p>
|
1530 |
<p>
|
1531 |
<input name="<?php echo self::$opt_html5; ?>" id="<?php echo self::$opt_html5; ?>" <?php checked($all[self::$opt_html5], 1); ?> type="checkbox" class="checkbox">
|
1532 |
<label for="<?php echo self::$opt_html5; ?>">
|
1533 |
+
<b>(PRO)</b> <b class="chktitle">HTML5 First:</b> Speed up your pages containing YouTube videos by using YouTube's HTML5 player instead of the Flash player when available. It's been noted that using the HTML5 player offers visibly lower page load times than Flash. Our own internal tests along with data from some beta testers suggest the same thing. In fact, some experiments show that pages (with multiple embeds) can have over four times less size with HTML5 than Flash.
|
1534 |
</label>
|
1535 |
</p>
|
1536 |
<p>
|
1549 |
<p>
|
1550 |
<input disabled type="checkbox" class="checkbox">
|
1551 |
<label>
|
1552 |
+
<b class="chktitle">HTTPS/SSL Player:</b> <span class="pronon">(PRO Users)</span> Use the secure YouTube player for all of your past and future embeds.
|
1553 |
</label>
|
1554 |
</p>
|
1555 |
<p>
|
1556 |
<input disabled type="checkbox" class="checkbox">
|
1557 |
<label>
|
1558 |
+
<b class="chktitle">HTML5 First:</b> <span class="pronon">(PRO Users)</span> Speed up your pages containing YouTube videos by using YouTube's HTML5 player instead of the Flash player when available. It's been noted that using the HTML5 player offers visibly lower page load times than Flash. Our own internal tests along with data from some beta testers suggest the same thing. <b>In fact, some experiments show that pages (with multiple embeds) can have over four times less size with HTML5 than Flash.</b>
|
1559 |
</label>
|
1560 |
</p>
|
1561 |
<p>
|
1576 |
|
1577 |
<hr>
|
1578 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1579 |
</div>
|
1580 |
<div class="jumper" id="jumpoverride"></div>
|
1581 |
|
1600 |
_e("<li><strong>vq</strong> - Set this to 'hd720' or 'hd1080' to force the video to have HD quality. Leave blank to let YouTube decide. <em>Example: http://www.youtube.com/watch?v=quwebVjAEJA<strong>&vq=hd720</strong></em> </li>");
|
1601 |
_e("<li><strong>controls</strong> - Set this to 0 to completely hide the video controls (or 2 to show it). <em>Example: http://www.youtube.com/watch?v=quwebVjAEJA<strong>&controls=0</strong></em> </li>");
|
1602 |
_e("<li><strong>autohide</strong> - Set this to 1 to slide away the control bar after the video starts playing. It will automatically slide back in again if you mouse over the video. (Set to 2 to always show it). <em>Example: http://www.youtube.com/watch?v=quwebVjAEJA<strong>&autohide=1</strong></em> </li>");
|
1603 |
+
_e("<li><strong>playsinline</strong> - Set this to 1 to allow videos play inline with the page on iOS browsers. (Set to 0 to have iOS launch videos in fullscreen instead). <em>Example: http://www.youtube.com/watch?v=quwebVjAEJA<strong>&playsinline=1</strong></em> </li>");
|
1604 |
_e('</ul>');
|
1605 |
|
1606 |
_e("<p>You can also start and end each individual video at particular times. Like the above, each option should begin with '&'</p>");
|
1638 |
</li>
|
1639 |
<li>
|
1640 |
<img src="<?php echo plugins_url('images/vseo.png', __FILE__) ?>">
|
1641 |
+
One-Click Video SEO Tags (will even work for your old embeds)
|
1642 |
</li>
|
1643 |
<li>
|
1644 |
<img src="<?php echo plugins_url('images/html5.png', __FILE__) ?>">
|
1651 |
<li>
|
1652 |
<img src="<?php echo plugins_url('images/globe.png', __FILE__) ?>">
|
1653 |
Alerts when visitors from different countries are blocked from viewing your embeds <sup class="orange bold">NEW</sup>
|
1654 |
+
</li>
|
1655 |
<li>
|
1656 |
+
<img src="<?php echo plugins_url('images/mobilecompat.png', __FILE__) ?>">
|
1657 |
+
Check if your embeds have restrictions that block mobile viewing <sup class="orange bold">NEW</sup>
|
1658 |
+
</li>
|
1659 |
+
|
1660 |
|
1661 |
</ul>
|
1662 |
</div>
|
1670 |
<img src="<?php echo plugins_url('images/bulletgraph45.png', __FILE__) ?>">
|
1671 |
User-friendly video analytics dashboard
|
1672 |
</li>
|
1673 |
+
|
1674 |
<li>
|
1675 |
+
<img src="<?php echo plugins_url('images/lock.png', __FILE__) ?>">
|
1676 |
+
HTTPS Secure YouTube player (will even work for your old embeds)
|
1677 |
</li>
|
1678 |
<li>
|
1679 |
<img src="<?php echo plugins_url('images/iconythealth.png', __FILE__) ?>">
|
1680 |
Instant YouTube embed diagnostic reports
|
1681 |
</li>
|
1682 |
<li>
|
1683 |
+
<img src="<?php echo plugins_url('images/iconmusic.png', __FILE__) ?>">
|
1684 |
+
Music video extras to inspire your posts <sup class="orange bold">NEW</sup>
|
1685 |
</li>
|
1686 |
+
|
1687 |
<li>
|
1688 |
+
<img src="<?php echo plugins_url('images/infinity.png', __FILE__) ?>">
|
1689 |
+
Unlimited PRO upgrades and downloads
|
1690 |
</li>
|
1691 |
<!-- <li>
|
1692 |
<img src="<?php echo plugins_url('images/questionsale.png', __FILE__) ?>">
|
1751 |
Priority Support <span class="pronon">(<a href="<?php echo self::$epbase ?>/dashboard/pro-easy-video-analytics.aspx" target="_blank">PRO Users »</a>)</span><a href="#top" class="totop">▲ top</a>
|
1752 |
</h3>
|
1753 |
<p>
|
1754 |
+
<strong>PRO users:</strong> Below, We've enabled the ability to have priority support with our team. Use this to get one-on-one help with any issues you might have or to send us suggestions for future features. We typically respond within minutes during normal work hours. We're always happy to accept any testimonials you might have as well.
|
1755 |
</p>
|
1756 |
|
1757 |
|