Version Description
- Conflict with JetPack discovered & fixed.
- Optimized Code
Download this release
Release Info
Developer | Gallery-Bank |
Plugin | Gallery Bank: WordPress Photo Gallery Plugin |
Version | 3.0.80 |
Comparing to | |
See all releases |
Code changes from version 3.0.79 to 3.0.80
- assets/css/stylesheet.css +0 -183
- gallery-bank.php +1 -1
- readme.txt +6 -1
- views/header.php +1 -1
- views/purchase_pro_version.php +5 -5
assets/css/stylesheet.css
CHANGED
@@ -2025,190 +2025,7 @@ legend + .layout-control-group {
|
|
2025 |
padding-top: 7px;
|
2026 |
}
|
2027 |
|
2028 |
-
/* # Modal
|
2029 |
-
================================================== */
|
2030 |
-
|
2031 |
-
.modal-open .modal .dropdown-menu {
|
2032 |
-
z-index: 2050;
|
2033 |
-
}
|
2034 |
-
|
2035 |
-
.modal-open .modal .dropdown.open {
|
2036 |
-
*z-index: 2050;
|
2037 |
-
}
|
2038 |
-
|
2039 |
-
.modal-open .modal .popover {
|
2040 |
-
z-index: 2060;
|
2041 |
-
}
|
2042 |
-
|
2043 |
-
.modal-open .modal .tooltip {
|
2044 |
-
z-index: 2080;
|
2045 |
-
}
|
2046 |
-
|
2047 |
-
.modal-backdrop {
|
2048 |
-
position: fixed;
|
2049 |
-
top: 0;
|
2050 |
-
right: 0;
|
2051 |
-
bottom: 0;
|
2052 |
-
left: 0;
|
2053 |
-
z-index: 1040;
|
2054 |
-
background-color: #000000;
|
2055 |
-
}
|
2056 |
-
|
2057 |
-
.modal-backdrop.fade {
|
2058 |
-
opacity: 0;
|
2059 |
-
}
|
2060 |
-
|
2061 |
-
.modal-backdrop, .modal-backdrop.fade.in {
|
2062 |
-
opacity: 0.3;
|
2063 |
-
filter: alpha(opacity=30);
|
2064 |
-
}
|
2065 |
-
|
2066 |
-
.modal {
|
2067 |
-
position: fixed;
|
2068 |
-
top: 50%;
|
2069 |
-
left: 50%;
|
2070 |
-
z-index: 1050;
|
2071 |
-
overflow: auto;
|
2072 |
-
width: 560px;
|
2073 |
-
margin: -250px 0 0 -280px;
|
2074 |
-
background: url(../images/backgrounds/bg.png);
|
2075 |
-
border: 1px solid #c5c5c5;
|
2076 |
-
|
2077 |
-
-webkit-border-radius: 3px;
|
2078 |
-
-moz-border-radius: 3px;
|
2079 |
-
border-radius: 3px;
|
2080 |
-
|
2081 |
-
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
|
2082 |
-
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
|
2083 |
-
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
|
2084 |
-
|
2085 |
-
-webkit-background-clip: padding-box;
|
2086 |
-
-moz-background-clip: padding-box;
|
2087 |
-
background-clip: padding-box;
|
2088 |
-
|
2089 |
-
}
|
2090 |
-
|
2091 |
-
.modal.fade {
|
2092 |
-
top: -25%;
|
2093 |
-
-webkit-transition: opacity .3s linear, top .3s ease-out;
|
2094 |
-
-moz-transition: opacity .3s linear, top .3s ease-out;
|
2095 |
-
-o-transition: opacity .3s linear, top .3s ease-out;
|
2096 |
-
transition: opacity .3s linear, top .3s ease-out;
|
2097 |
-
}
|
2098 |
-
|
2099 |
-
.modal.fade.in {
|
2100 |
-
top: 50%;
|
2101 |
-
z-index: 10000;
|
2102 |
-
-webkit-border-radius: 5px;
|
2103 |
-
-moz-border-radius: 5px;
|
2104 |
-
border-radius: 5px;
|
2105 |
-
-moz-box-shadow: 0px 0px 5px #444444;
|
2106 |
-
-webkit-box-shadow: 0px 0px 5px #444;
|
2107 |
-
box-shadow: 0px 0px 5px #444;
|
2108 |
-
border: 10px solid rgba(52, 52, 52, .5);
|
2109 |
-
}
|
2110 |
-
|
2111 |
-
.modal-header {
|
2112 |
-
padding: 7px 15px;
|
2113 |
-
-webkit-border-top-right-radius: 3px;
|
2114 |
-
-webkit-border-top-left-radius: 3px;
|
2115 |
-
border-bottom: 1px solid #c1c1c1;
|
2116 |
-
box-shadow: 0 1px 0 #fff;
|
2117 |
-
-webkit-box-shadow: 0 1px 0 #fff;
|
2118 |
-
-moz-box-shadow: 0 1px 0 #fff;
|
2119 |
-
|
2120 |
-
background: #fcfcfc;
|
2121 |
-
background: -moz-linear-gradient(top, #fcfcfc 0%, #ececec 100%);
|
2122 |
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #ececec));
|
2123 |
-
background: -webkit-linear-gradient(top, #fcfcfc 0%, #ececec 100%);
|
2124 |
-
background: -o-linear-gradient(top, #fcfcfc 0%, #ececec 100%);
|
2125 |
-
background: -ms-linear-gradient(top, #fcfcfc 0%, #ececec 100%);
|
2126 |
-
background: linear-gradient(to bottom, #fcfcfc 0%, #ececec 100%);
|
2127 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#ececec', GradientType=0);
|
2128 |
-
|
2129 |
-
}
|
2130 |
-
|
2131 |
-
.modal-header .close {
|
2132 |
-
margin-top: 6px;
|
2133 |
-
}
|
2134 |
|
2135 |
-
.modal-header h5 {
|
2136 |
-
margin: 0;
|
2137 |
-
padding: 3px 0 3px 0;
|
2138 |
-
}
|
2139 |
-
|
2140 |
-
.modal-body {
|
2141 |
-
overflow-y: auto;
|
2142 |
-
padding: 15px;
|
2143 |
-
}
|
2144 |
-
|
2145 |
-
.modal-body .selector, .modal-body .select {
|
2146 |
-
max-width: 100%;
|
2147 |
-
width: 100%;
|
2148 |
-
-webkit-box-sizing: border-box;
|
2149 |
-
-moz-box-sizing: border-box;
|
2150 |
-
box-sizing: border-box;
|
2151 |
-
-ms-box-sizing: border-box;
|
2152 |
-
height: 30px;
|
2153 |
-
}
|
2154 |
-
|
2155 |
-
.modal-body .control-group {
|
2156 |
-
padding: 15px 0;
|
2157 |
-
}
|
2158 |
-
|
2159 |
-
.modal-body .control-group:first-child {
|
2160 |
-
padding-top: 0;
|
2161 |
-
}
|
2162 |
-
|
2163 |
-
.modal-body .control-group:last-child {
|
2164 |
-
padding-bottom: 0;
|
2165 |
-
}
|
2166 |
-
|
2167 |
-
.modal-form {
|
2168 |
-
margin-bottom: 0;
|
2169 |
-
}
|
2170 |
-
|
2171 |
-
.modal-footer .btn {
|
2172 |
-
margin-top: 0;
|
2173 |
-
margin-bottom: 0;
|
2174 |
-
}
|
2175 |
-
|
2176 |
-
.modal-footer {
|
2177 |
-
padding: 15px;
|
2178 |
-
margin-bottom: 0;
|
2179 |
-
text-align: right;
|
2180 |
-
background-color: #f5f5f5;
|
2181 |
-
border-top: 1px solid #ddd;
|
2182 |
-
*zoom: 1;
|
2183 |
-
|
2184 |
-
-webkit-border-radius: 0 0 3px 3px;
|
2185 |
-
-moz-border-radius: 0 0 3px 3px;
|
2186 |
-
border-radius: 0 0 3px 3px;
|
2187 |
-
|
2188 |
-
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
2189 |
-
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
2190 |
-
box-shadow: inset 0 1px 0 #ffffff;
|
2191 |
-
|
2192 |
-
}
|
2193 |
-
|
2194 |
-
.modal-footer:before, .modal-footer:after {
|
2195 |
-
display: table;
|
2196 |
-
content: "";
|
2197 |
-
line-height: 0;
|
2198 |
-
}
|
2199 |
-
|
2200 |
-
.modal-footer:after {
|
2201 |
-
clear: both;
|
2202 |
-
}
|
2203 |
-
|
2204 |
-
.modal-footer .btn + .btn {
|
2205 |
-
margin-left: 5px;
|
2206 |
-
margin-bottom: 0;
|
2207 |
-
}
|
2208 |
-
|
2209 |
-
.modal-footer .btn-group .btn + .btn {
|
2210 |
-
margin-left: -1px;
|
2211 |
-
}
|
2212 |
|
2213 |
.dropup, .dropdown {
|
2214 |
position: relative;
|
2025 |
padding-top: 7px;
|
2026 |
}
|
2027 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2028 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2029 |
|
2030 |
.dropup, .dropdown {
|
2031 |
position: relative;
|
gallery-bank.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin URI: http://tech-banker.com
|
5 |
Description: Gallery Bank is an easy to use Responsive WordPress Gallery Plugin for photos, videos, galleries and albums.
|
6 |
Author: Tech Banker
|
7 |
-
Version: 3.0.
|
8 |
Author URI: http://tech-banker.com
|
9 |
*/
|
10 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
4 |
Plugin URI: http://tech-banker.com
|
5 |
Description: Gallery Bank is an easy to use Responsive WordPress Gallery Plugin for photos, videos, galleries and albums.
|
6 |
Author: Tech Banker
|
7 |
+
Version: 3.0.80
|
8 |
Author URI: http://tech-banker.com
|
9 |
*/
|
10 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Gallery-Bank,contact-banker
|
|
3 |
Tags: add album, add gallery, add picture, add pictures, admin, AJAX, album, best gallery, best gallery plugin, best image slider, best portfolio, bilder, comments, easy media gallery, fancy gallery, filterable gallery, filterable portfolio, foto, fotoalbum, galary, galerie, galerij, galery, gallary, Galleria, gallerie, gallery, gallery decription, gallery image, gallery lightbox, Gallery Plugin, gelary, gellary, gellery, google, grid gallery, html5 player, html5 video, html5-audio, image, image album, image gallery, image gallery plugin, image lightbox, image rotate, image slider, image slideshow, images, jquery, jquery gallery, jquery slider, jquery slideshow, lightbox, links, media gallery, multiple pictures, nextgen gallery, page, pagination gallery, pagination portfolio, photo, photo album, photo albums, photo gallery, Photo Slider, photoalbum, photogallery, photos, photoset, picture, pictures, plugin, plugin for gallery, plugin gallery, portfolio, portfolio gallery, portfolio plugin, Post, posts, responsive gallery, responsive image gallery, responsive slider, responsive slideshow, seo, seo image, shortcode, sidebar, slide show, slideshow, thumbnail, twitter, upload images, upload photos, view images, view pictures, website gallery, widget, wordpress gallery plugin, wordpress portfolio plugin, wordpress seo, wp gallery, wp gallery plugin, wp slider
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 4.0
|
6 |
-
Stable tag: 3.0.
|
7 |
License: GPLv3 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -487,6 +487,11 @@ is False in shortcode.
|
|
487 |
|
488 |
== Changelog ==
|
489 |
|
|
|
|
|
|
|
|
|
|
|
490 |
= 3.0.79 =
|
491 |
|
492 |
* Udpated Po & Mo Files for all Languages
|
3 |
Tags: add album, add gallery, add picture, add pictures, admin, AJAX, album, best gallery, best gallery plugin, best image slider, best portfolio, bilder, comments, easy media gallery, fancy gallery, filterable gallery, filterable portfolio, foto, fotoalbum, galary, galerie, galerij, galery, gallary, Galleria, gallerie, gallery, gallery decription, gallery image, gallery lightbox, Gallery Plugin, gelary, gellary, gellery, google, grid gallery, html5 player, html5 video, html5-audio, image, image album, image gallery, image gallery plugin, image lightbox, image rotate, image slider, image slideshow, images, jquery, jquery gallery, jquery slider, jquery slideshow, lightbox, links, media gallery, multiple pictures, nextgen gallery, page, pagination gallery, pagination portfolio, photo, photo album, photo albums, photo gallery, Photo Slider, photoalbum, photogallery, photos, photoset, picture, pictures, plugin, plugin for gallery, plugin gallery, portfolio, portfolio gallery, portfolio plugin, Post, posts, responsive gallery, responsive image gallery, responsive slider, responsive slideshow, seo, seo image, shortcode, sidebar, slide show, slideshow, thumbnail, twitter, upload images, upload photos, view images, view pictures, website gallery, widget, wordpress gallery plugin, wordpress portfolio plugin, wordpress seo, wp gallery, wp gallery plugin, wp slider
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 4.0
|
6 |
+
Stable tag: 3.0.80
|
7 |
License: GPLv3 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
487 |
|
488 |
== Changelog ==
|
489 |
|
490 |
+
= 3.0.80 =
|
491 |
+
|
492 |
+
* Conflict with JetPack discovered & fixed.
|
493 |
+
* Optimized Code
|
494 |
+
|
495 |
= 3.0.79 =
|
496 |
|
497 |
* Udpated Po & Mo Files for all Languages
|
views/header.php
CHANGED
@@ -72,7 +72,7 @@ $language = get_locale();
|
|
72 |
<h4 class="welcome-screen-margin"><?php _e("More Actions", gallery_bank); ?></h4>
|
73 |
<ul>
|
74 |
<li>
|
75 |
-
<a href="http://tech-banker.com/shop/
|
76 |
<?php _e("Plugin Customization", gallery_bank); ?>
|
77 |
</a>
|
78 |
</li>
|
72 |
<h4 class="welcome-screen-margin"><?php _e("More Actions", gallery_bank); ?></h4>
|
73 |
<ul>
|
74 |
<li>
|
75 |
+
<a href="http://tech-banker.com/shop/plugin-customization/order-customization-wp-gallery-bank/" target="_blank" class="welcome-icon">
|
76 |
<?php _e("Plugin Customization", gallery_bank); ?>
|
77 |
</a>
|
78 |
</li>
|
views/purchase_pro_version.php
CHANGED
@@ -636,7 +636,7 @@ else
|
|
636 |
<li
|
637 |
class="css3_grid_row_40 footer_row css3_grid_row_40_responsive"><span
|
638 |
class="css3_grid_vertical_align_table"><span
|
639 |
-
class="css3_grid_vertical_align"><a target="_blank"
|
640 |
href="https://wordpress.org/plugins/gallery-bank/"
|
641 |
class="sign_up sign_up_orange radius3">Download!</a></span></span></li>
|
642 |
</ul>
|
@@ -919,7 +919,7 @@ else
|
|
919 |
<li
|
920 |
class="css3_grid_row_40 footer_row css3_grid_row_40_responsive"><span
|
921 |
class="css3_grid_vertical_align_table"><span
|
922 |
-
class="css3_grid_vertical_align"><a
|
923 |
href="http://tech-banker.com/shop/wp-gallery-bank/gallery-bank-eco-edition/"
|
924 |
class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
|
925 |
</ul>
|
@@ -1202,7 +1202,7 @@ else
|
|
1202 |
<li
|
1203 |
class="css3_grid_row_40 footer_row css3_grid_row_40_responsive"><span
|
1204 |
class="css3_grid_vertical_align_table"><span
|
1205 |
-
class="css3_grid_vertical_align"><a
|
1206 |
href="http://tech-banker.com/shop/wp-gallery-bank/gallery-bank-pro-edition/"
|
1207 |
class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
|
1208 |
</ul>
|
@@ -1485,7 +1485,7 @@ else
|
|
1485 |
<li
|
1486 |
class="css3_grid_row_40 footer_row css3_grid_row_40_responsive"><span
|
1487 |
class="css3_grid_vertical_align_table"><span
|
1488 |
-
class="css3_grid_vertical_align"><a
|
1489 |
href="http://tech-banker.com/shop/wp-gallery-bank/gallery-bank-developer-edition/"
|
1490 |
class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
|
1491 |
</ul>
|
@@ -1768,7 +1768,7 @@ else
|
|
1768 |
<li
|
1769 |
class="css3_grid_row_40 footer_row css3_grid_row_40_responsive"><span
|
1770 |
class="css3_grid_vertical_align_table"><span
|
1771 |
-
class="css3_grid_vertical_align"><a
|
1772 |
href="http://tech-banker.com/shop/wp-gallery-bank/gallery-bank-extended-edition/"
|
1773 |
class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
|
1774 |
</ul>
|
636 |
<li
|
637 |
class="css3_grid_row_40 footer_row css3_grid_row_40_responsive"><span
|
638 |
class="css3_grid_vertical_align_table"><span
|
639 |
+
class="css3_grid_vertical_align"><a target="_blank"
|
640 |
href="https://wordpress.org/plugins/gallery-bank/"
|
641 |
class="sign_up sign_up_orange radius3">Download!</a></span></span></li>
|
642 |
</ul>
|
919 |
<li
|
920 |
class="css3_grid_row_40 footer_row css3_grid_row_40_responsive"><span
|
921 |
class="css3_grid_vertical_align_table"><span
|
922 |
+
class="css3_grid_vertical_align"><a target="_blank"
|
923 |
href="http://tech-banker.com/shop/wp-gallery-bank/gallery-bank-eco-edition/"
|
924 |
class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
|
925 |
</ul>
|
1202 |
<li
|
1203 |
class="css3_grid_row_40 footer_row css3_grid_row_40_responsive"><span
|
1204 |
class="css3_grid_vertical_align_table"><span
|
1205 |
+
class="css3_grid_vertical_align"><a target="_blank"
|
1206 |
href="http://tech-banker.com/shop/wp-gallery-bank/gallery-bank-pro-edition/"
|
1207 |
class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
|
1208 |
</ul>
|
1485 |
<li
|
1486 |
class="css3_grid_row_40 footer_row css3_grid_row_40_responsive"><span
|
1487 |
class="css3_grid_vertical_align_table"><span
|
1488 |
+
class="css3_grid_vertical_align"><a target="_blank"
|
1489 |
href="http://tech-banker.com/shop/wp-gallery-bank/gallery-bank-developer-edition/"
|
1490 |
class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
|
1491 |
</ul>
|
1768 |
<li
|
1769 |
class="css3_grid_row_40 footer_row css3_grid_row_40_responsive"><span
|
1770 |
class="css3_grid_vertical_align_table"><span
|
1771 |
+
class="css3_grid_vertical_align"><a target="_blank"
|
1772 |
href="http://tech-banker.com/shop/wp-gallery-bank/gallery-bank-extended-edition/"
|
1773 |
class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
|
1774 |
</ul>
|