Version Description
Download this release
Release Info
Developer | freediver |
Plugin | Smart YouTube PRO |
Version | 2.7.5 |
Comparing to | |
See all releases |
Code changes from version 2.7.4 to 2.7.5
- readme.txt +4 -1
- smartyoutube.php +7 -3
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: freediver
|
|
3 |
Donate link: https://www.networkforgood.org/donation/MakeDonation.aspx?ORGID2=520781390
|
4 |
Tags: youtube, video, play, media, Post, posts, admin
|
5 |
Requires at least: 2.0
|
6 |
-
Tested up to: 2.7
|
7 |
Stable tag: trunk
|
8 |
|
9 |
Smart Youtube plugin allows you to insert full featured YouTube videos into your post, comments and in RSS feed.
|
@@ -33,6 +33,9 @@ Main Features:
|
|
33 |
|
34 |
Change Log:
|
35 |
|
|
|
|
|
|
|
36 |
v2.7.4
|
37 |
- Added option to remove info&ratings
|
38 |
|
3 |
Donate link: https://www.networkforgood.org/donation/MakeDonation.aspx?ORGID2=520781390
|
4 |
Tags: youtube, video, play, media, Post, posts, admin
|
5 |
Requires at least: 2.0
|
6 |
+
Tested up to: 2.7.1
|
7 |
Stable tag: trunk
|
8 |
|
9 |
Smart Youtube plugin allows you to insert full featured YouTube videos into your post, comments and in RSS feed.
|
33 |
|
34 |
Change Log:
|
35 |
|
36 |
+
v2.7.5
|
37 |
+
- WP_PLUGIN_URL used
|
38 |
+
|
39 |
v2.7.4
|
40 |
- Added option to remove info&ratings
|
41 |
|
smartyoutube.php
CHANGED
@@ -4,10 +4,11 @@ Plugin Name: Smart Youtube
|
|
4 |
Plugin URI: http://www.prelovac.com/vladimir/wordpress-plugins/smart-youtube
|
5 |
Description: Insert YouTube videos in posts, comments and RSS feeds with ease and full customization.
|
6 |
Author: Vladimir Prelovac
|
7 |
-
Version: 2.7.
|
8 |
Author URI: http://www.prelovac.com/vladimir/
|
9 |
|
10 |
Updates:
|
|
|
11 |
2.7.4 - Added option to remove info&ratings
|
12 |
2.7.3 - Removed annotiations
|
13 |
2.7 - Supports a sidebar widget for videos
|
@@ -32,7 +33,7 @@ To-Doo:
|
|
32 |
- the images appear under the embedded Smart Youtube videos. Is there any way to edit the z-index for Smart Youtube CSS? I
|
33 |
*/
|
34 |
|
35 |
-
$yte_localversion="2.7.
|
36 |
|
37 |
$CustomColors=array (
|
38 |
"blank" => array("d6d6d6","f0f0f0"),
|
@@ -46,7 +47,10 @@ $CustomColors=array (
|
|
46 |
"rubyred" => array("5d1719","cd311b")
|
47 |
);
|
48 |
|
49 |
-
$wp_yte_plugin_url = trailingslashit( get_bloginfo('wpurl')
|
|
|
|
|
|
|
50 |
|
51 |
// Admin Panel
|
52 |
function yte_add_pages()
|
4 |
Plugin URI: http://www.prelovac.com/vladimir/wordpress-plugins/smart-youtube
|
5 |
Description: Insert YouTube videos in posts, comments and RSS feeds with ease and full customization.
|
6 |
Author: Vladimir Prelovac
|
7 |
+
Version: 2.7.5
|
8 |
Author URI: http://www.prelovac.com/vladimir/
|
9 |
|
10 |
Updates:
|
11 |
+
2.7.5 - Plugin url updated to use WP_PLUGIN_URL
|
12 |
2.7.4 - Added option to remove info&ratings
|
13 |
2.7.3 - Removed annotiations
|
14 |
2.7 - Supports a sidebar widget for videos
|
33 |
- the images appear under the embedded Smart Youtube videos. Is there any way to edit the z-index for Smart Youtube CSS? I
|
34 |
*/
|
35 |
|
36 |
+
$yte_localversion="2.7.5";
|
37 |
|
38 |
$CustomColors=array (
|
39 |
"blank" => array("d6d6d6","f0f0f0"),
|
47 |
"rubyred" => array("5d1719","cd311b")
|
48 |
);
|
49 |
|
50 |
+
$wp_yte_plugin_url = defined('WP_PLUGIN_URL') ? trailingslashit(WP_PLUGIN_URL . '/' . dirname(plugin_basename(__FILE__))) : trailingslashit(get_bloginfo('wpurl')) . PLUGINDIR . '/' . dirname(plugin_basename(__FILE__));
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
|
55 |
// Admin Panel
|
56 |
function yte_add_pages()
|