Version Description
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Gallery by BestWebSoft |
Version | 2011.1.02 |
Comparing to | |
See all releases |
Code changes from version 2011.1.01 to 2011.1.02
- gallery-plugin.php +1 -1
- readme.txt +7 -1
- themplate/gallery-single-template.php +3 -2
gallery-plugin.php
CHANGED
@@ -108,7 +108,7 @@ if( ! function_exists( 'post_type_images' ) ) {
|
|
108 |
|
109 |
wp_enqueue_style( 'gllrStylesheet', WP_PLUGIN_URL .'/gallery-plugin/css/stylesheet.css' );
|
110 |
wp_enqueue_style( 'gllrPrettyPhotoStylesheet', WP_PLUGIN_URL .'/gallery-plugin/pretty_photo/css/prettyPhoto.css' );
|
111 |
-
wp_enqueue_script( 'gllrPrettyPhotoJq', WP_PLUGIN_URL .'/gallery-plugin/pretty_photo/jquery-1.6.2.min.js', array( 'jquery' ) );
|
112 |
wp_enqueue_script( 'gllrPrettyPhotoJs', WP_PLUGIN_URL .'/gallery-plugin/pretty_photo/js/jquery.prettyPhoto.js', array( 'jquery' ) );
|
113 |
}
|
114 |
}
|
108 |
|
109 |
wp_enqueue_style( 'gllrStylesheet', WP_PLUGIN_URL .'/gallery-plugin/css/stylesheet.css' );
|
110 |
wp_enqueue_style( 'gllrPrettyPhotoStylesheet', WP_PLUGIN_URL .'/gallery-plugin/pretty_photo/css/prettyPhoto.css' );
|
111 |
+
//wp_enqueue_script( 'gllrPrettyPhotoJq', WP_PLUGIN_URL .'/gallery-plugin/pretty_photo/jquery-1.6.2.min.js', array( 'jquery' ) );
|
112 |
wp_enqueue_script( 'gllrPrettyPhotoJs', WP_PLUGIN_URL .'/gallery-plugin/pretty_photo/js/jquery.prettyPhoto.js', array( 'jquery' ) );
|
113 |
}
|
114 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://bestwebsoft.com/
|
|
4 |
Tags: gallery, image, gallery image, album, foto, fotoalbum
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.2.1
|
7 |
-
Stable tag: 2011.1.
|
8 |
|
9 |
This plugin allows you to implement gallery page into web site.
|
10 |
|
@@ -51,10 +51,16 @@ The multiple files upload is supported by all modern browsers except Internet Ex
|
|
51 |
|
52 |
== Changelog ==
|
53 |
|
|
|
|
|
|
|
54 |
= 1.01 =
|
55 |
*The file uploader is added to the Galleries page in the admin section.
|
56 |
|
57 |
== Upgrade Notice ==
|
58 |
|
|
|
|
|
|
|
59 |
= 1.01 =
|
60 |
The file uploader is added to the Galleries page in the admin section.
|
4 |
Tags: gallery, image, gallery image, album, foto, fotoalbum
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.2.1
|
7 |
+
Stable tag: 2011.1.02
|
8 |
|
9 |
This plugin allows you to implement gallery page into web site.
|
10 |
|
51 |
|
52 |
== Changelog ==
|
53 |
|
54 |
+
= 1.02 =
|
55 |
+
*Add noConflict for jQuery.
|
56 |
+
|
57 |
= 1.01 =
|
58 |
*The file uploader is added to the Galleries page in the admin section.
|
59 |
|
60 |
== Upgrade Notice ==
|
61 |
|
62 |
+
= 1.02 =
|
63 |
+
Add noConflict for jQuery.
|
64 |
+
|
65 |
= 1.01 =
|
66 |
The file uploader is added to the Galleries page in the admin section.
|
themplate/gallery-single-template.php
CHANGED
@@ -52,8 +52,9 @@
|
|
52 |
</div>
|
53 |
<?php get_sidebar(); ?>
|
54 |
<script type="text/javascript">
|
55 |
-
$
|
56 |
-
|
|
|
57 |
});
|
58 |
</script>
|
59 |
<?php get_footer(); ?>
|
52 |
</div>
|
53 |
<?php get_sidebar(); ?>
|
54 |
<script type="text/javascript">
|
55 |
+
var $j = jQuery.noConflict();
|
56 |
+
$j(document).ready(function(){
|
57 |
+
$j("a[rel^='prettyPhoto']").prettyPhoto({theme: 'dark_square'});
|
58 |
});
|
59 |
</script>
|
60 |
<?php get_footer(); ?>
|