Version Description
- TWEAK: Wizard Section Renoved Completely
- TWEAK: Overview Section Added
- TWEAK: New Links Added
Download this release
Release Info
Developer | contact-banker |
Plugin | Gallery Bank: WordPress Photo Gallery Plugin |
Version | 4.0.6 |
Comparing to | |
See all releases |
Code changes from version 4.0.5 to 4.0.6
- assets/admin/layout/css/gallery-bank-custom.css +8 -0
- gallery-bank.php +34 -80
- includes/footer.php +59 -29
- includes/queries.php +5 -2
- includes/sidebar.php +7 -1
- includes/translations.php +10 -3
- lib/action-library.php +0 -51
- lib/admin-bar-menu.php +7 -0
- lib/sidebar-menu.php +62 -53
- readme.txt +100 -77
- uninstall.php +1 -1
- user-views/lib/helper.php +26 -26
- views/albums/add-album.php +2 -2
- views/albums/manage-albums.php +2 -2
- views/albums/sort-albums.php +2 -2
- views/feature-requests/feature-requests.php +1 -1
- views/galleries/add-gallery.php +2 -2
- views/galleries/manage-galleries.php +15 -15
- views/galleries/sort-galleries.php +2 -2
- views/general-settings/advertisement.php +2 -2
- views/general-settings/filters-settings.php +2 -2
- views/general-settings/global-options.php +1 -1
- views/general-settings/lazy-load-settings.php +2 -2
- views/general-settings/order-by-settings.php +2 -2
- views/general-settings/page-navigation.php +2 -2
- views/general-settings/search-box-settings.php +2 -2
- views/general-settings/watermark-settings.php +2 -2
- views/layout-settings/blog-style-layout.php +2 -2
- views/layout-settings/compact-album-layout.php +2 -2
- views/layout-settings/custom-css.php +1 -1
- views/layout-settings/extended-album-layout.php +2 -2
- views/layout-settings/image-browser-layout.php +2 -2
- views/layout-settings/justified-grid-layout.php +2 -2
- views/layout-settings/masonry-layout.php +2 -2
- views/layout-settings/slideshow-layout.php +2 -2
- views/layout-settings/thumbnail-layout.php +2 -2
- views/lightboxes/color-box.php +2 -2
- views/lightboxes/fancy-box.php +2 -2
- views/lightboxes/foo-box-free-edition.php +2 -2
- views/lightboxes/lightcase.php +2 -2
- views/lightboxes/nivo-lightbox.php +2 -2
- views/other-settings/other-settings.php +1 -1
- views/premium-editions/premium-editions.php +3 -3
- views/roles-and-capabilities/roles-and-capabilities.php +2 -2
- views/shortcodes/blog-style-layout-shortcode.php +2 -2
- views/shortcodes/image-browser-layout-shortcode.php +2 -2
- views/shortcodes/justified-grid-layout-shortcode.php +2 -2
- views/shortcodes/masonry-layout-shortcode.php +2 -2
- views/shortcodes/slideshow-layout-shortcode.php +2 -2
- views/shortcodes/thumbnail-layout-shortcode.php +2 -2
- views/system-information/system-information.php +1 -1
- views/tags/add-tag.php +2 -2
- views/tags/manage-tags.php +2 -2
- views/wizard/wizard.php +2879 -146
assets/admin/layout/css/gallery-bank-custom.css
CHANGED
@@ -549,3 +549,11 @@
|
|
549 |
color: #fff;
|
550 |
background-color: #a4cd39;
|
551 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
549 |
color: #fff;
|
550 |
background-color: #a4cd39;
|
551 |
}
|
552 |
+
.downarraow-toggle{
|
553 |
+
float: right;
|
554 |
+
margin-top: 10px;
|
555 |
+
}
|
556 |
+
.toggle-portlet
|
557 |
+
{
|
558 |
+
margin-top: 5px;
|
559 |
+
}
|
gallery-bank.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
* Plugin Name: Photo Gallery - Image Gallery - Photo
|
4 |
-
* Plugin URI: https://gallery-bank.tech-banker.com
|
5 |
-
* Description:
|
6 |
* Author: Tech Banker
|
7 |
-
* Author URI: https://gallery-bank.tech-banker.com
|
8 |
-
* Version: 4.0.
|
9 |
* License: GPLv3
|
10 |
* Text Domain: gallery-bank
|
11 |
* Domain Path: /languages
|
@@ -85,12 +85,6 @@ if (is_ssl()) {
|
|
85 |
define("tech_banker_gallery_url", "http://gallery-bank.tech-banker.com/");
|
86 |
}
|
87 |
}
|
88 |
-
if (!defined("tech_banker_stats_url")) {
|
89 |
-
define("tech_banker_stats_url", "http://stats.tech-banker-services.org");
|
90 |
-
}
|
91 |
-
if (!defined("gallery_bank_wizard_version_number")) {
|
92 |
-
define("gallery_bank_wizard_version_number", "4.0.5");
|
93 |
-
}
|
94 |
|
95 |
if (!is_dir(GALLERY_BANK_MAIN_DIR)) {
|
96 |
wp_mkdir_p(GALLERY_BANK_MAIN_DIR);
|
@@ -218,7 +212,7 @@ if (is_admin()) {
|
|
218 |
*/
|
219 |
function backend_js_css_for_gallery_bank($hook) {
|
220 |
$pages_gallery_bank = array(
|
221 |
-
"
|
222 |
"gallery_bank",
|
223 |
"gb_other_settings",
|
224 |
"gb_add_gallery",
|
@@ -770,63 +764,6 @@ if ($version == "4.0") {
|
|
770 |
return $instance;
|
771 |
}
|
772 |
}
|
773 |
-
/*
|
774 |
-
Function Name: deactivation_function_for_gallery_bank
|
775 |
-
Parameters: No
|
776 |
-
Description: This function is used for executing the code on deactivation.
|
777 |
-
Created On: 13-06-2017 11:00
|
778 |
-
Created by: Tech Banker Team
|
779 |
-
*/
|
780 |
-
function deactivation_function_for_gallery_bank() {
|
781 |
-
$type = get_option("gallery-bank-wizard-set-up");
|
782 |
-
if ($type == "opt_in") {
|
783 |
-
$plugin_info_gallery_bank = new plugin_info_gallery_bank();
|
784 |
-
global $wp_version, $wpdb;
|
785 |
-
$url = tech_banker_stats_url . "/wp-admin/admin-ajax.php";
|
786 |
-
$theme_details = array();
|
787 |
-
|
788 |
-
if ($wp_version >= 3.4) {
|
789 |
-
$active_theme = wp_get_theme();
|
790 |
-
$theme_details["theme_name"] = strip_tags($active_theme->Name);
|
791 |
-
$theme_details["theme_version"] = strip_tags($active_theme->Version);
|
792 |
-
$theme_details["author_url"] = strip_tags($active_theme->{"Author URI"});
|
793 |
-
}
|
794 |
-
|
795 |
-
$plugin_stat_data = array();
|
796 |
-
$plugin_stat_data["plugin_slug"] = "gallery-bank";
|
797 |
-
$plugin_stat_data["type"] = "standard_edition";
|
798 |
-
$plugin_stat_data["version_number"] = gallery_bank_wizard_version_number;
|
799 |
-
$plugin_stat_data["status"] = $type;
|
800 |
-
$plugin_stat_data["event"] = "de-activate";
|
801 |
-
$plugin_stat_data["domain_url"] = site_url();
|
802 |
-
$plugin_stat_data["wp_language"] = defined("WPLANG") && WPLANG ? WPLANG : get_locale();
|
803 |
-
$plugin_stat_data["email"] = get_option("admin_email");
|
804 |
-
$plugin_stat_data["wp_version"] = $wp_version;
|
805 |
-
$plugin_stat_data["php_version"] = esc_html(phpversion());
|
806 |
-
$plugin_stat_data["mysql_version"] = $wpdb->db_version();
|
807 |
-
$plugin_stat_data["max_input_vars"] = ini_get("max_input_vars");
|
808 |
-
$plugin_stat_data["operating_system"] = PHP_OS . " (" . PHP_INT_SIZE * 8 . ") BIT";
|
809 |
-
$plugin_stat_data["php_memory_limit"] = ini_get("memory_limit") ? ini_get("memory_limit") : "N/A";
|
810 |
-
$plugin_stat_data["extensions"] = get_loaded_extensions();
|
811 |
-
$plugin_stat_data["plugins"] = $plugin_info_gallery_bank->get_plugin_info_gallery_bank();
|
812 |
-
$plugin_stat_data["themes"] = $theme_details;
|
813 |
-
|
814 |
-
$response = wp_safe_remote_post($url, array
|
815 |
-
(
|
816 |
-
"method" => "POST",
|
817 |
-
"timeout" => 45,
|
818 |
-
"redirection" => 5,
|
819 |
-
"httpversion" => "1.0",
|
820 |
-
"blocking" => true,
|
821 |
-
"headers" => array(),
|
822 |
-
"body" => array("data" => serialize($plugin_stat_data), "site_id" => get_option("gb_tech_banker_site_id") != "" ? get_option("gb_tech_banker_site_id") : "", "action" => "plugin_analysis_data")
|
823 |
-
));
|
824 |
-
if (!is_wp_error($response)) {
|
825 |
-
$response["body"] != "" ? update_option("gb_tech_banker_site_id", $response["body"]) : "";
|
826 |
-
}
|
827 |
-
}
|
828 |
-
delete_option("gallery-bank-wizard-set-up");
|
829 |
-
}
|
830 |
/*
|
831 |
Function Name: gallery_bank_action_links
|
832 |
Parameters: Yes
|
@@ -942,9 +879,33 @@ if ($version == "4.0") {
|
|
942 |
add_submenu_page("Gallery Bank", "Gallery Bank", "", "read", "gallery_bank", "gallery_bank");
|
943 |
}
|
944 |
function gallery_bank() {
|
945 |
-
|
946 |
-
|
947 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
948 |
}
|
949 |
add_action("admin_menu", "sidebar_menu_gallery_bank_temp");
|
950 |
add_action("network_admin_menu", "sidebar_menu_gallery_bank_temp");
|
@@ -985,17 +946,10 @@ function plugin_activate_gallery_bank() {
|
|
985 |
function gallery_bank_redirect() {
|
986 |
if (get_option('gallery_bank_do_activation_redirect', false)) {
|
987 |
delete_option("gallery_bank_do_activation_redirect");
|
988 |
-
wp_redirect(admin_url("admin.php?page=
|
989 |
exit;
|
990 |
}
|
991 |
}
|
992 |
-
/* deactivation_function_for_gallery_bank
|
993 |
-
Description: This hook is used to sets the deactivation hook for a plugin.
|
994 |
-
Created On: 13-06-2017 11:08
|
995 |
-
Created by: Tech Banker Team
|
996 |
-
*/
|
997 |
-
|
998 |
-
register_deactivation_hook(__FILE__, "deactivation_function_for_gallery_bank");
|
999 |
/*
|
1000 |
|
1001 |
/*
|
1 |
<?php
|
2 |
/*
|
3 |
+
* Plugin Name: Gallery Bank - Photo Gallery - Image Gallery - Photo Albums - WordPress Gallery Plugin
|
4 |
+
* Plugin URI: https://gallery-bank.tech-banker.com
|
5 |
+
* Description: Photo Gallery Plugin for WordPress. Creates elegant responsive gallery widget, image gallery, media gallery, portfolio gallery and albums.
|
6 |
* Author: Tech Banker
|
7 |
+
* Author URI: https://gallery-bank.tech-banker.com
|
8 |
+
* Version: 4.0.6
|
9 |
* License: GPLv3
|
10 |
* Text Domain: gallery-bank
|
11 |
* Domain Path: /languages
|
85 |
define("tech_banker_gallery_url", "http://gallery-bank.tech-banker.com/");
|
86 |
}
|
87 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
|
89 |
if (!is_dir(GALLERY_BANK_MAIN_DIR)) {
|
90 |
wp_mkdir_p(GALLERY_BANK_MAIN_DIR);
|
212 |
*/
|
213 |
function backend_js_css_for_gallery_bank($hook) {
|
214 |
$pages_gallery_bank = array(
|
215 |
+
"gb_welcome_gallery_bank",
|
216 |
"gallery_bank",
|
217 |
"gb_other_settings",
|
218 |
"gb_add_gallery",
|
764 |
return $instance;
|
765 |
}
|
766 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
767 |
/*
|
768 |
Function Name: gallery_bank_action_links
|
769 |
Parameters: Yes
|
879 |
add_submenu_page("Gallery Bank", "Gallery Bank", "", "read", "gallery_bank", "gallery_bank");
|
880 |
}
|
881 |
function gallery_bank() {
|
882 |
+
global $wpdb;
|
883 |
+
$user_role_permission = array(
|
884 |
+
"manage_options",
|
885 |
+
"edit_plugins",
|
886 |
+
"edit_posts",
|
887 |
+
"publish_posts",
|
888 |
+
"publish_pages",
|
889 |
+
"edit_pages"
|
890 |
+
);
|
891 |
+
if (file_exists(GALLERY_BANK_PLUGIN_DIR_PATH . "includes/translations.php")) {
|
892 |
+
include GALLERY_BANK_PLUGIN_DIR_PATH . "includes/translations.php";
|
893 |
+
}
|
894 |
+
if (file_exists(GALLERY_BANK_PLUGIN_DIR_PATH . "includes/queries.php")) {
|
895 |
+
include_once GALLERY_BANK_PLUGIN_DIR_PATH . "includes/queries.php";
|
896 |
+
}
|
897 |
+
if (file_exists(GALLERY_BANK_PLUGIN_DIR_PATH . "includes/header.php")) {
|
898 |
+
include_once GALLERY_BANK_PLUGIN_DIR_PATH . "includes/header.php";
|
899 |
+
}
|
900 |
+
if (file_exists(GALLERY_BANK_PLUGIN_DIR_PATH . "includes/sidebar.php")) {
|
901 |
+
include_once GALLERY_BANK_PLUGIN_DIR_PATH . "includes/sidebar.php";
|
902 |
+
}
|
903 |
+
if (file_exists(GALLERY_BANK_PLUGIN_DIR_PATH . "views/wizard/wizard.php")) {
|
904 |
+
include_once GALLERY_BANK_PLUGIN_DIR_PATH . "views/wizard/wizard.php";
|
905 |
+
}
|
906 |
+
if (file_exists(GALLERY_BANK_PLUGIN_DIR_PATH . "includes/footer.php")) {
|
907 |
+
include_once GALLERY_BANK_PLUGIN_DIR_PATH . "includes/footer.php";
|
908 |
+
}
|
909 |
}
|
910 |
add_action("admin_menu", "sidebar_menu_gallery_bank_temp");
|
911 |
add_action("network_admin_menu", "sidebar_menu_gallery_bank_temp");
|
946 |
function gallery_bank_redirect() {
|
947 |
if (get_option('gallery_bank_do_activation_redirect', false)) {
|
948 |
delete_option("gallery_bank_do_activation_redirect");
|
949 |
+
wp_redirect(admin_url("admin.php?page=gb_welcome_gallery_bank"));
|
950 |
exit;
|
951 |
}
|
952 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
953 |
/*
|
954 |
|
955 |
/*
|
includes/footer.php
CHANGED
@@ -153,6 +153,15 @@ if (!is_user_logged_in()) {
|
|
153 |
});
|
154 |
return oTable;
|
155 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
156 |
function hover_effect_value_gallery_bank() {
|
157 |
var hover_effect = jQuery("#ux_ddl_hover_effect").val();
|
158 |
switch (hover_effect) {
|
@@ -604,40 +613,61 @@ if (!is_user_logged_in()) {
|
|
604 |
}
|
605 |
});
|
606 |
<?php
|
607 |
-
$check_gallery_bank_wizard = get_option("gallery-bank-
|
608 |
-
$page_url = $check_gallery_bank_wizard == "" ? "
|
609 |
if (isset($_GET["page"])) {
|
610 |
switch ($page_url) {
|
611 |
-
case "
|
612 |
?>
|
613 |
-
function
|
614 |
{
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
623 |
}
|
624 |
-
}
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
{
|
630 |
-
type: type,
|
631 |
-
param: "wizard_gallery_bank",
|
632 |
-
action: "gallery_bank_action_module",
|
633 |
-
_wp_nonce: "<?php echo $gallery_bank_check_status; ?>"
|
634 |
-
},
|
635 |
-
function ()
|
636 |
-
{
|
637 |
-
remove_overlay_gallery_bank();
|
638 |
-
window.location.href = "admin.php?page=gallery_bank";
|
639 |
-
});
|
640 |
-
}
|
641 |
<?php
|
642 |
break;
|
643 |
case "gallery_bank" :
|
153 |
});
|
154 |
return oTable;
|
155 |
}
|
156 |
+
function show_hide_text_field_options(id) {
|
157 |
+
jQuery("#" + id).animate({
|
158 |
+
height: 'toggle'
|
159 |
+
});
|
160 |
+
var sidebar_load_interval = setInterval(load_sidebar_content_gallery_bank, 1000);
|
161 |
+
setTimeout(function () {
|
162 |
+
clearInterval(sidebar_load_interval);
|
163 |
+
}, 5000);
|
164 |
+
}
|
165 |
function hover_effect_value_gallery_bank() {
|
166 |
var hover_effect = jQuery("#ux_ddl_hover_effect").val();
|
167 |
switch (hover_effect) {
|
613 |
}
|
614 |
});
|
615 |
<?php
|
616 |
+
$check_gallery_bank_wizard = get_option("gallery-bank-welcome-page");
|
617 |
+
$page_url = $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : esc_attr($_GET["page"]);
|
618 |
if (isset($_GET["page"])) {
|
619 |
switch ($page_url) {
|
620 |
+
case "gb_welcome_gallery_bank":
|
621 |
?>
|
622 |
+
jQuery(document).ready(function ()
|
623 |
{
|
624 |
+
jQuery("#ux_div_embed_shortcode,#ux_div_image_gallery,#ux_div_masonry_layout,#ux_div_slideshow_layout,#ux_div_image_browser_layout,#ux_div_justified_grid_layout,#ux_div_blog_style_layout").slideUp();
|
625 |
+
});
|
626 |
+
jQuery("#ux_li_welcome").addClass("active");
|
627 |
+
var feature_request_array = [];
|
628 |
+
var frm_feature_request = jQuery("#ux_frm_feature_requests");
|
629 |
+
var url = "<?php echo tech_banker_url . "/feedbacks.php"; ?>";
|
630 |
+
var domain_url = "<?php echo site_url(); ?>";
|
631 |
+
frm_feature_request.validate({
|
632 |
+
rules: {
|
633 |
+
ux_txt_your_name: {
|
634 |
+
required: true
|
635 |
+
},
|
636 |
+
ux_txt_email_address: {
|
637 |
+
required: true,
|
638 |
+
email: true
|
639 |
+
},
|
640 |
+
ux_txtarea_feature_request: {
|
641 |
+
required: true
|
642 |
+
}
|
643 |
+
},
|
644 |
+
errorPlacement: function (error, element) {
|
645 |
+
},
|
646 |
+
highlight: function (element) {
|
647 |
+
jQuery(element).closest(".form-group").removeClass("has-success").addClass("has-error");
|
648 |
+
},
|
649 |
+
success: function (label, element) {
|
650 |
+
jQuery(element).closest(".form-group").removeClass("has-error").addClass("has-success");
|
651 |
+
},
|
652 |
+
submitHandler: function () {
|
653 |
+
feature_request_array.push(jQuery("#ux_txt_your_name").val(), jQuery("#ux_txt_email_address").val(), domain_url, jQuery("#ux_txtarea_feature_request").val());
|
654 |
+
overlay_loading_gallery_bank(<?php echo json_encode($gb_feature_requests_update); ?>);
|
655 |
+
jQuery.post(url, {
|
656 |
+
data: JSON.stringify(feature_request_array),
|
657 |
+
param: "gb_feature_requests"
|
658 |
+
},
|
659 |
+
function () {
|
660 |
+
setTimeout(function () {
|
661 |
+
remove_overlay_gallery_bank();
|
662 |
+
window.location.reload();
|
663 |
+
}, 3000);
|
664 |
+
});
|
665 |
}
|
666 |
+
});
|
667 |
+
var sidebar_load_interval = setInterval(load_sidebar_content_gallery_bank, 1000);
|
668 |
+
setTimeout(function () {
|
669 |
+
clearInterval(sidebar_load_interval);
|
670 |
+
}, 3000);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
671 |
<?php
|
672 |
break;
|
673 |
case "gallery_bank" :
|
includes/queries.php
CHANGED
@@ -71,10 +71,13 @@ if (!is_user_logged_in()) {
|
|
71 |
return $unserialize_complete_gallery_data;
|
72 |
}
|
73 |
$page_navigation_get_data = get_meta_value_gallery_bank("page_navigation_settings");
|
74 |
-
$check_gallery_bank_wizard = get_option("gallery-bank-
|
75 |
-
$check_url = $check_gallery_bank_wizard == "" ? "
|
76 |
if (isset($_GET["page"])) {
|
77 |
switch ($check_url) {
|
|
|
|
|
|
|
78 |
case "gb_add_gallery":
|
79 |
$gallery_id = isset($_REQUEST["gallery_id"]) ? intval($_REQUEST["gallery_id"]) : 0;
|
80 |
|
71 |
return $unserialize_complete_gallery_data;
|
72 |
}
|
73 |
$page_navigation_get_data = get_meta_value_gallery_bank("page_navigation_settings");
|
74 |
+
$check_gallery_bank_wizard = get_option("gallery-bank-welcome-page");
|
75 |
+
$check_url = $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : esc_attr($_GET["page"]);
|
76 |
if (isset($_GET["page"])) {
|
77 |
switch ($check_url) {
|
78 |
+
case "gb_welcome_gallery_bank":
|
79 |
+
update_option("gallery-bank-welcome-page", "open");
|
80 |
+
break;
|
81 |
case "gb_add_gallery":
|
82 |
$gallery_id = isset($_REQUEST["gallery_id"]) ? intval($_REQUEST["gallery_id"]) : 0;
|
83 |
|
includes/sidebar.php
CHANGED
@@ -28,10 +28,16 @@ if (!is_user_logged_in()) {
|
|
28 |
<div class="sidebar-menu-tech-banker">
|
29 |
<ul class="page-sidebar-menu-tech-banker" data-slide-speed="200">
|
30 |
<div class="sidebar-search-wrapper" style="padding:20px;text-align:center">
|
31 |
-
<a class="plugin-logo" href="<?php echo tech_banker_gallery_url
|
32 |
<img src="<?php echo GALLERY_BANK_PLUGIN_DIR_URL . "assets/global/img/logo.png"; ?>"/>
|
33 |
</a>
|
34 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
<li id="ux_li_galleries">
|
36 |
<a href="javascript:;">
|
37 |
<i class="icon-custom-picture"></i>
|
28 |
<div class="sidebar-menu-tech-banker">
|
29 |
<ul class="page-sidebar-menu-tech-banker" data-slide-speed="200">
|
30 |
<div class="sidebar-search-wrapper" style="padding:20px;text-align:center">
|
31 |
+
<a class="plugin-logo" href="<?php echo tech_banker_gallery_url;?>" target="_blank">
|
32 |
<img src="<?php echo GALLERY_BANK_PLUGIN_DIR_URL . "assets/global/img/logo.png"; ?>"/>
|
33 |
</a>
|
34 |
</div>
|
35 |
+
<li id="ux_li_welcome">
|
36 |
+
<a href="admin.php?page=gb_welcome_gallery_bank">
|
37 |
+
<i class=" icon-custom-present"></i>
|
38 |
+
<?php echo $gb_overview; ?>
|
39 |
+
</a>
|
40 |
+
</li>
|
41 |
<li id="ux_li_galleries">
|
42 |
<a href="javascript:;">
|
43 |
<i class="icon-custom-picture"></i>
|
includes/translations.php
CHANGED
@@ -215,7 +215,14 @@ if (!is_user_logged_in()) {
|
|
215 |
$gb_confirm_close = __("Are you sure you want to close without sending Translation Request?", "gallery-bank");
|
216 |
$gb_important_disclaimer = __("Important Disclaimer!", "gallery-bank");
|
217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
//Menus
|
|
|
219 |
$gallery_bank = __("Gallery Bank", "gallery-bank");
|
220 |
$gb_galleries = __("Galleries", "gallery-bank");
|
221 |
$gb_add_gallery = __("Add Gallery", "gallery-bank");
|
@@ -252,7 +259,7 @@ if (!is_user_logged_in()) {
|
|
252 |
$gb_shortcode_generator = __("Shortcodes", "gallery-bank");
|
253 |
$gb_other_setting = __("Other Settings", "gallery-bank");
|
254 |
$gb_roles_and_capabilities = __("Roles and Capabilities", "gallery-bank");
|
255 |
-
$gb_feature_requests = __("
|
256 |
$gb_system_information = __("System Information", "gallery-bank");
|
257 |
$gb_filters = __("Filters", "gallery-bank");
|
258 |
$gb_filter_settings = __("Filters Settings", "gallery-bank");
|
@@ -265,7 +272,7 @@ if (!is_user_logged_in()) {
|
|
265 |
$gb_pro_label = __(" Pro ", "gallery-bank");
|
266 |
$gb_premium_edition = __(" Premium Edition ", "gallery-bank");
|
267 |
$gb_premium_label = __(" Premium ", "gallery-bank");
|
268 |
-
$gb_documentation = __("
|
269 |
$gb_read_and_check = __(" or check our ", "gallery-bank");
|
270 |
$gb_demos_section = __("Online Demos", "gallery-bank");
|
271 |
$gb_role_capabilities_upgrade_message = __("By upgrading to Gallery Bank Pro, you can set Roles and Capabilities for your plugin. You can restrict access to selected roles only", "gallery-bank");
|
@@ -279,7 +286,7 @@ if (!is_user_logged_in()) {
|
|
279 |
$gb_general_settings_upgrade_message = __("By upgrading to Gallery Bank Pro, you can split your Gallery across multiple pages with pagination, load paginated images via AJAX, ability to sort images, lazy loading and much more!", "gallery-bank");
|
280 |
$gb_shortcodes_upgrade_message = __("By upgrading to Gallery Bank Pro, you can add different Shortcodes to your Page/Post to display galleries in different views such as Thumbnail Layout, Masonry Layout, Slideshow Layout, Image Browser Layout, Justified Grid Layout, Blog Style Layout, Compact Album Layout, Extended Album Layout.", "");
|
281 |
$gb_click_here_to_upgrade = __("Click here to Upgrade", "gallery-bank");
|
282 |
-
$gb_upgrade_need_help = __("
|
283 |
$gb_untitled = __("Untitled Gallery", "gallery-bank");
|
284 |
$gb_enable = __("Enable", "gallery-bank");
|
285 |
$gb_disable = __("Disable", "gallery-bank");
|
215 |
$gb_confirm_close = __("Are you sure you want to close without sending Translation Request?", "gallery-bank");
|
216 |
$gb_important_disclaimer = __("Important Disclaimer!", "gallery-bank");
|
217 |
|
218 |
+
//overview
|
219 |
+
$gb_video_tutorials = __("Video Tutorials", "gallery-bank");
|
220 |
+
$gb_premium_editions = __("Premium Editions", "gallery-bank");
|
221 |
+
$gb_live_demos = __("Live Demos", "gallery-bank");
|
222 |
+
$gb_have_suggestions = __("Have Suggestion?", "gallery-bank");
|
223 |
+
|
224 |
//Menus
|
225 |
+
$gb_overview = __("Overview", "gallery-bank");
|
226 |
$gallery_bank = __("Gallery Bank", "gallery-bank");
|
227 |
$gb_galleries = __("Galleries", "gallery-bank");
|
228 |
$gb_add_gallery = __("Add Gallery", "gallery-bank");
|
259 |
$gb_shortcode_generator = __("Shortcodes", "gallery-bank");
|
260 |
$gb_other_setting = __("Other Settings", "gallery-bank");
|
261 |
$gb_roles_and_capabilities = __("Roles and Capabilities", "gallery-bank");
|
262 |
+
$gb_feature_requests = __("Suggestions/Problems", "gallery-bank");
|
263 |
$gb_system_information = __("System Information", "gallery-bank");
|
264 |
$gb_filters = __("Filters", "gallery-bank");
|
265 |
$gb_filter_settings = __("Filters Settings", "gallery-bank");
|
272 |
$gb_pro_label = __(" Pro ", "gallery-bank");
|
273 |
$gb_premium_edition = __(" Premium Edition ", "gallery-bank");
|
274 |
$gb_premium_label = __(" Premium ", "gallery-bank");
|
275 |
+
$gb_documentation = __("Full Features", "gallery-bank");
|
276 |
$gb_read_and_check = __(" or check our ", "gallery-bank");
|
277 |
$gb_demos_section = __("Online Demos", "gallery-bank");
|
278 |
$gb_role_capabilities_upgrade_message = __("By upgrading to Gallery Bank Pro, you can set Roles and Capabilities for your plugin. You can restrict access to selected roles only", "gallery-bank");
|
286 |
$gb_general_settings_upgrade_message = __("By upgrading to Gallery Bank Pro, you can split your Gallery across multiple pages with pagination, load paginated images via AJAX, ability to sort images, lazy loading and much more!", "gallery-bank");
|
287 |
$gb_shortcodes_upgrade_message = __("By upgrading to Gallery Bank Pro, you can add different Shortcodes to your Page/Post to display galleries in different views such as Thumbnail Layout, Masonry Layout, Slideshow Layout, Image Browser Layout, Justified Grid Layout, Blog Style Layout, Compact Album Layout, Extended Album Layout.", "");
|
288 |
$gb_click_here_to_upgrade = __("Click here to Upgrade", "gallery-bank");
|
289 |
+
$gb_upgrade_need_help = __("Know about ", "gallery-bank");
|
290 |
$gb_untitled = __("Untitled Gallery", "gallery-bank");
|
291 |
$gb_enable = __("Enable", "gallery-bank");
|
292 |
$gb_disable = __("Disable", "gallery-bank");
|
lib/action-library.php
CHANGED
@@ -82,58 +82,7 @@ if (!is_user_logged_in()) {
|
|
82 |
$obj_dbHelper_gallery_bank = new dbHelper_gallery_bank();
|
83 |
$obj_image_process_gallery_bank = new image_process_gallery_bank();
|
84 |
switch (esc_attr($_REQUEST["param"])) {
|
85 |
-
case "wizard_gallery_bank":
|
86 |
-
if (wp_verify_nonce(isset($_REQUEST["_wp_nonce"]) ? esc_attr($_REQUEST["_wp_nonce"]) : "", "gallery_bank_check_status")) {
|
87 |
-
$type = isset($_REQUEST["type"]) ? esc_attr($_REQUEST["type"]) : "";
|
88 |
-
update_option("gallery-bank-wizard-set-up", $type);
|
89 |
-
if ($type == "opt_in") {
|
90 |
-
$plugin_info_gallery_bank = new plugin_info_gallery_bank();
|
91 |
|
92 |
-
global $wp_version;
|
93 |
-
$url = tech_banker_stats_url . "/wp-admin/admin-ajax.php";
|
94 |
-
|
95 |
-
$theme_details = array();
|
96 |
-
if ($wp_version >= 3.4) {
|
97 |
-
$active_theme = wp_get_theme();
|
98 |
-
$theme_details["theme_name"] = strip_tags($active_theme->Name);
|
99 |
-
$theme_details["theme_version"] = strip_tags($active_theme->Version);
|
100 |
-
$theme_details["author_url"] = strip_tags($active_theme->{"Author URI"});
|
101 |
-
}
|
102 |
-
$plugin_stat_data = array();
|
103 |
-
$plugin_stat_data["plugin_slug"] = "gallery-bank";
|
104 |
-
$plugin_stat_data["type"] = "standard_edition";
|
105 |
-
$plugin_stat_data["version_number"] = gallery_bank_wizard_version_number;
|
106 |
-
$plugin_stat_data["status"] = $type;
|
107 |
-
$plugin_stat_data["event"] = "activate";
|
108 |
-
$plugin_stat_data["domain_url"] = site_url();
|
109 |
-
$plugin_stat_data["wp_language"] = defined("WPLANG") && WPLANG ? WPLANG : get_locale();
|
110 |
-
$plugin_stat_data["email"] = get_option("admin_email");
|
111 |
-
$plugin_stat_data["wp_version"] = $wp_version;
|
112 |
-
$plugin_stat_data["php_version"] = esc_html(phpversion());
|
113 |
-
$plugin_stat_data["mysql_version"] = $wpdb->db_version();
|
114 |
-
$plugin_stat_data["max_input_vars"] = ini_get("max_input_vars");
|
115 |
-
$plugin_stat_data["operating_system"] = PHP_OS . " (" . PHP_INT_SIZE * 8 . ") BIT";
|
116 |
-
$plugin_stat_data["php_memory_limit"] = ini_get("memory_limit") ? ini_get("memory_limit") : "N/A";
|
117 |
-
$plugin_stat_data["extensions"] = get_loaded_extensions();
|
118 |
-
$plugin_stat_data["plugins"] = $plugin_info_gallery_bank->get_plugin_info_gallery_bank();
|
119 |
-
$plugin_stat_data["themes"] = $theme_details;
|
120 |
-
$response = wp_safe_remote_post($url, array
|
121 |
-
(
|
122 |
-
"method" => "POST",
|
123 |
-
"timeout" => 45,
|
124 |
-
"redirection" => 5,
|
125 |
-
"httpversion" => "1.0",
|
126 |
-
"blocking" => true,
|
127 |
-
"headers" => array(),
|
128 |
-
"body" => array("data" => serialize($plugin_stat_data), "site_id" => get_option("gb_tech_banker_site_id") != "" ? get_option("gb_tech_banker_site_id") : "", "action" => "plugin_analysis_data")
|
129 |
-
));
|
130 |
-
|
131 |
-
if (!is_wp_error($response)) {
|
132 |
-
$response["body"] != "" ? update_option("gb_tech_banker_site_id", $response["body"]) : "";
|
133 |
-
}
|
134 |
-
}
|
135 |
-
}
|
136 |
-
break;
|
137 |
case "gallery_bank_upload_images":
|
138 |
if (wp_verify_nonce((isset($_REQUEST["_wp_nonce"]) ? esc_attr($_REQUEST["_wp_nonce"]) : ""), "gallery_upload_images_nonce")) {
|
139 |
$gallery_id = isset($_REQUEST["gallery_id"]) ? intval($_REQUEST["gallery_id"]) : 0;
|
82 |
$obj_dbHelper_gallery_bank = new dbHelper_gallery_bank();
|
83 |
$obj_image_process_gallery_bank = new image_process_gallery_bank();
|
84 |
switch (esc_attr($_REQUEST["param"])) {
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
case "gallery_bank_upload_images":
|
87 |
if (wp_verify_nonce((isset($_REQUEST["_wp_nonce"]) ? esc_attr($_REQUEST["_wp_nonce"]) : ""), "gallery_upload_images_nonce")) {
|
88 |
$gallery_id = isset($_REQUEST["gallery_id"]) ? intval($_REQUEST["gallery_id"]) : 0;
|
lib/admin-bar-menu.php
CHANGED
@@ -70,6 +70,13 @@ if (!is_user_logged_in()) {
|
|
70 |
"title" => "<img style=\"width:16px; height:16px; vertical-align:middle; margin-right:3px;\" src=" . GALLERY_BANK_PLUGIN_DIR_URL . "assets/global/img/icon.png" . "> " . $gallery_bank,
|
71 |
"href" => admin_url("admin.php?page=gallery_bank"),
|
72 |
));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
|
74 |
$wp_admin_bar->add_menu(array
|
75 |
(
|
70 |
"title" => "<img style=\"width:16px; height:16px; vertical-align:middle; margin-right:3px;\" src=" . GALLERY_BANK_PLUGIN_DIR_URL . "assets/global/img/icon.png" . "> " . $gallery_bank,
|
71 |
"href" => admin_url("admin.php?page=gallery_bank"),
|
72 |
));
|
73 |
+
$wp_admin_bar->add_menu(array
|
74 |
+
(
|
75 |
+
"parent" => "gallery_bank",
|
76 |
+
"id" => "gb_welcome",
|
77 |
+
"title" => $gb_overview,
|
78 |
+
"href" => admin_url("admin.php?page=gb_welcome_gallery_bank"),
|
79 |
+
));
|
80 |
|
81 |
$wp_admin_bar->add_menu(array
|
82 |
(
|
lib/sidebar-menu.php
CHANGED
@@ -110,83 +110,92 @@ if (!is_user_logged_in()) {
|
|
110 |
if (!defined("system_information_gallery_bank")) {
|
111 |
define("system_information_gallery_bank", "$full_control[10]");
|
112 |
}
|
113 |
-
$check_gallery_bank_wizard = get_option("gallery-bank-
|
114 |
if ($flag == "1") {
|
115 |
$icon = GALLERY_BANK_PLUGIN_DIR_URL . "assets/global/img/icon.png";
|
116 |
if ($check_gallery_bank_wizard) {
|
117 |
add_menu_page($gallery_bank, $gallery_bank, "read", "gallery_bank", "", $icon);
|
118 |
} else {
|
119 |
-
add_menu_page($gallery_bank, $gallery_bank, "read", "
|
120 |
-
|
121 |
-
|
122 |
-
add_submenu_page("gallery_bank", $
|
123 |
-
add_submenu_page("gallery_bank", $
|
124 |
-
add_submenu_page("gallery_bank", $
|
125 |
-
add_submenu_page("gallery_bank", $
|
126 |
-
add_submenu_page("gallery_bank", $
|
127 |
-
add_submenu_page("gallery_bank", $
|
128 |
-
add_submenu_page("gallery_bank", $
|
129 |
-
add_submenu_page("gallery_bank", $
|
130 |
-
add_submenu_page("gallery_bank", $
|
131 |
-
add_submenu_page("gallery_bank", $
|
132 |
-
add_submenu_page("gallery_bank", $
|
133 |
-
add_submenu_page("gallery_bank", $gb_upgrade, $gb_upgrade, "read", "gb_upgrade", $check_gallery_bank_wizard == "" ? "gb_wizard_gallery_bank" : "gb_upgrade");
|
134 |
|
135 |
-
add_submenu_page($gb_galleries, $
|
136 |
-
add_submenu_page($gb_galleries, $
|
|
|
137 |
|
138 |
-
add_submenu_page($gb_albums, $gb_add_album, "", "read", "gb_add_album", $check_gallery_bank_wizard == "" ? "
|
139 |
-
add_submenu_page($gb_albums, $gb_sort_albums, "", "read", "gb_sort_albums", $check_gallery_bank_wizard == "" ? "
|
140 |
|
141 |
-
add_submenu_page($gb_tags, $gb_add_tag, "", "read", "gb_add_tag", $check_gallery_bank_wizard == "" ? "
|
142 |
-
add_submenu_page($gb_tags, $gb_manage_tags, "", "read", "gb_manage_tags", $check_gallery_bank_wizard == "" ? "
|
143 |
|
144 |
-
add_submenu_page($gb_layout_settings, $gb_thumbnail_layout, "", "read", "gb_thumbnail_layout", $check_gallery_bank_wizard == "" ? "
|
145 |
-
add_submenu_page($gb_layout_settings, $gb_masonry_layout, "", "read", "gb_masonry_layout", $check_gallery_bank_wizard == "" ? "
|
146 |
-
add_submenu_page($gb_layout_settings, $gb_slideshow_layout, "", "read", "gb_slideshow_layout", $check_gallery_bank_wizard == "" ? "
|
147 |
-
add_submenu_page($gb_layout_settings, $gb_image_browser_layout, "", "read", "gb_image_browser_layout", $check_gallery_bank_wizard == "" ? "
|
148 |
-
add_submenu_page($gb_layout_settings, $gb_justified_grid_layout, "", "read", "gb_justified_grid_layout", $check_gallery_bank_wizard == "" ? "
|
149 |
-
add_submenu_page($gb_layout_settings, $gb_blog_style_layout, "", "read", "gb_blog_style_layout", $check_gallery_bank_wizard == "" ? "
|
150 |
-
add_submenu_page($gb_layout_settings, $gb_compact_album_layout, "", "read", "gb_compact_album_layout", $check_gallery_bank_wizard == "" ? "
|
151 |
-
add_submenu_page($gb_layout_settings, $gb_extended_album_layout, "", "read", "gb_extended_album_layout", $check_gallery_bank_wizard == "" ? "
|
152 |
-
add_submenu_page($gb_layout_settings, $gb_custom_css, "", "read", "gb_custom_css", $check_gallery_bank_wizard == "" ? "
|
153 |
|
154 |
-
add_submenu_page($gb_lightboxes, $gb_fancy_box, "", "read", "gb_fancy_box", $check_gallery_bank_wizard == "" ? "
|
155 |
-
add_submenu_page($gb_lightboxes, $gb_color_box, "", "read", "gb_color_box", $check_gallery_bank_wizard == "" ? "
|
156 |
-
add_submenu_page($gb_lightboxes, $gb_foo_box_free_edition, "", "read", "gb_foo_box_free_edition", $check_gallery_bank_wizard == "" ? "
|
157 |
-
add_submenu_page($gb_lightboxes, $gb_nivo_lightbox, "", "read", "gb_nivo_lightbox", $check_gallery_bank_wizard == "" ? "
|
158 |
-
add_submenu_page($gb_lightboxes, $gb_lightcase, "", "read", "gb_lightcase", $check_gallery_bank_wizard == "" ? "
|
159 |
|
160 |
-
add_submenu_page($gb_general_settings, $gb_global_options, "", "read", "gb_global_options", $check_gallery_bank_wizard == "" ? "
|
161 |
-
add_submenu_page($gb_general_settings, $gb_lazy_load_settings, "", "read", "gb_lazy_load_settings", $check_gallery_bank_wizard == "" ? "
|
162 |
-
add_submenu_page($gb_general_settings, $gb_filter_settings, "", "read", "gb_filter_settings", $check_gallery_bank_wizard == "" ? "
|
163 |
-
add_submenu_page($gb_general_settings, $gb_order_by_settings, "", "read", "gb_order_by_settings", $check_gallery_bank_wizard == "" ? "
|
164 |
-
add_submenu_page($gb_general_settings, $gb_search_box_settings, "", "read", "gb_search_box_settings", $check_gallery_bank_wizard == "" ? "
|
165 |
-
add_submenu_page($gb_general_settings, $gb_page_navigation, "", "read", "gb_page_navigation", $check_gallery_bank_wizard == "" ? "
|
166 |
-
add_submenu_page($gb_general_settings, $gb_watermark_settings, "", "read", "gb_watermark_settings", $check_gallery_bank_wizard == "" ? "
|
167 |
-
add_submenu_page($gb_general_settings, $gb_advertisement, "", "read", "gb_advertisement", $check_gallery_bank_wizard == "" ? "
|
168 |
|
169 |
-
add_submenu_page($gb_shortcode_generator, $gb_thumbnail_layout, "", "read", "gb_thumbnail_layout_shortcode", $check_gallery_bank_wizard == "" ? "
|
170 |
-
add_submenu_page($gb_shortcode_generator, $gb_masonry_layout, "", "read", "gb_masonry_layout_shortcode", $check_gallery_bank_wizard == "" ? "
|
171 |
-
add_submenu_page($gb_shortcode_generator, $gb_slideshow_layout, "", "read", "gb_slideshow_layout_shortcode", $check_gallery_bank_wizard == "" ? "
|
172 |
-
add_submenu_page($gb_shortcode_generator, $gb_image_browser_layout, "", "read", "gb_image_browser_layout_shortcode", $check_gallery_bank_wizard == "" ? "
|
173 |
-
add_submenu_page($gb_shortcode_generator, $gb_justified_grid_layout, "", "read", "gb_justified_grid_layout_shortcode", $check_gallery_bank_wizard == "" ? "
|
174 |
-
add_submenu_page($gb_shortcode_generator, $gb_blog_style_layout, "", "read", "gb_blog_style_layout_shortcode", $check_gallery_bank_wizard == "" ? "
|
175 |
}
|
176 |
|
177 |
/*
|
178 |
-
Function Name:
|
179 |
Parameters: No
|
180 |
-
Description: This function is used for creating
|
181 |
Created On: 13-04-2017 10:22
|
182 |
Created By: Tech Banker Team
|
183 |
*/
|
184 |
-
function
|
185 |
global $wpdb;
|
186 |
$user_role_permission = get_users_capabilities_gallery_bank();
|
187 |
if (file_exists(GALLERY_BANK_PLUGIN_DIR_PATH . "includes/translations.php")) {
|
188 |
include GALLERY_BANK_PLUGIN_DIR_PATH . "includes/translations.php";
|
189 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
if (file_exists(GALLERY_BANK_PLUGIN_DIR_PATH . "views/wizard/wizard.php")) {
|
191 |
include_once GALLERY_BANK_PLUGIN_DIR_PATH . "views/wizard/wizard.php";
|
192 |
}
|
110 |
if (!defined("system_information_gallery_bank")) {
|
111 |
define("system_information_gallery_bank", "$full_control[10]");
|
112 |
}
|
113 |
+
$check_gallery_bank_wizard = get_option("gallery-bank-welcome-page");
|
114 |
if ($flag == "1") {
|
115 |
$icon = GALLERY_BANK_PLUGIN_DIR_URL . "assets/global/img/icon.png";
|
116 |
if ($check_gallery_bank_wizard) {
|
117 |
add_menu_page($gallery_bank, $gallery_bank, "read", "gallery_bank", "", $icon);
|
118 |
} else {
|
119 |
+
add_menu_page($gallery_bank, $gallery_bank, "read", "gb_welcome_gallery_bank", "", plugins_url("assets/global/img/icon.png", dirName(__FILE__)));
|
120 |
+
}
|
121 |
+
add_submenu_page("gallery_bank", $gb_galleries, $gb_galleries, "read", "gallery_bank", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gallery_bank");
|
122 |
+
add_submenu_page("gallery_bank", $gb_albums, $gb_albums, "read", "gb_manage_albums", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_manage_albums");
|
123 |
+
add_submenu_page("gallery_bank", $gb_tags, $gb_tags, "read", "gb_manage_tags", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_manage_tags");
|
124 |
+
add_submenu_page("gallery_bank", $gb_layout_settings, $gb_layout_settings, "read", "gb_thumbnail_layout", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_thumbnail_layout");
|
125 |
+
add_submenu_page("gallery_bank", $gb_lightboxes, $gb_lightboxes, "read", "gb_lightcase", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_lightcase");
|
126 |
+
add_submenu_page("gallery_bank", $gb_general_settings, $gb_general_settings, "read", "gb_global_options", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_global_options");
|
127 |
+
add_submenu_page("gallery_bank", $gb_shortcode_generator, $gb_shortcode_generator, "read", "gb_thumbnail_layout_shortcode", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_thumbnail_layout_shortcode");
|
128 |
+
add_submenu_page("gallery_bank", $gb_other_setting, $gb_other_setting, "read", "gb_other_settings", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_other_settings");
|
129 |
+
add_submenu_page("gallery_bank", $gb_roles_and_capabilities, $gb_roles_and_capabilities, "read", "gb_roles_and_capabilities", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_roles_and_capabilities");
|
130 |
+
add_submenu_page("gallery_bank", $gb_feature_requests, $gb_feature_requests, "read", "gb_feature_requests", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_feature_requests");
|
131 |
+
add_submenu_page("gallery_bank", $gb_system_information, $gb_system_information, "read", "gb_system_information", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_system_information");
|
132 |
+
add_submenu_page("gallery_bank", $gb_upgrade, $gb_upgrade, "read", "gb_upgrade", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_upgrade");
|
|
|
133 |
|
134 |
+
add_submenu_page($gb_galleries, $gb_overview, "", "read", "gb_welcome_gallery_bank", "gb_welcome_gallery_bank");
|
135 |
+
add_submenu_page($gb_galleries, $gb_add_gallery, "", "read", "gb_add_gallery", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_add_gallery");
|
136 |
+
add_submenu_page($gb_galleries, $gb_sort_galleries, "", "read", "gb_sort_galleries", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_sort_galleries");
|
137 |
|
138 |
+
add_submenu_page($gb_albums, $gb_add_album, "", "read", "gb_add_album", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_add_album");
|
139 |
+
add_submenu_page($gb_albums, $gb_sort_albums, "", "read", "gb_sort_albums", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_sort_albums");
|
140 |
|
141 |
+
add_submenu_page($gb_tags, $gb_add_tag, "", "read", "gb_add_tag", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_add_tag");
|
142 |
+
add_submenu_page($gb_tags, $gb_manage_tags, "", "read", "gb_manage_tags", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_manage_tags");
|
143 |
|
144 |
+
add_submenu_page($gb_layout_settings, $gb_thumbnail_layout, "", "read", "gb_thumbnail_layout", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_thumbnail_layout");
|
145 |
+
add_submenu_page($gb_layout_settings, $gb_masonry_layout, "", "read", "gb_masonry_layout", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_masonry_layout");
|
146 |
+
add_submenu_page($gb_layout_settings, $gb_slideshow_layout, "", "read", "gb_slideshow_layout", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_slideshow_layout");
|
147 |
+
add_submenu_page($gb_layout_settings, $gb_image_browser_layout, "", "read", "gb_image_browser_layout", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_image_browser_layout");
|
148 |
+
add_submenu_page($gb_layout_settings, $gb_justified_grid_layout, "", "read", "gb_justified_grid_layout", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_justified_grid_layout");
|
149 |
+
add_submenu_page($gb_layout_settings, $gb_blog_style_layout, "", "read", "gb_blog_style_layout", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_blog_style_layout");
|
150 |
+
add_submenu_page($gb_layout_settings, $gb_compact_album_layout, "", "read", "gb_compact_album_layout", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_compact_album_layout");
|
151 |
+
add_submenu_page($gb_layout_settings, $gb_extended_album_layout, "", "read", "gb_extended_album_layout", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_extended_album_layout");
|
152 |
+
add_submenu_page($gb_layout_settings, $gb_custom_css, "", "read", "gb_custom_css", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_custom_css");
|
153 |
|
154 |
+
add_submenu_page($gb_lightboxes, $gb_fancy_box, "", "read", "gb_fancy_box", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_fancy_box");
|
155 |
+
add_submenu_page($gb_lightboxes, $gb_color_box, "", "read", "gb_color_box", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_color_box");
|
156 |
+
add_submenu_page($gb_lightboxes, $gb_foo_box_free_edition, "", "read", "gb_foo_box_free_edition", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_foo_box_free_edition");
|
157 |
+
add_submenu_page($gb_lightboxes, $gb_nivo_lightbox, "", "read", "gb_nivo_lightbox", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_nivo_lightbox");
|
158 |
+
add_submenu_page($gb_lightboxes, $gb_lightcase, "", "read", "gb_lightcase", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_lightcase");
|
159 |
|
160 |
+
add_submenu_page($gb_general_settings, $gb_global_options, "", "read", "gb_global_options", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_global_options");
|
161 |
+
add_submenu_page($gb_general_settings, $gb_lazy_load_settings, "", "read", "gb_lazy_load_settings", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_lazy_load_settings");
|
162 |
+
add_submenu_page($gb_general_settings, $gb_filter_settings, "", "read", "gb_filter_settings", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_filter_settings");
|
163 |
+
add_submenu_page($gb_general_settings, $gb_order_by_settings, "", "read", "gb_order_by_settings", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_order_by_settings");
|
164 |
+
add_submenu_page($gb_general_settings, $gb_search_box_settings, "", "read", "gb_search_box_settings", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_search_box_settings");
|
165 |
+
add_submenu_page($gb_general_settings, $gb_page_navigation, "", "read", "gb_page_navigation", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_page_navigation");
|
166 |
+
add_submenu_page($gb_general_settings, $gb_watermark_settings, "", "read", "gb_watermark_settings", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_watermark_settings");
|
167 |
+
add_submenu_page($gb_general_settings, $gb_advertisement, "", "read", "gb_advertisement", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_advertisement");
|
168 |
|
169 |
+
add_submenu_page($gb_shortcode_generator, $gb_thumbnail_layout, "", "read", "gb_thumbnail_layout_shortcode", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_thumbnail_layout_shortcode");
|
170 |
+
add_submenu_page($gb_shortcode_generator, $gb_masonry_layout, "", "read", "gb_masonry_layout_shortcode", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_masonry_layout_shortcode");
|
171 |
+
add_submenu_page($gb_shortcode_generator, $gb_slideshow_layout, "", "read", "gb_slideshow_layout_shortcode", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_slideshow_layout_shortcode");
|
172 |
+
add_submenu_page($gb_shortcode_generator, $gb_image_browser_layout, "", "read", "gb_image_browser_layout_shortcode", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_image_browser_layout_shortcode");
|
173 |
+
add_submenu_page($gb_shortcode_generator, $gb_justified_grid_layout, "", "read", "gb_justified_grid_layout_shortcode", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_justified_grid_layout_shortcode");
|
174 |
+
add_submenu_page($gb_shortcode_generator, $gb_blog_style_layout, "", "read", "gb_blog_style_layout_shortcode", $check_gallery_bank_wizard == "" ? "gb_welcome_gallery_bank" : "gb_blog_style_layout_shortcode");
|
175 |
}
|
176 |
|
177 |
/*
|
178 |
+
Function Name: gb_welcome_gallery_bank
|
179 |
Parameters: No
|
180 |
+
Description: This function is used for creating gb_welcome_gallery_bank menu.
|
181 |
Created On: 13-04-2017 10:22
|
182 |
Created By: Tech Banker Team
|
183 |
*/
|
184 |
+
function gb_welcome_gallery_bank() {
|
185 |
global $wpdb;
|
186 |
$user_role_permission = get_users_capabilities_gallery_bank();
|
187 |
if (file_exists(GALLERY_BANK_PLUGIN_DIR_PATH . "includes/translations.php")) {
|
188 |
include GALLERY_BANK_PLUGIN_DIR_PATH . "includes/translations.php";
|
189 |
}
|
190 |
+
if (file_exists(GALLERY_BANK_PLUGIN_DIR_PATH . "includes/queries.php")) {
|
191 |
+
include_once GALLERY_BANK_PLUGIN_DIR_PATH . "includes/queries.php";
|
192 |
+
}
|
193 |
+
if (file_exists(GALLERY_BANK_PLUGIN_DIR_PATH . "includes/header.php")) {
|
194 |
+
include_once GALLERY_BANK_PLUGIN_DIR_PATH . "includes/header.php";
|
195 |
+
}
|
196 |
+
if (file_exists(GALLERY_BANK_PLUGIN_DIR_PATH . "includes/sidebar.php")) {
|
197 |
+
include_once GALLERY_BANK_PLUGIN_DIR_PATH . "includes/sidebar.php";
|
198 |
+
}
|
199 |
if (file_exists(GALLERY_BANK_PLUGIN_DIR_PATH . "views/wizard/wizard.php")) {
|
200 |
include_once GALLERY_BANK_PLUGIN_DIR_PATH . "views/wizard/wizard.php";
|
201 |
}
|
readme.txt
CHANGED
@@ -38,82 +38,82 @@ Gallery Bank has been downloaded over 25,00,000 times. Smart photographers, desi
|
|
38 |
|
39 |
> ### WordPress Image Gallery Plugin - Live Demos
|
40 |
|
41 |
-
* **[Thumbnail Layout - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-title-description-thumbnail-layout/)**
|
42 |
-
* **[Thumbnail Layout with WordPress Gallery Lightbox - Gallery Wordpress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lightboxes-thumbnail-layout/)**
|
43 |
-
* **[Thumbnail Layout with Pagination - Photo Gallery WordPress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-pagination-thumbnail-layout/)**
|
44 |
-
* **[Thumbnail Layout with Lazy Load - Best WordPress Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-thumbnail-layout/)**
|
45 |
-
* **[Thumbnail Layout with Filters](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-filters-thumbnail-layout/)**
|
46 |
-
* **[Thumbnail Layout with Order By](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-thumbnail-layout/)**
|
47 |
-
* **[Thumbnail Layout with Search Box](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-thumbnail-layout/)**
|
48 |
-
* **[Thumbnail Layout with Watermarking](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-watermark-thumbnail-layout/)**
|
49 |
-
* **[Thumbnail Layout with Animation Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-animation-thumbnail-layout/)**
|
50 |
-
* **[Thumbnail Layout with Special Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-special-effects-thumbnail-layout/)**
|
51 |
-
* **[Masonry Gallery - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-title-description-masonry-layout/)**
|
52 |
-
* **[Masonry Gallery with WordPress Gallery Lightbox - Gallery Wordpress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lightboxes-masonry-layout/)**
|
53 |
-
* **[Masonry Gallery with Pagination - Photo Gallery WordPress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-pagination-masonry-layout/)**
|
54 |
-
* **[Masonry Gallery with Lazy Load - Best WordPress Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-masonry-layout/)**
|
55 |
-
* **[Masonry Gallery with Filters](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-filters-masonry-layout/)**
|
56 |
-
* **[Masonry Gallery with Order By](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-masonry-layout/)**
|
57 |
-
* **[Masonry Gallery with Search Box](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-masonry-layout/)**
|
58 |
-
* **[Masonry Gallery with Watermark](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-watermark-masonry-layout/)**
|
59 |
-
* **[Masonry Gallery with Animation Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-animation-masonry-layout/)**
|
60 |
-
* **[Masonry Gallery with Special Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-special-effects-masonry-layout/)**
|
61 |
-
* **[Slideshow Gallery - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-title-description-slideshow-layout/)**
|
62 |
-
* **[Slideshow Gallery with Lazy Load - Best WordPress Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-slideshow-layout/)**
|
63 |
-
* **[Slideshow Gallery with Filters](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-filters-slideshow-layout/)**
|
64 |
-
* **[Slideshow Gallery with Order By](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-slideshow-layout/)**
|
65 |
-
* **[Slideshow Gallery with Search Box](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-slideshow-layout/)**
|
66 |
-
* **[Slideshow Gallery with Watermarking](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-watermark-slideshow-layout/)**
|
67 |
-
* **[Slideshow Gallery with Animation Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-animation-slideshow-layout/)**
|
68 |
-
* **[Slideshow Gallery with Special Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-special-effects-slideshow-layout/)**
|
69 |
-
* **[Image Browser Layout - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-title-description-image-browser-layout/)**
|
70 |
-
* **[Image Browser Layout with Lazy Load - Best WordPress Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-image-browser-layout/)**
|
71 |
-
* **[Image Browser Layout with Filters](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-filters-image-browser-layout/)**
|
72 |
-
* **[Image Browser Layout with Order By](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-image-browser-layout/)**
|
73 |
-
* **[Image Browser Layout with Search Box](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-image-browser-layout/)**
|
74 |
-
* **[Image Browser Layout with Watermarking](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-watermark-image-browser-layout/)**
|
75 |
-
* **[Image Browser Layout with Animation Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-animation-image-browser-layout/)**
|
76 |
-
* **[Image Browser Layout with Special Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-special-effects-image-browser-layout/)**
|
77 |
-
* **[Justified Grid Layout - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-title-description-justified-grid-layout/)**
|
78 |
-
* **[Justified Grid Layout with WordPress Gallery Lightbox - Gallery Wordpress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lightboxes-justified-grid-layout/)**
|
79 |
-
* **[Justified Grid Layout with Pagination - Photo Gallery WordPress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-pagination-justified-grid-layout/)**
|
80 |
-
* **[Justified Grid with Lazy Load - Best WordPress Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-justified-grid-layout/)**
|
81 |
-
* **[Justified Grid with Filters](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-filters-justified-grid-layout/)**
|
82 |
-
* **[Justified Grid with Order By](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-justified-grid-layout/)**
|
83 |
-
* **[Justified Grid with Search Box](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-justified-grid-layout/)**
|
84 |
-
* **[Justified Grid Layout with Watermarking](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-watermark-justified-grid-layout/)**
|
85 |
-
* **[Justified Grid Layout with Animation Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-animation-justified-grid-layout/)**
|
86 |
-
* **[Justified Grid Layout with Special Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-special-effects-justified-grid-layout/)**
|
87 |
-
* **[Blog Style Layout - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-title-description-blog-style-layout/)**
|
88 |
-
* **[Blog Style Layout with WordPress Gallery Lightbox - Gallery Wordpress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lightboxes-blog-style-layout/)**
|
89 |
-
* **[Blog Style Layout with Pagination - Photo Gallery WordPress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-pagination-blog-style-layout/)**
|
90 |
-
* **[Blog Style Layout with Lazy Load - Best WordPress Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-blog-style-layout/)**
|
91 |
-
* **[Blog Style Layout with Filters](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-filters-blog-style-layout/)**
|
92 |
-
* **[Blog Style Layout with Order By](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-blog-style-layout/)**
|
93 |
-
* **[Blog Style Layout with Search Box](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-blog-style-layout/)**
|
94 |
-
* **[Blog Style Layout with Watermarking](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-watermark-blog-style-layout/)**
|
95 |
-
* **[Blog Style Layout with Animation Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-animation-blog-style-layout/)**
|
96 |
-
* **[Blog Style Layout with Special Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-special-effects-blog-style-layout/)**
|
97 |
-
* **[Photo Albums using Compact Album Layout - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-title-description-thumbnail-layout/)**
|
98 |
-
* **[Compact Album Layout with WordPress Gallery Lightbox - Gallery Wordpress Plugin](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-lightboxes-thumbnail-layout/)**
|
99 |
-
* **[Compact Album Layout with Pagination - Photo Gallery WordPress Plugin](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-pagination-thumbnail-layout/)**
|
100 |
-
* **[Compact Album Layout with Lazy Load - Best WordPress Gallery Plugin](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-lazy-load-thumbnail-layout/)**
|
101 |
-
* **[Compact Album Layout with Filters](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-filters-thumbnail-layout/)**
|
102 |
-
* **[Compact Album Layout with Order By](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-order-by-thumbnail-layout/)**
|
103 |
-
* **[Compact Album Layout with Search Box](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-search-box-thumbnail-layout/)**
|
104 |
-
* **[Compact Album Layout with Watermarking](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-watermark-thumbnail-layout/)**
|
105 |
-
* **[Compact Album Layout with Animation Effects](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-animation-thumbnail-layout/)**
|
106 |
-
* **[Compact Album Layout with Special Effects](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-special-effects-thumbnail-layout/)**
|
107 |
-
* **[Photo Albums using Extended Album Layout - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-title-description-thumbnail-layout/)**
|
108 |
-
* **[Extended Album Layout with WordPress Gallery Lightbox - Gallery Wordpress Plugin](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-lightboxes-thumbnail-layout/)**
|
109 |
-
* **[Extended Album Layout with Pagination - Photo Gallery WordPress Plugin](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-pagination-thumbnail-layout/)**
|
110 |
-
* **[Extended Album Layout with Lazy Load - Best WordPress Gallery Plugin](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-lazy-load-thumbnail-layout/)**
|
111 |
-
* **[Extended Album Layout with Filters](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-filters-thumbnail-layout/)**
|
112 |
-
* **[Extended Album Layout with Order By](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-order-by-thumbnail-layout/)**
|
113 |
-
* **[Extended Album Layout with Search Box](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-search-box-thumbnail-layout/)**
|
114 |
-
* **[Extended Album Layout with Watermarking](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-watermark-thumbnail-layout/)**
|
115 |
-
* **[Extended Album Layout with Animation Effects](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-animation-thumbnail-layout/)**
|
116 |
-
* **[Extended Album Layout Special Effects](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-special-effects-thumbnail-layout/)**
|
117 |
|
118 |
**[Upgrade to Premium Editions - Best Wordpress Gallery Plugin](https://gallery-bank.tech-banker.com/)**
|
119 |
|
@@ -224,6 +224,22 @@ Lightbox will appear when you click on the image and it will help you show more
|
|
224 |
|
225 |
Gallery Widget lets you easily embed shortcode from the shortcode wizard and beautify your online gallery website with awesome galleries and albums.
|
226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
== Frequently Asked Questions ==
|
228 |
|
229 |
= How to Install? =
|
@@ -2241,6 +2257,7 @@ The following set of lists are the minimum requirements for installing Gallery B
|
|
2241 |
* WordPress 3.3+
|
2242 |
* PHP 5.x
|
2243 |
* MySQL 5.x
|
|
|
2244 |
= Using The WordPress Dashboard =
|
2245 |
|
2246 |
1. Navigate to the 'Add New' in the Plugins Dashboard
|
@@ -2263,7 +2280,7 @@ The following set of lists are the minimum requirements for installing Gallery B
|
|
2263 |
3. Upload the `gallery-bank` directory to the `/wp-content/plugins/` directory
|
2264 |
4. Activate the Plugin in the Plugin's dashboard
|
2265 |
|
2266 |
-
|
2267 |
|
2268 |
1. Go to your Downloads folder and locate the folder with the Plugin.
|
2269 |
2. Right-click on the folder and select Compress.
|
@@ -2364,6 +2381,12 @@ The following set of lists are the minimum requirements for installing Gallery B
|
|
2364 |
|
2365 |
== Changelog ==
|
2366 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2367 |
= 4.0.5 =
|
2368 |
|
2369 |
* FIX: Global Options Bugs
|
38 |
|
39 |
> ### WordPress Image Gallery Plugin - Live Demos
|
40 |
|
41 |
+
> * **[Thumbnail Layout - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-title-description-thumbnail-layout/)**
|
42 |
+
> * **[Thumbnail Layout with WordPress Gallery Lightbox - Gallery Wordpress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lightboxes-thumbnail-layout/)**
|
43 |
+
> * **[Thumbnail Layout with Pagination - Photo Gallery WordPress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-pagination-thumbnail-layout/)**
|
44 |
+
> * **[Thumbnail Layout with Lazy Load - Best WordPress Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-thumbnail-layout/)**
|
45 |
+
> * **[Thumbnail Layout with Filters](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-filters-thumbnail-layout/)**
|
46 |
+
> * **[Thumbnail Layout with Order By](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-thumbnail-layout/)**
|
47 |
+
> * **[Thumbnail Layout with Search Box](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-thumbnail-layout/)**
|
48 |
+
> * **[Thumbnail Layout with Watermarking](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-watermark-thumbnail-layout/)**
|
49 |
+
> * **[Thumbnail Layout with Animation Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-animation-thumbnail-layout/)**
|
50 |
+
> * **[Thumbnail Layout with Special Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-special-effects-thumbnail-layout/)**
|
51 |
+
> * **[Masonry Gallery - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-title-description-masonry-layout/)**
|
52 |
+
> * **[Masonry Gallery with WordPress Gallery Lightbox - Gallery Wordpress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lightboxes-masonry-layout/)**
|
53 |
+
> * **[Masonry Gallery with Pagination - Photo Gallery WordPress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-pagination-masonry-layout/)**
|
54 |
+
> * **[Masonry Gallery with Lazy Load - Best WordPress Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-masonry-layout/)**
|
55 |
+
> * **[Masonry Gallery with Filters](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-filters-masonry-layout/)**
|
56 |
+
> * **[Masonry Gallery with Order By](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-masonry-layout/)**
|
57 |
+
> * **[Masonry Gallery with Search Box](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-masonry-layout/)**
|
58 |
+
> * **[Masonry Gallery with Watermark](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-watermark-masonry-layout/)**
|
59 |
+
> * **[Masonry Gallery with Animation Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-animation-masonry-layout/)**
|
60 |
+
> * **[Masonry Gallery with Special Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-special-effects-masonry-layout/)**
|
61 |
+
> * **[Slideshow Gallery - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-title-description-slideshow-layout/)**
|
62 |
+
> * **[Slideshow Gallery with Lazy Load - Best WordPress Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-slideshow-layout/)**
|
63 |
+
> * **[Slideshow Gallery with Filters](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-filters-slideshow-layout/)**
|
64 |
+
> * **[Slideshow Gallery with Order By](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-slideshow-layout/)**
|
65 |
+
> * **[Slideshow Gallery with Search Box](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-slideshow-layout/)**
|
66 |
+
> * **[Slideshow Gallery with Watermarking](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-watermark-slideshow-layout/)**
|
67 |
+
> * **[Slideshow Gallery with Animation Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-animation-slideshow-layout/)**
|
68 |
+
> * **[Slideshow Gallery with Special Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-special-effects-slideshow-layout/)**
|
69 |
+
> * **[Image Browser Layout - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-title-description-image-browser-layout/)**
|
70 |
+
> * **[Image Browser Layout with Lazy Load - Best WordPress Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-image-browser-layout/)**
|
71 |
+
> * **[Image Browser Layout with Filters](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-filters-image-browser-layout/)**
|
72 |
+
> * **[Image Browser Layout with Order By](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-image-browser-layout/)**
|
73 |
+
> * **[Image Browser Layout with Search Box](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-image-browser-layout/)**
|
74 |
+
> * **[Image Browser Layout with Watermarking](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-watermark-image-browser-layout/)**
|
75 |
+
> * **[Image Browser Layout with Animation Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-animation-image-browser-layout/)**
|
76 |
+
> * **[Image Browser Layout with Special Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-special-effects-image-browser-layout/)**
|
77 |
+
> * **[Justified Grid Layout - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-title-description-justified-grid-layout/)**
|
78 |
+
> * **[Justified Grid Layout with WordPress Gallery Lightbox - Gallery Wordpress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lightboxes-justified-grid-layout/)**
|
79 |
+
> * **[Justified Grid Layout with Pagination - Photo Gallery WordPress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-pagination-justified-grid-layout/)**
|
80 |
+
> * **[Justified Grid with Lazy Load - Best WordPress Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-justified-grid-layout/)**
|
81 |
+
> * **[Justified Grid with Filters](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-filters-justified-grid-layout/)**
|
82 |
+
> * **[Justified Grid with Order By](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-justified-grid-layout/)**
|
83 |
+
> * **[Justified Grid with Search Box](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-justified-grid-layout/)**
|
84 |
+
> * **[Justified Grid Layout with Watermarking](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-watermark-justified-grid-layout/)**
|
85 |
+
> * **[Justified Grid Layout with Animation Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-animation-justified-grid-layout/)**
|
86 |
+
> * **[Justified Grid Layout with Special Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-special-effects-justified-grid-layout/)**
|
87 |
+
> * **[Blog Style Layout - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-title-description-blog-style-layout/)**
|
88 |
+
> * **[Blog Style Layout with WordPress Gallery Lightbox - Gallery Wordpress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lightboxes-blog-style-layout/)**
|
89 |
+
> * **[Blog Style Layout with Pagination - Photo Gallery WordPress Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-pagination-blog-style-layout/)**
|
90 |
+
> * **[Blog Style Layout with Lazy Load - Best WordPress Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-blog-style-layout/)**
|
91 |
+
> * **[Blog Style Layout with Filters](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-filters-blog-style-layout/)**
|
92 |
+
> * **[Blog Style Layout with Order By](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-blog-style-layout/)**
|
93 |
+
> * **[Blog Style Layout with Search Box](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-blog-style-layout/)**
|
94 |
+
> * **[Blog Style Layout with Watermarking](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-watermark-blog-style-layout/)**
|
95 |
+
> * **[Blog Style Layout with Animation Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-animation-blog-style-layout/)**
|
96 |
+
> * **[Blog Style Layout with Special Effects](https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-special-effects-blog-style-layout/)**
|
97 |
+
> * **[Photo Albums using Compact Album Layout - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-title-description-thumbnail-layout/)**
|
98 |
+
> * **[Compact Album Layout with WordPress Gallery Lightbox - Gallery Wordpress Plugin](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-lightboxes-thumbnail-layout/)**
|
99 |
+
> * **[Compact Album Layout with Pagination - Photo Gallery WordPress Plugin](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-pagination-thumbnail-layout/)**
|
100 |
+
> * **[Compact Album Layout with Lazy Load - Best WordPress Gallery Plugin](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-lazy-load-thumbnail-layout/)**
|
101 |
+
> * **[Compact Album Layout with Filters](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-filters-thumbnail-layout/)**
|
102 |
+
> * **[Compact Album Layout with Order By](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-order-by-thumbnail-layout/)**
|
103 |
+
> * **[Compact Album Layout with Search Box](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-search-box-thumbnail-layout/)**
|
104 |
+
> * **[Compact Album Layout with Watermarking](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-watermark-thumbnail-layout/)**
|
105 |
+
> * **[Compact Album Layout with Animation Effects](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-animation-thumbnail-layout/)**
|
106 |
+
> * **[Compact Album Layout with Special Effects](http://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-special-effects-thumbnail-layout/)**
|
107 |
+
> * **[Photo Albums using Extended Album Layout - WordPress Image Gallery Plugin](https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-title-description-thumbnail-layout/)**
|
108 |
+
> * **[Extended Album Layout with WordPress Gallery Lightbox - Gallery Wordpress Plugin](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-lightboxes-thumbnail-layout/)**
|
109 |
+
> * **[Extended Album Layout with Pagination - Photo Gallery WordPress Plugin](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-pagination-thumbnail-layout/)**
|
110 |
+
> * **[Extended Album Layout with Lazy Load - Best WordPress Gallery Plugin](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-lazy-load-thumbnail-layout/)**
|
111 |
+
> * **[Extended Album Layout with Filters](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-filters-thumbnail-layout/)**
|
112 |
+
> * **[Extended Album Layout with Order By](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-order-by-thumbnail-layout/)**
|
113 |
+
> * **[Extended Album Layout with Search Box](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-search-box-thumbnail-layout/)**
|
114 |
+
> * **[Extended Album Layout with Watermarking](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-watermark-thumbnail-layout/)**
|
115 |
+
> * **[Extended Album Layout with Animation Effects](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-animation-thumbnail-layout/)**
|
116 |
+
> * **[Extended Album Layout Special Effects](http://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-special-effects-thumbnail-layout/)**
|
117 |
|
118 |
**[Upgrade to Premium Editions - Best Wordpress Gallery Plugin](https://gallery-bank.tech-banker.com/)**
|
119 |
|
224 |
|
225 |
Gallery Widget lets you easily embed shortcode from the shortcode wizard and beautify your online gallery website with awesome galleries and albums.
|
226 |
|
227 |
+
### Translate this Plugin
|
228 |
+
|
229 |
+
If you can help us with translation to some other language please contact us at [support@tech-banker.com](mailto:support@tech-banker.com)
|
230 |
+
|
231 |
+
We�re really appreciate it!
|
232 |
+
|
233 |
+
### Technical Support
|
234 |
+
|
235 |
+
Dear users, our plugins are available for free download. If you have any questions or recommendations regarding the functionality of our plugins, please feel free to contact us.
|
236 |
+
|
237 |
+
If you think, that you found a bug in our plugin or have any question contact us at [support@tech-banker.com](mailto:support@tech-banker.com)
|
238 |
+
|
239 |
+
Please use the support forum on WordPress.org only for this free Standard version of the plugin.
|
240 |
+
|
241 |
+
For the Premium Edition there is a separate support package available. Please do not use the WordPress.org support forum for questions about the Premium Edition.
|
242 |
+
|
243 |
== Frequently Asked Questions ==
|
244 |
|
245 |
= How to Install? =
|
2257 |
* WordPress 3.3+
|
2258 |
* PHP 5.x
|
2259 |
* MySQL 5.x
|
2260 |
+
|
2261 |
= Using The WordPress Dashboard =
|
2262 |
|
2263 |
1. Navigate to the 'Add New' in the Plugins Dashboard
|
2280 |
3. Upload the `gallery-bank` directory to the `/wp-content/plugins/` directory
|
2281 |
4. Activate the Plugin in the Plugin's dashboard
|
2282 |
|
2283 |
+
= For Mac Users =
|
2284 |
|
2285 |
1. Go to your Downloads folder and locate the folder with the Plugin.
|
2286 |
2. Right-click on the folder and select Compress.
|
2381 |
|
2382 |
== Changelog ==
|
2383 |
|
2384 |
+
= 4.0.6 =
|
2385 |
+
|
2386 |
+
* TWEAK: Wizard Section Renoved Completely
|
2387 |
+
* TWEAK: Overview Section Added
|
2388 |
+
* TWEAK: New Links Added
|
2389 |
+
|
2390 |
= 4.0.5 =
|
2391 |
|
2392 |
* FIX: Global Options Bugs
|
uninstall.php
CHANGED
@@ -37,7 +37,7 @@ if (!is_user_logged_in()) {
|
|
37 |
delete_option("gallery-bank-api-details");
|
38 |
delete_option("external_updates-gallery-bank");
|
39 |
delete_option("foobox-free");
|
40 |
-
delete_option("gallery-bank-
|
41 |
}
|
42 |
}
|
43 |
}
|
37 |
delete_option("gallery-bank-api-details");
|
38 |
delete_option("external_updates-gallery-bank");
|
39 |
delete_option("foobox-free");
|
40 |
+
delete_option("gallery-bank-welcome-page");
|
41 |
}
|
42 |
}
|
43 |
}
|
user-views/lib/helper.php
CHANGED
@@ -92,21 +92,21 @@ if (!class_exists("user_helper_gallery_bank")) {
|
|
92 |
Created By: Tech Banker Team
|
93 |
*/
|
94 |
public static function font_families_gallery_bank($font_families) {
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
}
|
107 |
}
|
108 |
-
|
109 |
-
|
|
|
110 |
/*
|
111 |
Function Name: unique_font_families
|
112 |
Parameters: Yes($unique_font_families,$import_font_family)
|
@@ -115,18 +115,18 @@ if (!class_exists("user_helper_gallery_bank")) {
|
|
115 |
Created By: Tech Banker Team
|
116 |
*/
|
117 |
public static function unique_font_families_gallery_bank($unique_font_families) {
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
}
|
128 |
}
|
129 |
-
|
130 |
-
|
|
|
131 |
}
|
132 |
}
|
92 |
Created By: Tech Banker Team
|
93 |
*/
|
94 |
public static function font_families_gallery_bank($font_families) {
|
95 |
+
foreach ($font_families as $font_family) {
|
96 |
+
if ($font_family != "inherit") {
|
97 |
+
if (strpos($font_family, ":") != false) {
|
98 |
+
$position = strpos($font_family, ":");
|
99 |
+
$font_style = (substr($font_family, $position + 4, 6) == "italic") ? "\r\n\tfont-style: italic !important;" : "";
|
100 |
+
$font_family_name[] = "'" . substr($font_family, 0, $position) . "'" . " !important;\r\n\tfont-weight: " . substr($font_family, $position + 1, 3) . " !important;" . $font_style;
|
101 |
+
} else {
|
102 |
+
$font_family_name[] = (strpos($font_family, "&") != false) ? "'" . strstr($font_family, "&", 1) . "' !important;" : "'" . $font_family . "' !important;";
|
103 |
+
}
|
104 |
+
} else {
|
105 |
+
$font_family_name[] = "inherit";
|
|
|
106 |
}
|
107 |
+
}
|
108 |
+
return $font_family_name;
|
109 |
+
}
|
110 |
/*
|
111 |
Function Name: unique_font_families
|
112 |
Parameters: Yes($unique_font_families,$import_font_family)
|
115 |
Created By: Tech Banker Team
|
116 |
*/
|
117 |
public static function unique_font_families_gallery_bank($unique_font_families) {
|
118 |
+
$import_font_family = "";
|
119 |
+
foreach ($unique_font_families as $font_family) {
|
120 |
+
if ($font_family != "inherit") {
|
121 |
+
$font_family = urlencode($font_family);
|
122 |
+
if (is_ssl()) {
|
123 |
+
$import_font_family .= "@import url('https://fonts.googleapis.com/css?family=" . $font_family . "');\r\n";
|
124 |
+
} else {
|
125 |
+
$import_font_family .= "@import url('http://fonts.googleapis.com/css?family=" . $font_family . "');\r\n";
|
126 |
+
}
|
|
|
127 |
}
|
128 |
+
}
|
129 |
+
return $import_font_family;
|
130 |
+
}
|
131 |
}
|
132 |
}
|
views/albums/add-album.php
CHANGED
@@ -54,7 +54,7 @@ if (!is_user_logged_in()) {
|
|
54 |
<?php echo $gb_add_album; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
@@ -77,7 +77,7 @@ if (!is_user_logged_in()) {
|
|
77 |
<p>
|
78 |
<?php echo $gb_albums_upgrade_message; ?>
|
79 |
</p>
|
80 |
-
<a href="
|
81 |
</div>
|
82 |
<div class="form-actions">
|
83 |
<div class="pull-right">
|
54 |
<?php echo $gb_add_album; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
77 |
<p>
|
78 |
<?php echo $gb_albums_upgrade_message; ?>
|
79 |
</p>
|
80 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
81 |
</div>
|
82 |
<div class="form-actions">
|
83 |
<div class="pull-right">
|
views/albums/manage-albums.php
CHANGED
@@ -54,7 +54,7 @@ if (!is_user_logged_in()) {
|
|
54 |
<?php echo $gb_manage_albums; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
@@ -78,7 +78,7 @@ if (!is_user_logged_in()) {
|
|
78 |
<p>
|
79 |
<?php echo $gb_albums_upgrade_message; ?>
|
80 |
</p>
|
81 |
-
<a href="
|
82 |
</div>
|
83 |
<div class="table-top-margin">
|
84 |
<select name="ux_ddl_manage_albums" id="ux_ddl_manage_albums">
|
54 |
<?php echo $gb_manage_albums; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
78 |
<p>
|
79 |
<?php echo $gb_albums_upgrade_message; ?>
|
80 |
</p>
|
81 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
82 |
</div>
|
83 |
<div class="table-top-margin">
|
84 |
<select name="ux_ddl_manage_albums" id="ux_ddl_manage_albums">
|
views/albums/sort-albums.php
CHANGED
@@ -54,7 +54,7 @@ if (!is_user_logged_in()) {
|
|
54 |
<?php echo $gb_sort_albums; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
@@ -77,7 +77,7 @@ if (!is_user_logged_in()) {
|
|
77 |
<p>
|
78 |
<?php echo $gb_albums_upgrade_message; ?>
|
79 |
</p>
|
80 |
-
<a href="
|
81 |
</div>
|
82 |
<div class="form-actions">
|
83 |
<div class="pull-right">
|
54 |
<?php echo $gb_sort_albums; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
77 |
<p>
|
78 |
<?php echo $gb_albums_upgrade_message; ?>
|
79 |
</p>
|
80 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
81 |
</div>
|
82 |
<div class="form-actions">
|
83 |
<div class="pull-right">
|
views/feature-requests/feature-requests.php
CHANGED
@@ -48,7 +48,7 @@ if (!is_user_logged_in()) {
|
|
48 |
<?php echo $gb_feature_requests; ?>
|
49 |
</div>
|
50 |
<p class="premium-editions">
|
51 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
52 |
</p>
|
53 |
</div>
|
54 |
<div class="portlet-body form">
|
48 |
<?php echo $gb_feature_requests; ?>
|
49 |
</div>
|
50 |
<p class="premium-editions">
|
51 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
52 |
</p>
|
53 |
</div>
|
54 |
<div class="portlet-body form">
|
views/galleries/add-gallery.php
CHANGED
@@ -76,7 +76,7 @@ if (!is_user_logged_in()) {
|
|
76 |
<?php echo isset($_REQUEST["mode"]) && esc_attr($_REQUEST["mode"]) == "edit" ? $gb_update_gallery : $gb_add_gallery; ?>
|
77 |
</div>
|
78 |
<p class="premium-editions">
|
79 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
80 |
</p>
|
81 |
</div>
|
82 |
<div class="portlet-body form">
|
@@ -99,7 +99,7 @@ if (!is_user_logged_in()) {
|
|
99 |
<p>
|
100 |
<?php echo $gb_galleries_upgrade_message; ?>
|
101 |
</p>
|
102 |
-
<a href="
|
103 |
</div>
|
104 |
<div class="form-actions">
|
105 |
<div class="pull-right">
|
76 |
<?php echo isset($_REQUEST["mode"]) && esc_attr($_REQUEST["mode"]) == "edit" ? $gb_update_gallery : $gb_add_gallery; ?>
|
77 |
</div>
|
78 |
<p class="premium-editions">
|
79 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
80 |
</p>
|
81 |
</div>
|
82 |
<div class="portlet-body form">
|
99 |
<p>
|
100 |
<?php echo $gb_galleries_upgrade_message; ?>
|
101 |
</p>
|
102 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
103 |
</div>
|
104 |
<div class="form-actions">
|
105 |
<div class="pull-right">
|
views/galleries/manage-galleries.php
CHANGED
@@ -55,7 +55,7 @@ if (!is_user_logged_in()) {
|
|
55 |
<?php echo $gb_manage_galleries; ?>
|
56 |
</div>
|
57 |
<p class="premium-editions">
|
58 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
59 |
</p>
|
60 |
</div>
|
61 |
<div class="portlet-body form">
|
@@ -78,7 +78,7 @@ if (!is_user_logged_in()) {
|
|
78 |
<p>
|
79 |
<?php echo $gb_galleries_upgrade_message; ?>
|
80 |
</p>
|
81 |
-
<a href="
|
82 |
</div>
|
83 |
<div class="table-top-margin">
|
84 |
<select name="ux_ddl_manage_galleries" id="ux_ddl_manage_galleries">
|
@@ -129,20 +129,20 @@ if (!is_user_logged_in()) {
|
|
129 |
</td>
|
130 |
<td class="custom-alternative custom-gallery-thumbnail" style="width:20%;">
|
131 |
<a href="admin.php?page=gb_add_gallery&gallery_id=<?php echo intval($row["meta_id"]); ?>&mode=edit">
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
</a>
|
147 |
<a href="admin.php?page=gb_add_gallery&gallery_id=<?php echo intval($row["meta_id"]); ?>&mode=edit">
|
148 |
<i class="icon-custom-note tooltips" data-original-title="<?php echo $gb_add_gallery_edit_tooltip; ?>" data-placement="right"></i>
|
55 |
<?php echo $gb_manage_galleries; ?>
|
56 |
</div>
|
57 |
<p class="premium-editions">
|
58 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
59 |
</p>
|
60 |
</div>
|
61 |
<div class="portlet-body form">
|
78 |
<p>
|
79 |
<?php echo $gb_galleries_upgrade_message; ?>
|
80 |
</p>
|
81 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
82 |
</div>
|
83 |
<div class="table-top-margin">
|
84 |
<select name="ux_ddl_manage_galleries" id="ux_ddl_manage_galleries">
|
129 |
</td>
|
130 |
<td class="custom-alternative custom-gallery-thumbnail" style="width:20%;">
|
131 |
<a href="admin.php?page=gb_add_gallery&gallery_id=<?php echo intval($row["meta_id"]); ?>&mode=edit">
|
132 |
+
<?php
|
133 |
+
if ($get_count_image == 0) {
|
134 |
+
?>
|
135 |
+
<label>
|
136 |
+
<img id="ux_gb_img" class="tech-banker-cover-image" src="<?php echo GALLERY_BANK_PLUGIN_DIR_URL . "/assets/admin/images/gallery-cover.png"; ?>">
|
137 |
+
</label>
|
138 |
+
<?php
|
139 |
+
} else {
|
140 |
+
?>
|
141 |
|
142 |
+
<img id="ux_gb_img" class="tech-banker-cover-image" src="<?php echo GALLERY_BANK_THUMBS_NON_CROPPED_URL . $row["gallery_cover_image"]; ?>">
|
143 |
+
<?php
|
144 |
+
}
|
145 |
+
?>
|
146 |
</a>
|
147 |
<a href="admin.php?page=gb_add_gallery&gallery_id=<?php echo intval($row["meta_id"]); ?>&mode=edit">
|
148 |
<i class="icon-custom-note tooltips" data-original-title="<?php echo $gb_add_gallery_edit_tooltip; ?>" data-placement="right"></i>
|
views/galleries/sort-galleries.php
CHANGED
@@ -55,7 +55,7 @@ if (!is_user_logged_in()) {
|
|
55 |
<?php echo $gb_sort_galleries; ?>
|
56 |
</div>
|
57 |
<p class="premium-editions">
|
58 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
59 |
</p>
|
60 |
</div>
|
61 |
<div class="portlet-body form">
|
@@ -78,7 +78,7 @@ if (!is_user_logged_in()) {
|
|
78 |
<p>
|
79 |
<?php echo $gb_galleries_upgrade_message; ?>
|
80 |
</p>
|
81 |
-
<a href="
|
82 |
</div>
|
83 |
<div class="form-actions">
|
84 |
<div class="pull-right">
|
55 |
<?php echo $gb_sort_galleries; ?>
|
56 |
</div>
|
57 |
<p class="premium-editions">
|
58 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
59 |
</p>
|
60 |
</div>
|
61 |
<div class="portlet-body form">
|
78 |
<p>
|
79 |
<?php echo $gb_galleries_upgrade_message; ?>
|
80 |
</p>
|
81 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
82 |
</div>
|
83 |
<div class="form-actions">
|
84 |
<div class="pull-right">
|
views/general-settings/advertisement.php
CHANGED
@@ -57,7 +57,7 @@ if (!is_user_logged_in()) {
|
|
57 |
<?php echo $gb_advertisement; ?>
|
58 |
</div>
|
59 |
<p class="premium-editions">
|
60 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
61 |
</p>
|
62 |
</div>
|
63 |
<div class="portlet-body form">
|
@@ -80,7 +80,7 @@ if (!is_user_logged_in()) {
|
|
80 |
<p>
|
81 |
<?php echo $gb_general_settings_upgrade_message; ?>
|
82 |
</p>
|
83 |
-
<a href="
|
84 |
</div>
|
85 |
<div class="form-actions">
|
86 |
<div class="pull-right">
|
57 |
<?php echo $gb_advertisement; ?>
|
58 |
</div>
|
59 |
<p class="premium-editions">
|
60 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
61 |
</p>
|
62 |
</div>
|
63 |
<div class="portlet-body form">
|
80 |
<p>
|
81 |
<?php echo $gb_general_settings_upgrade_message; ?>
|
82 |
</p>
|
83 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
84 |
</div>
|
85 |
<div class="form-actions">
|
86 |
<div class="pull-right">
|
views/general-settings/filters-settings.php
CHANGED
@@ -60,7 +60,7 @@ if (!is_user_logged_in()) {
|
|
60 |
<?php echo $gb_filter_settings; ?>
|
61 |
</div>
|
62 |
<p class="premium-editions">
|
63 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
64 |
</p>
|
65 |
</div>
|
66 |
<div class="portlet-body form">
|
@@ -83,7 +83,7 @@ if (!is_user_logged_in()) {
|
|
83 |
<p>
|
84 |
<?php echo $gb_general_settings_upgrade_message; ?>
|
85 |
</p>
|
86 |
-
<a href="
|
87 |
</div>
|
88 |
<div class="form-actions">
|
89 |
<div class="pull-right">
|
60 |
<?php echo $gb_filter_settings; ?>
|
61 |
</div>
|
62 |
<p class="premium-editions">
|
63 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
64 |
</p>
|
65 |
</div>
|
66 |
<div class="portlet-body form">
|
83 |
<p>
|
84 |
<?php echo $gb_general_settings_upgrade_message; ?>
|
85 |
</p>
|
86 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
87 |
</div>
|
88 |
<div class="form-actions">
|
89 |
<div class="pull-right">
|
views/general-settings/global-options.php
CHANGED
@@ -57,7 +57,7 @@ if (!is_user_logged_in()) {
|
|
57 |
<?php echo $gb_global_options; ?>
|
58 |
</div>
|
59 |
<p class="premium-editions">
|
60 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
61 |
</p>
|
62 |
</div>
|
63 |
<div class="portlet-body form">
|
57 |
<?php echo $gb_global_options; ?>
|
58 |
</div>
|
59 |
<p class="premium-editions">
|
60 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
61 |
</p>
|
62 |
</div>
|
63 |
<div class="portlet-body form">
|
views/general-settings/lazy-load-settings.php
CHANGED
@@ -56,7 +56,7 @@ if (!is_user_logged_in()) {
|
|
56 |
<?php echo $gb_lazy_load_settings; ?>
|
57 |
</div>
|
58 |
<p class="premium-editions">
|
59 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
60 |
</p>
|
61 |
</div>
|
62 |
<div class="portlet-body form">
|
@@ -79,7 +79,7 @@ if (!is_user_logged_in()) {
|
|
79 |
<p>
|
80 |
<?php echo $gb_general_settings_upgrade_message; ?>
|
81 |
</p>
|
82 |
-
<a href="
|
83 |
</div>
|
84 |
<div class="form-actions">
|
85 |
<div class="pull-right">
|
56 |
<?php echo $gb_lazy_load_settings; ?>
|
57 |
</div>
|
58 |
<p class="premium-editions">
|
59 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
60 |
</p>
|
61 |
</div>
|
62 |
<div class="portlet-body form">
|
79 |
<p>
|
80 |
<?php echo $gb_general_settings_upgrade_message; ?>
|
81 |
</p>
|
82 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
83 |
</div>
|
84 |
<div class="form-actions">
|
85 |
<div class="pull-right">
|
views/general-settings/order-by-settings.php
CHANGED
@@ -60,7 +60,7 @@ if (!is_user_logged_in()) {
|
|
60 |
<?php echo $gb_order_by_settings; ?>
|
61 |
</div>
|
62 |
<p class="premium-editions">
|
63 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
64 |
</p>
|
65 |
</div>
|
66 |
<div class="portlet-body form">
|
@@ -83,7 +83,7 @@ if (!is_user_logged_in()) {
|
|
83 |
<p>
|
84 |
<?php echo $gb_general_settings_upgrade_message; ?>
|
85 |
</p>
|
86 |
-
<a href="
|
87 |
</div>
|
88 |
<div class="form-actions">
|
89 |
<div class="pull-right">
|
60 |
<?php echo $gb_order_by_settings; ?>
|
61 |
</div>
|
62 |
<p class="premium-editions">
|
63 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
64 |
</p>
|
65 |
</div>
|
66 |
<div class="portlet-body form">
|
83 |
<p>
|
84 |
<?php echo $gb_general_settings_upgrade_message; ?>
|
85 |
</p>
|
86 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
87 |
</div>
|
88 |
<div class="form-actions">
|
89 |
<div class="pull-right">
|
views/general-settings/page-navigation.php
CHANGED
@@ -59,7 +59,7 @@ if (!is_user_logged_in()) {
|
|
59 |
<?php echo $gb_page_navigation; ?>
|
60 |
</div>
|
61 |
<p class="premium-editions">
|
62 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
63 |
</p>
|
64 |
</div>
|
65 |
<div class="portlet-body form">
|
@@ -82,7 +82,7 @@ if (!is_user_logged_in()) {
|
|
82 |
<p>
|
83 |
<?php echo $gb_general_settings_upgrade_message; ?>
|
84 |
</p>
|
85 |
-
<a href="
|
86 |
</div>
|
87 |
<div class="form-actions">
|
88 |
<div class="pull-right">
|
59 |
<?php echo $gb_page_navigation; ?>
|
60 |
</div>
|
61 |
<p class="premium-editions">
|
62 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
63 |
</p>
|
64 |
</div>
|
65 |
<div class="portlet-body form">
|
82 |
<p>
|
83 |
<?php echo $gb_general_settings_upgrade_message; ?>
|
84 |
</p>
|
85 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
86 |
</div>
|
87 |
<div class="form-actions">
|
88 |
<div class="pull-right">
|
views/general-settings/search-box-settings.php
CHANGED
@@ -60,7 +60,7 @@ if (!is_user_logged_in()) {
|
|
60 |
<?php echo $gb_search_box_settings; ?>
|
61 |
</div>
|
62 |
<p class="premium-editions">
|
63 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
64 |
</p>
|
65 |
</div>
|
66 |
<div class="portlet-body form">
|
@@ -83,7 +83,7 @@ if (!is_user_logged_in()) {
|
|
83 |
<p>
|
84 |
<?php echo $gb_general_settings_upgrade_message; ?>
|
85 |
</p>
|
86 |
-
<a href="
|
87 |
</div>
|
88 |
<div class="form-actions">
|
89 |
<div class="pull-right">
|
60 |
<?php echo $gb_search_box_settings; ?>
|
61 |
</div>
|
62 |
<p class="premium-editions">
|
63 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
64 |
</p>
|
65 |
</div>
|
66 |
<div class="portlet-body form">
|
83 |
<p>
|
84 |
<?php echo $gb_general_settings_upgrade_message; ?>
|
85 |
</p>
|
86 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
87 |
</div>
|
88 |
<div class="form-actions">
|
89 |
<div class="pull-right">
|
views/general-settings/watermark-settings.php
CHANGED
@@ -58,7 +58,7 @@ if (!is_user_logged_in()) {
|
|
58 |
<?php echo $gb_watermark_settings; ?>
|
59 |
</div>
|
60 |
<p class="premium-editions">
|
61 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
62 |
</p>
|
63 |
</div>
|
64 |
<div class="portlet-body form">
|
@@ -81,7 +81,7 @@ if (!is_user_logged_in()) {
|
|
81 |
<p>
|
82 |
<?php echo $gb_general_settings_upgrade_message; ?>
|
83 |
</p>
|
84 |
-
<a href="
|
85 |
</div>
|
86 |
<div class="form-actions">
|
87 |
<div class="pull-right">
|
58 |
<?php echo $gb_watermark_settings; ?>
|
59 |
</div>
|
60 |
<p class="premium-editions">
|
61 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
62 |
</p>
|
63 |
</div>
|
64 |
<div class="portlet-body form">
|
81 |
<p>
|
82 |
<?php echo $gb_general_settings_upgrade_message; ?>
|
83 |
</p>
|
84 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
85 |
</div>
|
86 |
<div class="form-actions">
|
87 |
<div class="pull-right">
|
views/layout-settings/blog-style-layout.php
CHANGED
@@ -71,7 +71,7 @@ if (!is_user_logged_in()) {
|
|
71 |
<?php echo $gb_blog_style_layout; ?>
|
72 |
</div>
|
73 |
<p class="premium-editions">
|
74 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
75 |
</p>
|
76 |
</div>
|
77 |
<div class="portlet-body form">
|
@@ -94,7 +94,7 @@ if (!is_user_logged_in()) {
|
|
94 |
<p>
|
95 |
<?php echo $gb_layouts_upgrade_message; ?>
|
96 |
</p>
|
97 |
-
<a href="
|
98 |
</div>
|
99 |
<div class="form-actions">
|
100 |
<div class="pull-right">
|
71 |
<?php echo $gb_blog_style_layout; ?>
|
72 |
</div>
|
73 |
<p class="premium-editions">
|
74 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
75 |
</p>
|
76 |
</div>
|
77 |
<div class="portlet-body form">
|
94 |
<p>
|
95 |
<?php echo $gb_layouts_upgrade_message; ?>
|
96 |
</p>
|
97 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
98 |
</div>
|
99 |
<div class="form-actions">
|
100 |
<div class="pull-right">
|
views/layout-settings/compact-album-layout.php
CHANGED
@@ -83,7 +83,7 @@ if (!is_user_logged_in()) {
|
|
83 |
<?php echo $gb_compact_album_layout; ?>
|
84 |
</div>
|
85 |
<p class="premium-editions">
|
86 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
87 |
</p>
|
88 |
</div>
|
89 |
<div class="portlet-body form">
|
@@ -106,7 +106,7 @@ if (!is_user_logged_in()) {
|
|
106 |
<p>
|
107 |
<?php echo $gb_layouts_upgrade_message; ?>
|
108 |
</p>
|
109 |
-
<a href="
|
110 |
</div>
|
111 |
<div class="form-actions">
|
112 |
<div class="pull-right">
|
83 |
<?php echo $gb_compact_album_layout; ?>
|
84 |
</div>
|
85 |
<p class="premium-editions">
|
86 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
87 |
</p>
|
88 |
</div>
|
89 |
<div class="portlet-body form">
|
106 |
<p>
|
107 |
<?php echo $gb_layouts_upgrade_message; ?>
|
108 |
</p>
|
109 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
110 |
</div>
|
111 |
<div class="form-actions">
|
112 |
<div class="pull-right">
|
views/layout-settings/custom-css.php
CHANGED
@@ -55,7 +55,7 @@ if (!is_user_logged_in()) {
|
|
55 |
<?php echo $gb_custom_css; ?>
|
56 |
</div>
|
57 |
<p class="premium-editions">
|
58 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
59 |
</p>
|
60 |
</div>
|
61 |
<div class="portlet-body form">
|
55 |
<?php echo $gb_custom_css; ?>
|
56 |
</div>
|
57 |
<p class="premium-editions">
|
58 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
59 |
</p>
|
60 |
</div>
|
61 |
<div class="portlet-body form">
|
views/layout-settings/extended-album-layout.php
CHANGED
@@ -83,7 +83,7 @@ if (!is_user_logged_in()) {
|
|
83 |
<?php echo $gb_extended_album_layout; ?>
|
84 |
</div>
|
85 |
<p class="premium-editions">
|
86 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
87 |
</p>
|
88 |
</div>
|
89 |
<div class="portlet-body form">
|
@@ -106,7 +106,7 @@ if (!is_user_logged_in()) {
|
|
106 |
<p>
|
107 |
<?php echo $gb_layouts_upgrade_message; ?>
|
108 |
</p>
|
109 |
-
<a href="
|
110 |
</div>
|
111 |
<div class="form-actions">
|
112 |
<div class="pull-right">
|
83 |
<?php echo $gb_extended_album_layout; ?>
|
84 |
</div>
|
85 |
<p class="premium-editions">
|
86 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
87 |
</p>
|
88 |
</div>
|
89 |
<div class="portlet-body form">
|
106 |
<p>
|
107 |
<?php echo $gb_layouts_upgrade_message; ?>
|
108 |
</p>
|
109 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
110 |
</div>
|
111 |
<div class="form-actions">
|
112 |
<div class="pull-right">
|
views/layout-settings/image-browser-layout.php
CHANGED
@@ -75,7 +75,7 @@ if (!is_user_logged_in()) {
|
|
75 |
<?php echo $gb_image_browser_layout; ?>
|
76 |
</div>
|
77 |
<p class="premium-editions">
|
78 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
79 |
</p>
|
80 |
</div>
|
81 |
<div class="portlet-body form">
|
@@ -98,7 +98,7 @@ if (!is_user_logged_in()) {
|
|
98 |
<p>
|
99 |
<?php echo $gb_layouts_upgrade_message; ?>
|
100 |
</p>
|
101 |
-
<a href="
|
102 |
</div>
|
103 |
<div class="form-actions">
|
104 |
<div class="pull-right">
|
75 |
<?php echo $gb_image_browser_layout; ?>
|
76 |
</div>
|
77 |
<p class="premium-editions">
|
78 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
79 |
</p>
|
80 |
</div>
|
81 |
<div class="portlet-body form">
|
98 |
<p>
|
99 |
<?php echo $gb_layouts_upgrade_message; ?>
|
100 |
</p>
|
101 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
102 |
</div>
|
103 |
<div class="form-actions">
|
104 |
<div class="pull-right">
|
views/layout-settings/justified-grid-layout.php
CHANGED
@@ -71,7 +71,7 @@ if (!is_user_logged_in()) {
|
|
71 |
<?php echo $gb_justified_grid_layout; ?>
|
72 |
</div>
|
73 |
<p class="premium-editions">
|
74 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
75 |
</p>
|
76 |
</div>
|
77 |
<div class="portlet-body form">
|
@@ -94,7 +94,7 @@ if (!is_user_logged_in()) {
|
|
94 |
<p>
|
95 |
<?php echo $gb_layouts_upgrade_message; ?>
|
96 |
</p>
|
97 |
-
<a href="
|
98 |
</div>
|
99 |
<div class="form-actions">
|
100 |
<div class="pull-right">
|
71 |
<?php echo $gb_justified_grid_layout; ?>
|
72 |
</div>
|
73 |
<p class="premium-editions">
|
74 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
75 |
</p>
|
76 |
</div>
|
77 |
<div class="portlet-body form">
|
94 |
<p>
|
95 |
<?php echo $gb_layouts_upgrade_message; ?>
|
96 |
</p>
|
97 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
98 |
</div>
|
99 |
<div class="form-actions">
|
100 |
<div class="pull-right">
|
views/layout-settings/masonry-layout.php
CHANGED
@@ -73,7 +73,7 @@ if (!is_user_logged_in()) {
|
|
73 |
<?php echo $gb_masonry_layout; ?>
|
74 |
</div>
|
75 |
<p class="premium-editions">
|
76 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
77 |
</p>
|
78 |
</div>
|
79 |
<div class="portlet-body form">
|
@@ -96,7 +96,7 @@ if (!is_user_logged_in()) {
|
|
96 |
<p>
|
97 |
<?php echo $gb_layouts_upgrade_message; ?>
|
98 |
</p>
|
99 |
-
<a href="
|
100 |
</div>
|
101 |
<div class="form-actions">
|
102 |
<div class="pull-right">
|
73 |
<?php echo $gb_masonry_layout; ?>
|
74 |
</div>
|
75 |
<p class="premium-editions">
|
76 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
77 |
</p>
|
78 |
</div>
|
79 |
<div class="portlet-body form">
|
96 |
<p>
|
97 |
<?php echo $gb_layouts_upgrade_message; ?>
|
98 |
</p>
|
99 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
100 |
</div>
|
101 |
<div class="form-actions">
|
102 |
<div class="pull-right">
|
views/layout-settings/slideshow-layout.php
CHANGED
@@ -78,7 +78,7 @@ if (!is_user_logged_in()) {
|
|
78 |
<?php echo $gb_slideshow_layout; ?>
|
79 |
</div>
|
80 |
<p class="premium-editions">
|
81 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
82 |
</p>
|
83 |
</div>
|
84 |
<div class="portlet-body form">
|
@@ -101,7 +101,7 @@ if (!is_user_logged_in()) {
|
|
101 |
<p>
|
102 |
<?php echo $gb_layouts_upgrade_message; ?>
|
103 |
</p>
|
104 |
-
<a href="
|
105 |
</div>
|
106 |
<div class="form-actions">
|
107 |
<div class="pull-right">
|
78 |
<?php echo $gb_slideshow_layout; ?>
|
79 |
</div>
|
80 |
<p class="premium-editions">
|
81 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
82 |
</p>
|
83 |
</div>
|
84 |
<div class="portlet-body form">
|
101 |
<p>
|
102 |
<?php echo $gb_layouts_upgrade_message; ?>
|
103 |
</p>
|
104 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
105 |
</div>
|
106 |
<div class="form-actions">
|
107 |
<div class="pull-right">
|
views/layout-settings/thumbnail-layout.php
CHANGED
@@ -78,7 +78,7 @@ if (!is_user_logged_in()) {
|
|
78 |
<?php echo $gb_thumbnail_layout; ?>
|
79 |
</div>
|
80 |
<p class="premium-editions">
|
81 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
82 |
</p>
|
83 |
</div>
|
84 |
<div class="portlet-body form">
|
@@ -101,7 +101,7 @@ if (!is_user_logged_in()) {
|
|
101 |
<p>
|
102 |
<?php echo $gb_layouts_upgrade_message; ?>
|
103 |
</p>
|
104 |
-
<a href="
|
105 |
</div>
|
106 |
<div class="form-actions">
|
107 |
<div class="pull-right">
|
78 |
<?php echo $gb_thumbnail_layout; ?>
|
79 |
</div>
|
80 |
<p class="premium-editions">
|
81 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
82 |
</p>
|
83 |
</div>
|
84 |
<div class="portlet-body form">
|
101 |
<p>
|
102 |
<?php echo $gb_layouts_upgrade_message; ?>
|
103 |
</p>
|
104 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
105 |
</div>
|
106 |
<div class="form-actions">
|
107 |
<div class="pull-right">
|
views/lightboxes/color-box.php
CHANGED
@@ -62,7 +62,7 @@ if (!is_user_logged_in()) {
|
|
62 |
<?php echo $gb_color_box; ?>
|
63 |
</div>
|
64 |
<p class="premium-editions">
|
65 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
66 |
</p>
|
67 |
</div>
|
68 |
<div class="portlet-body form">
|
@@ -85,7 +85,7 @@ if (!is_user_logged_in()) {
|
|
85 |
<p>
|
86 |
<?php echo $gb_lightbox_upgrade_message; ?>
|
87 |
</p>
|
88 |
-
<a href="
|
89 |
</div>
|
90 |
<div class="form-actions">
|
91 |
<div class="pull-right">
|
62 |
<?php echo $gb_color_box; ?>
|
63 |
</div>
|
64 |
<p class="premium-editions">
|
65 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
66 |
</p>
|
67 |
</div>
|
68 |
<div class="portlet-body form">
|
85 |
<p>
|
86 |
<?php echo $gb_lightbox_upgrade_message; ?>
|
87 |
</p>
|
88 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
89 |
</div>
|
90 |
<div class="form-actions">
|
91 |
<div class="pull-right">
|
views/lightboxes/fancy-box.php
CHANGED
@@ -61,7 +61,7 @@ if (!is_user_logged_in()) {
|
|
61 |
<?php echo $gb_fancy_box; ?>
|
62 |
</div>
|
63 |
<p class="premium-editions">
|
64 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
65 |
</p>
|
66 |
</div>
|
67 |
<div class="portlet-body form">
|
@@ -84,7 +84,7 @@ if (!is_user_logged_in()) {
|
|
84 |
<p>
|
85 |
<?php echo $gb_lightbox_upgrade_message; ?>
|
86 |
</p>
|
87 |
-
<a href="
|
88 |
</div>
|
89 |
<div class="form-actions">
|
90 |
<div class="pull-right">
|
61 |
<?php echo $gb_fancy_box; ?>
|
62 |
</div>
|
63 |
<p class="premium-editions">
|
64 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
65 |
</p>
|
66 |
</div>
|
67 |
<div class="portlet-body form">
|
84 |
<p>
|
85 |
<?php echo $gb_lightbox_upgrade_message; ?>
|
86 |
</p>
|
87 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
88 |
</div>
|
89 |
<div class="form-actions">
|
90 |
<div class="pull-right">
|
views/lightboxes/foo-box-free-edition.php
CHANGED
@@ -61,7 +61,7 @@ if (!is_user_logged_in()) {
|
|
61 |
<?php echo class_exists("fooboxV2") ? $gb_foo_box_premium : $gb_foo_box_free_edition; ?>
|
62 |
</div>
|
63 |
<p class="premium-editions">
|
64 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
65 |
</p>
|
66 |
</div>
|
67 |
<div class="portlet-body form">
|
@@ -84,7 +84,7 @@ if (!is_user_logged_in()) {
|
|
84 |
<p>
|
85 |
<?php echo $gb_lightbox_upgrade_message; ?>
|
86 |
</p>
|
87 |
-
<a href="
|
88 |
</div>
|
89 |
<div class="form-actions">
|
90 |
<div class="pull-right">
|
61 |
<?php echo class_exists("fooboxV2") ? $gb_foo_box_premium : $gb_foo_box_free_edition; ?>
|
62 |
</div>
|
63 |
<p class="premium-editions">
|
64 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
65 |
</p>
|
66 |
</div>
|
67 |
<div class="portlet-body form">
|
84 |
<p>
|
85 |
<?php echo $gb_lightbox_upgrade_message; ?>
|
86 |
</p>
|
87 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
88 |
</div>
|
89 |
<div class="form-actions">
|
90 |
<div class="pull-right">
|
views/lightboxes/lightcase.php
CHANGED
@@ -63,7 +63,7 @@ if (!is_user_logged_in()) {
|
|
63 |
<?php echo $gb_lightcase; ?>
|
64 |
</div>
|
65 |
<p class="premium-editions">
|
66 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
67 |
</p>
|
68 |
</div>
|
69 |
<div class="portlet-body form">
|
@@ -86,7 +86,7 @@ if (!is_user_logged_in()) {
|
|
86 |
<p>
|
87 |
<?php echo $gb_lightbox_upgrade_message; ?>
|
88 |
</p>
|
89 |
-
<a href="
|
90 |
</div>
|
91 |
<div class="form-actions">
|
92 |
<div class="pull-right">
|
63 |
<?php echo $gb_lightcase; ?>
|
64 |
</div>
|
65 |
<p class="premium-editions">
|
66 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
67 |
</p>
|
68 |
</div>
|
69 |
<div class="portlet-body form">
|
86 |
<p>
|
87 |
<?php echo $gb_lightbox_upgrade_message; ?>
|
88 |
</p>
|
89 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
90 |
</div>
|
91 |
<div class="form-actions">
|
92 |
<div class="pull-right">
|
views/lightboxes/nivo-lightbox.php
CHANGED
@@ -61,7 +61,7 @@ if (!is_user_logged_in()) {
|
|
61 |
<?php echo $gb_nivo_lightbox; ?>
|
62 |
</div>
|
63 |
<p class="premium-editions">
|
64 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
65 |
</p>
|
66 |
</div>
|
67 |
<div class="portlet-body form">
|
@@ -84,7 +84,7 @@ if (!is_user_logged_in()) {
|
|
84 |
<p>
|
85 |
<?php echo $gb_lightbox_upgrade_message; ?>
|
86 |
</p>
|
87 |
-
<a href="
|
88 |
</div>
|
89 |
<div class="form-actions">
|
90 |
<div class="pull-right">
|
61 |
<?php echo $gb_nivo_lightbox; ?>
|
62 |
</div>
|
63 |
<p class="premium-editions">
|
64 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
65 |
</p>
|
66 |
</div>
|
67 |
<div class="portlet-body form">
|
84 |
<p>
|
85 |
<?php echo $gb_lightbox_upgrade_message; ?>
|
86 |
</p>
|
87 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
88 |
</div>
|
89 |
<div class="form-actions">
|
90 |
<div class="pull-right">
|
views/other-settings/other-settings.php
CHANGED
@@ -49,7 +49,7 @@ if (!is_user_logged_in()) {
|
|
49 |
<?php echo $gb_other_setting; ?>
|
50 |
</div>
|
51 |
<p class="premium-editions">
|
52 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
53 |
</p>
|
54 |
</div>
|
55 |
<div class="portlet-body form">
|
49 |
<?php echo $gb_other_setting; ?>
|
50 |
</div>
|
51 |
<p class="premium-editions">
|
52 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
53 |
</p>
|
54 |
</div>
|
55 |
<div class="portlet-body form">
|
views/premium-editions/premium-editions.php
CHANGED
@@ -1738,7 +1738,7 @@ if (!is_user_logged_in()) {
|
|
1738 |
<div class="gw-go-footer">
|
1739 |
<div class="gw-go-footer-rows">
|
1740 |
<div class="gw-go-footer-row" data-row-index="0">
|
1741 |
-
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="
|
1742 |
</div>
|
1743 |
</div>
|
1744 |
</div>
|
@@ -2007,7 +2007,7 @@ if (!is_user_logged_in()) {
|
|
2007 |
<div class="gw-go-footer">
|
2008 |
<div class="gw-go-footer-rows">
|
2009 |
<div class="gw-go-footer-row" data-row-index="0">
|
2010 |
-
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="
|
2011 |
</div>
|
2012 |
</div>
|
2013 |
</div>
|
@@ -2275,7 +2275,7 @@ if (!is_user_logged_in()) {
|
|
2275 |
<div class="gw-go-footer">
|
2276 |
<div class="gw-go-footer-rows">
|
2277 |
<div class="gw-go-footer-row" data-row-index="0">
|
2278 |
-
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="
|
2279 |
</div>
|
2280 |
</div>
|
2281 |
</div>
|
1738 |
<div class="gw-go-footer">
|
1739 |
<div class="gw-go-footer-rows">
|
1740 |
<div class="gw-go-footer-row" data-row-index="0">
|
1741 |
+
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="<?php echo tech_banker_gallery_url;?>product/personal-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
1742 |
</div>
|
1743 |
</div>
|
1744 |
</div>
|
2007 |
<div class="gw-go-footer">
|
2008 |
<div class="gw-go-footer-rows">
|
2009 |
<div class="gw-go-footer-row" data-row-index="0">
|
2010 |
+
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="<?php echo tech_banker_gallery_url;?>product/business-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
2011 |
</div>
|
2012 |
</div>
|
2013 |
</div>
|
2275 |
<div class="gw-go-footer">
|
2276 |
<div class="gw-go-footer-rows">
|
2277 |
<div class="gw-go-footer-row" data-row-index="0">
|
2278 |
+
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="<?php echo tech_banker_gallery_url;?>product/developer-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
2279 |
</div>
|
2280 |
</div>
|
2281 |
</div>
|
views/roles-and-capabilities/roles-and-capabilities.php
CHANGED
@@ -55,7 +55,7 @@ if (!is_user_logged_in()) {
|
|
55 |
<?php echo $gb_roles_and_capabilities; ?>
|
56 |
</div>
|
57 |
<p class="premium-editions">
|
58 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
59 |
</p>
|
60 |
</div>
|
61 |
<div class="portlet-body form">
|
@@ -78,7 +78,7 @@ if (!is_user_logged_in()) {
|
|
78 |
<p>
|
79 |
<?php echo $gb_role_capabilities_upgrade_message; ?>
|
80 |
</p>
|
81 |
-
<a href="
|
82 |
</div>
|
83 |
<div class="form-actions">
|
84 |
<div class="pull-right">
|
55 |
<?php echo $gb_roles_and_capabilities; ?>
|
56 |
</div>
|
57 |
<p class="premium-editions">
|
58 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
59 |
</p>
|
60 |
</div>
|
61 |
<div class="portlet-body form">
|
78 |
<p>
|
79 |
<?php echo $gb_role_capabilities_upgrade_message; ?>
|
80 |
</p>
|
81 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
82 |
</div>
|
83 |
<div class="form-actions">
|
84 |
<div class="pull-right">
|
views/shortcodes/blog-style-layout-shortcode.php
CHANGED
@@ -55,7 +55,7 @@ if (!is_user_logged_in()) {
|
|
55 |
<?php echo $gb_blog_style_layout; ?>
|
56 |
</div>
|
57 |
<p class="premium-editions">
|
58 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
59 |
</p>
|
60 |
</div>
|
61 |
<div class="portlet-body form">
|
@@ -78,7 +78,7 @@ if (!is_user_logged_in()) {
|
|
78 |
<p>
|
79 |
<?php echo $gb_shortcodes_upgrade_message; ?>
|
80 |
</p>
|
81 |
-
<a href="
|
82 |
</div>
|
83 |
<div class="form-actions">
|
84 |
<div class="pull-right">
|
55 |
<?php echo $gb_blog_style_layout; ?>
|
56 |
</div>
|
57 |
<p class="premium-editions">
|
58 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
59 |
</p>
|
60 |
</div>
|
61 |
<div class="portlet-body form">
|
78 |
<p>
|
79 |
<?php echo $gb_shortcodes_upgrade_message; ?>
|
80 |
</p>
|
81 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
82 |
</div>
|
83 |
<div class="form-actions">
|
84 |
<div class="pull-right">
|
views/shortcodes/image-browser-layout-shortcode.php
CHANGED
@@ -55,7 +55,7 @@ if (!is_user_logged_in()) {
|
|
55 |
<?php echo $gb_image_browser_layout; ?>
|
56 |
</div>
|
57 |
<p class="premium-editions">
|
58 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
59 |
</p>
|
60 |
</div>
|
61 |
<div class="portlet-body form">
|
@@ -78,7 +78,7 @@ if (!is_user_logged_in()) {
|
|
78 |
<p>
|
79 |
<?php echo $gb_shortcodes_upgrade_message; ?>
|
80 |
</p>
|
81 |
-
<a href="
|
82 |
</div>
|
83 |
<div class="form-actions">
|
84 |
<div class="pull-right">
|
55 |
<?php echo $gb_image_browser_layout; ?>
|
56 |
</div>
|
57 |
<p class="premium-editions">
|
58 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
59 |
</p>
|
60 |
</div>
|
61 |
<div class="portlet-body form">
|
78 |
<p>
|
79 |
<?php echo $gb_shortcodes_upgrade_message; ?>
|
80 |
</p>
|
81 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
82 |
</div>
|
83 |
<div class="form-actions">
|
84 |
<div class="pull-right">
|
views/shortcodes/justified-grid-layout-shortcode.php
CHANGED
@@ -54,7 +54,7 @@ if (!is_user_logged_in()) {
|
|
54 |
<?php echo $gb_justified_grid_layout; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
@@ -77,7 +77,7 @@ if (!is_user_logged_in()) {
|
|
77 |
<p>
|
78 |
<?php echo $gb_shortcodes_upgrade_message; ?>
|
79 |
</p>
|
80 |
-
<a href="
|
81 |
</div>
|
82 |
<div class="form-actions">
|
83 |
<div class="pull-right">
|
54 |
<?php echo $gb_justified_grid_layout; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
77 |
<p>
|
78 |
<?php echo $gb_shortcodes_upgrade_message; ?>
|
79 |
</p>
|
80 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
81 |
</div>
|
82 |
<div class="form-actions">
|
83 |
<div class="pull-right">
|
views/shortcodes/masonry-layout-shortcode.php
CHANGED
@@ -54,7 +54,7 @@ if (!is_user_logged_in()) {
|
|
54 |
<?php echo $gb_masonry_layout; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
@@ -77,7 +77,7 @@ if (!is_user_logged_in()) {
|
|
77 |
<p>
|
78 |
<?php echo $gb_shortcodes_upgrade_message; ?>
|
79 |
</p>
|
80 |
-
<a href="
|
81 |
</div>
|
82 |
<div class="form-actions">
|
83 |
<div class="pull-right">
|
54 |
<?php echo $gb_masonry_layout; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
77 |
<p>
|
78 |
<?php echo $gb_shortcodes_upgrade_message; ?>
|
79 |
</p>
|
80 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
81 |
</div>
|
82 |
<div class="form-actions">
|
83 |
<div class="pull-right">
|
views/shortcodes/slideshow-layout-shortcode.php
CHANGED
@@ -55,7 +55,7 @@ if (!is_user_logged_in()) {
|
|
55 |
<?php echo $gb_slideshow_layout; ?>
|
56 |
</div>
|
57 |
<p class="premium-editions">
|
58 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
59 |
</p>
|
60 |
</div>
|
61 |
<div class="portlet-body form">
|
@@ -78,7 +78,7 @@ if (!is_user_logged_in()) {
|
|
78 |
<p>
|
79 |
<?php echo $gb_shortcodes_upgrade_message; ?>
|
80 |
</p>
|
81 |
-
<a href="
|
82 |
</div>
|
83 |
<div class="form-actions">
|
84 |
<div class="pull-right">
|
55 |
<?php echo $gb_slideshow_layout; ?>
|
56 |
</div>
|
57 |
<p class="premium-editions">
|
58 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
59 |
</p>
|
60 |
</div>
|
61 |
<div class="portlet-body form">
|
78 |
<p>
|
79 |
<?php echo $gb_shortcodes_upgrade_message; ?>
|
80 |
</p>
|
81 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
82 |
</div>
|
83 |
<div class="form-actions">
|
84 |
<div class="pull-right">
|
views/shortcodes/thumbnail-layout-shortcode.php
CHANGED
@@ -54,7 +54,7 @@ if (!is_user_logged_in()) {
|
|
54 |
<?php echo $gb_thumbnail_layout; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
@@ -77,7 +77,7 @@ if (!is_user_logged_in()) {
|
|
77 |
<p>
|
78 |
<?php echo $gb_shortcodes_upgrade_message; ?>
|
79 |
</p>
|
80 |
-
<a href="
|
81 |
</div>
|
82 |
<div class="form-actions">
|
83 |
<div class="pull-right">
|
54 |
<?php echo $gb_thumbnail_layout; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
77 |
<p>
|
78 |
<?php echo $gb_shortcodes_upgrade_message; ?>
|
79 |
</p>
|
80 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
81 |
</div>
|
82 |
<div class="form-actions">
|
83 |
<div class="pull-right">
|
views/system-information/system-information.php
CHANGED
@@ -48,7 +48,7 @@ if (!is_user_logged_in()) {
|
|
48 |
<?php echo $gb_system_information; ?>
|
49 |
</div>
|
50 |
<p class="premium-editions">
|
51 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
52 |
</p>
|
53 |
</div>
|
54 |
<div class="portlet-body form">
|
48 |
<?php echo $gb_system_information; ?>
|
49 |
</div>
|
50 |
<p class="premium-editions">
|
51 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
52 |
</p>
|
53 |
</div>
|
54 |
<div class="portlet-body form">
|
views/tags/add-tag.php
CHANGED
@@ -54,7 +54,7 @@ if (!is_user_logged_in()) {
|
|
54 |
<?php echo isset($_REQUEST["id"]) ? $gb_update_tag : $gb_add_tag; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
@@ -77,7 +77,7 @@ if (!is_user_logged_in()) {
|
|
77 |
<p>
|
78 |
<?php echo $gb_tags_upgrade_message; ?>
|
79 |
</p>
|
80 |
-
<a href="
|
81 |
</div>
|
82 |
<div class="form-actions">
|
83 |
<div class="pull-right">
|
54 |
<?php echo isset($_REQUEST["id"]) ? $gb_update_tag : $gb_add_tag; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
77 |
<p>
|
78 |
<?php echo $gb_tags_upgrade_message; ?>
|
79 |
</p>
|
80 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
81 |
</div>
|
82 |
<div class="form-actions">
|
83 |
<div class="pull-right">
|
views/tags/manage-tags.php
CHANGED
@@ -54,7 +54,7 @@ if (!is_user_logged_in()) {
|
|
54 |
<?php echo $gb_manage_tags; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
-
<?php echo $gb_upgrade_need_help ?><a href="
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
@@ -77,7 +77,7 @@ if (!is_user_logged_in()) {
|
|
77 |
<p>
|
78 |
<?php echo $gb_tags_upgrade_message; ?>
|
79 |
</p>
|
80 |
-
<a href="
|
81 |
</div>
|
82 |
<div class="table-top-margin">
|
83 |
<select name="ux_ddl_manage_tags" id="ux_ddl_manage_tags">
|
54 |
<?php echo $gb_manage_tags; ?>
|
55 |
</div>
|
56 |
<p class="premium-editions">
|
57 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
58 |
</p>
|
59 |
</div>
|
60 |
<div class="portlet-body form">
|
77 |
<p>
|
78 |
<?php echo $gb_tags_upgrade_message; ?>
|
79 |
</p>
|
80 |
+
<a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="btn vivid-green-upgrade"><?php echo $gb_click_here_to_upgrade; ?></a>
|
81 |
</div>
|
82 |
<div class="table-top-margin">
|
83 |
<select name="ux_ddl_manage_tags" id="ux_ddl_manage_tags">
|
views/wizard/wizard.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
-
* @author
|
6 |
-
* @package
|
7 |
-
* @version
|
8 |
*/
|
9 |
if (!defined("ABSPATH")) {
|
10 |
exit;
|
@@ -12,162 +12,2895 @@ if (!defined("ABSPATH")) {
|
|
12 |
if (!is_user_logged_in()) {
|
13 |
return;
|
14 |
} else {
|
15 |
-
$
|
16 |
-
$
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
function overlay_loading_gallery_bank(message) {
|
21 |
-
var overlay_opacity = jQuery("<div class=\"opacity_overlay\"></div>");
|
22 |
-
jQuery("body").append(overlay_opacity);
|
23 |
-
var overlay = jQuery("<div class=\"loader_opacity\"><div class=\"processing_overlay\"></div></div>");
|
24 |
-
jQuery("body").append(overlay);
|
25 |
-
}
|
26 |
}
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
param: "wizard_gallery_bank",
|
56 |
-
action: "gallery_bank_action_module",
|
57 |
-
_wp_nonce: "<?php echo $gallery_bank_check_status; ?>"
|
58 |
-
},
|
59 |
-
function ()
|
60 |
-
{
|
61 |
-
remove_overlay_gallery_bank();
|
62 |
-
window.location.href = "admin.php?page=gallery_bank";
|
63 |
-
});
|
64 |
-
}
|
65 |
-
}
|
66 |
-
</script>
|
67 |
-
<div><div><div>
|
68 |
-
<div class="page-container header-wizard">
|
69 |
-
<div class="page-content">
|
70 |
-
<div class="row row-custom row-bg">
|
71 |
-
<div class="col-md-1">
|
72 |
-
</div>
|
73 |
-
<div class="col-md-4 center">
|
74 |
-
<b>
|
75 |
-
<i class="dashicons dashicons-wordpress"></i>
|
76 |
-
</b>
|
77 |
-
</div>
|
78 |
-
<div class="col-md-2 center">
|
79 |
-
<i class="dashicons dashicons-plus"></i>
|
80 |
-
</div>
|
81 |
-
<div class="col-md-4 center">
|
82 |
-
<img src="<?php echo plugins_url("assets/global/img/wizard-icon.png", dirname(dirname(__FILE__))); ?>" height="110" width="110">
|
83 |
-
</div>
|
84 |
-
<div class="col-md-1">
|
85 |
-
</div>
|
86 |
-
</div>
|
87 |
-
<div class="row row-custom">
|
88 |
-
<div class="col-md-12 textalign">
|
89 |
-
<p>Hi there!</p>
|
90 |
-
<p>Don't ever miss an opportunity to opt in for Email Notifications / Announcements about exciting New Features and Update Releases.</p>
|
91 |
-
<p>Contribute in helping us making our plugin compatible with most plugins and themes by allowing to share non-sensitive information about your website.</p>
|
92 |
-
<p>If you're not ready to Opt-In, that's ok too!</p>
|
93 |
-
<p><strong>Gallery Bank will still work fine.</strong></p>
|
94 |
-
</div>
|
95 |
</div>
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
</div>
|
112 |
-
<div class="
|
113 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
<li>
|
115 |
-
<
|
116 |
-
|
117 |
-
|
118 |
-
<p>Activation, Deactivation and Uninstall</p>
|
119 |
-
</div>
|
120 |
</li>
|
121 |
-
</ul>
|
122 |
-
</div>
|
123 |
-
<div class="col-md-6">
|
124 |
-
<ul>
|
125 |
<li>
|
126 |
-
<
|
127 |
-
|
128 |
-
|
129 |
-
<p>Updates & Announcements</p>
|
130 |
-
</div>
|
131 |
</li>
|
132 |
-
</ul>
|
133 |
-
</div>
|
134 |
-
<div class="col-md-6 align2">
|
135 |
-
<ul>
|
136 |
<li>
|
137 |
-
<
|
138 |
-
|
139 |
-
|
140 |
-
<p>Site URL, WP Version, PHP Info, Plugins & Themes Info</p>
|
141 |
-
</div>
|
142 |
</li>
|
143 |
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
</div>
|
145 |
</div>
|
146 |
-
|
147 |
-
<div class="tech-banker-actions">
|
148 |
-
<a onclick="plugin_stats_gallery_bank('opt_in');" class="button button-primary-wizard">
|
149 |
-
<strong>Opt-In & Continue </strong>
|
150 |
-
<i class="dashicons dashicons-arrow-right-alt"></i>
|
151 |
-
</a>
|
152 |
-
<a onclick="plugin_stats_gallery_bank('skip');" class="button button-secondary-wizard" tabindex="2">
|
153 |
-
<strong>Skip & Continue </strong>
|
154 |
-
<i class="dashicons dashicons-arrow-right-alt"></i>
|
155 |
-
</a>
|
156 |
-
<div class="clearfix"></div>
|
157 |
-
</div>
|
158 |
-
</div>
|
159 |
-
<div class="col-md-12 terms">
|
160 |
-
<a href="http://beta.tech-banker.com/privacy-policy/" target="_blank">Privacy Policy</a>
|
161 |
-
<span> - </span>
|
162 |
-
<a href="http://beta.tech-banker.com/terms-conditions/" target="_blank">Terms & Conditions</a>
|
163 |
-
</div>
|
164 |
-
</div>
|
165 |
</div>
|
166 |
</div>
|
167 |
-
|
168 |
-
|
169 |
-
?>
|
170 |
-
</div></div></div>
|
171 |
<?php
|
172 |
}
|
173 |
}
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Template for view wizard.
|
4 |
*
|
5 |
+
* @author Tech Banker
|
6 |
+
* @package gallery-bank/views/wizard
|
7 |
+
* @version 4.0.0
|
8 |
*/
|
9 |
if (!defined("ABSPATH")) {
|
10 |
exit;
|
12 |
if (!is_user_logged_in()) {
|
13 |
return;
|
14 |
} else {
|
15 |
+
$access_granted = false;
|
16 |
+
foreach ($user_role_permission as $permission) {
|
17 |
+
if (current_user_can($permission)) {
|
18 |
+
$access_granted = true;
|
19 |
+
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
}
|
21 |
+
}
|
22 |
+
if (!$access_granted) {
|
23 |
+
return;
|
24 |
+
} else {
|
25 |
+
?>
|
26 |
+
<div class="page-bar">
|
27 |
+
<ul class="page-breadcrumb">
|
28 |
+
<li>
|
29 |
+
<i class="icon-custom-home"></i>
|
30 |
+
<a href="admin.php?page=gallery_bank">
|
31 |
+
<?php echo $gallery_bank; ?>
|
32 |
+
</a>
|
33 |
+
<span>></span>
|
34 |
+
</li>
|
35 |
+
<li>
|
36 |
+
<span>
|
37 |
+
<?php echo $gb_overview; ?>
|
38 |
+
</span>
|
39 |
+
</li>
|
40 |
+
</ul>
|
41 |
+
</div>
|
42 |
+
<div class="row">
|
43 |
+
<div class="col-md-12">
|
44 |
+
<div class="portlet box vivid-green">
|
45 |
+
<div class="portlet-title">
|
46 |
+
<div class="caption">
|
47 |
+
<i class="icon-custom-present"></i>
|
48 |
+
<?php echo $gb_overview; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
</div>
|
50 |
+
</div>
|
51 |
+
<div class="portlet-body form">
|
52 |
+
<form id="ux_frm_wizard">
|
53 |
+
<div class="form-body">
|
54 |
+
<div class="wpb_wrapper">
|
55 |
+
<div class="ult-spacer spacer-59607b6c7fc00" data-id="59607b6c7fc00" data-height="10" data-height-mobile="10" data-height-tab="10" data-height-tab-portrait="" data-height-mobile-landscape="" style="clear:both;display:block;">
|
56 |
+
|
57 |
+
</div>
|
58 |
+
<div class="wpb_text_column wpb_content_element ">
|
59 |
+
<div class="wpb_wrapper">
|
60 |
+
<h1 style="text-align: center;">Gallery Bank is the most <u style="color: #237371;">Stylish and Elegant</u> Photo Gallery Plugin on WordPress.</h1>
|
61 |
+
</div>
|
62 |
+
</div>
|
63 |
+
<div class="wpb_text_column wpb_content_element ">
|
64 |
+
<div class="wpb_wrapper">
|
65 |
+
<h3 style="text-align: center;line-height:1.6em;">It is the most Magnificent Plugin to show up your media, images, and much more<br>
|
66 |
+
with attractive animation effects.</h3>
|
67 |
+
<h2 style="text-align: center;line-height:1.6em;">Create your Gallery with Images <a href="admin.php?page=gallery_bank">now</a>.</h2>
|
68 |
+
</div>
|
69 |
+
</div>
|
70 |
+
<div class="ult-spacer spacer-59607b6c7fea4" data-id="59607b6c7fea4" data-height="15" data-height-mobile="15" data-height-tab="15" data-height-tab-portrait="" data-height-mobile-landscape="" style="clear:both;display:block;">
|
71 |
+
</div>
|
72 |
</div>
|
73 |
+
<div class="line-separator"></div>
|
74 |
+
<div class="tabbable-custom">
|
75 |
+
<ul class="nav nav-tabs ">
|
76 |
+
<li class="active">
|
77 |
+
<a aria-expanded="true" href="#video_tutorials" data-toggle="tab">
|
78 |
+
<?php echo $gb_video_tutorials; ?>
|
79 |
+
</a>
|
80 |
+
</li>
|
81 |
<li>
|
82 |
+
<a aria-expanded="false" href="#premium_editions" data-toggle="tab">
|
83 |
+
<?php echo $gb_premium_editions; ?>
|
84 |
+
</a>
|
|
|
|
|
85 |
</li>
|
|
|
|
|
|
|
|
|
86 |
<li>
|
87 |
+
<a aria-expanded="false" href="#live_demos" data-toggle="tab">
|
88 |
+
<?php echo $gb_live_demos; ?>
|
89 |
+
</a>
|
|
|
|
|
90 |
</li>
|
|
|
|
|
|
|
|
|
91 |
<li>
|
92 |
+
<a aria-expanded="false" href="#have_suggestions" data-toggle="tab">
|
93 |
+
<?php echo $gb_have_suggestions; ?>
|
94 |
+
</a>
|
|
|
|
|
95 |
</li>
|
96 |
</ul>
|
97 |
+
<div class="tab-content">
|
98 |
+
<div class="tab-pane active" id="video_tutorials">
|
99 |
+
<div class="portlet box vivid-green">
|
100 |
+
<div class="portlet-title" onclick="show_hide_text_field_options('ux_div_create_gallery');">
|
101 |
+
<div class="caption">
|
102 |
+
<i class="icon-custom-plus"></i>
|
103 |
+
How to create a Gallery with Images?
|
104 |
+
</div>
|
105 |
+
<span class="dashicons dashicons-arrow-down downarraow-toggle"></span>
|
106 |
+
</div>
|
107 |
+
<div class="portlet-body form">
|
108 |
+
<div class="form-body" id="ux_div_create_gallery">
|
109 |
+
<iframe class="youtube-player" type="text/html" src="https://www.youtube.com/embed/5tOPGePG9Dw?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent" allowfullscreen="true" style="border:0;" width="640" height="390"></iframe>
|
110 |
+
</div>
|
111 |
+
</div>
|
112 |
+
</div>
|
113 |
+
</div>
|
114 |
+
<div class="tab-pane" id="premium_editions">
|
115 |
+
<div class="row">
|
116 |
+
<div class="col-md-12">
|
117 |
+
<div class="portlet box vivid-green">
|
118 |
+
<div class="portlet-title">
|
119 |
+
<div class="caption">
|
120 |
+
<i class="icon-custom-briefcase"></i>
|
121 |
+
<?php echo $gb_upgrade; ?>
|
122 |
+
</div>
|
123 |
+
</div>
|
124 |
+
<div class="portlet-body form">
|
125 |
+
<form id="ux_frm_premium_editions">
|
126 |
+
<div class="form-body">
|
127 |
+
<div class="wpb_wrapper">
|
128 |
+
<style type="text/css">
|
129 |
+
#go-pricing-table-464 .gw-go {
|
130 |
+
margin-left: -30px;
|
131 |
+
}
|
132 |
+
|
133 |
+
#go-pricing-table-464 .gw-go-col {
|
134 |
+
margin-left: 30px;
|
135 |
+
}
|
136 |
+
|
137 |
+
#go-pricing-table-464 .gw-go-col-wrap {
|
138 |
+
min-width: 130px;
|
139 |
+
}
|
140 |
+
|
141 |
+
#go-pricing-table-464 .gw-go-col-inner {
|
142 |
+
border-radius: 8px 8px 8px 8px;
|
143 |
+
}
|
144 |
+
|
145 |
+
#go-pricing-table-464 ul.gw-go-body,
|
146 |
+
#go-pricing-table-464 ul.gw-go-body li {
|
147 |
+
border: none !important;
|
148 |
+
padding-top: 1px;
|
149 |
+
}
|
150 |
+
|
151 |
+
#go-pricing-table-464 ul.gw-go-body li .gw-go-body-cell {
|
152 |
+
padding-top: 1px;
|
153 |
+
}
|
154 |
+
|
155 |
+
#go-pricing-table-464 ul.gw-go-body {
|
156 |
+
padding-bottom: 1px;
|
157 |
+
}
|
158 |
+
|
159 |
+
#go-pricing-table-464 .gw-go-tooltip-content {
|
160 |
+
background-color: #9d9d9d;
|
161 |
+
color: #333333;
|
162 |
+
max-width: 130px;
|
163 |
+
}
|
164 |
+
|
165 |
+
#go-pricing-table-464 .gw-go-tooltip:before {
|
166 |
+
border-top-color: #9d9d9d;
|
167 |
+
}
|
168 |
+
|
169 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-header,
|
170 |
+
#go-pricing-table-464 .gw-go-col-wrap-0.gw-go-hover .gw-go-header-bottom,
|
171 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li .gw-go-body-cell:before,
|
172 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-btn {
|
173 |
+
background-color: #ef463b;
|
174 |
+
}
|
175 |
+
|
176 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-price-wrap span,
|
177 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-coinf div,
|
178 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-coinb div {
|
179 |
+
color: #ef463b;
|
180 |
+
}
|
181 |
+
|
182 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-header h3 {
|
183 |
+
font-size: 22px !important;
|
184 |
+
line-height: 24px !important;
|
185 |
+
}
|
186 |
+
|
187 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-price-wrap > span {
|
188 |
+
font-size: 55px !important;
|
189 |
+
line-height: 60px !important;
|
190 |
+
font-weight: bold !important;
|
191 |
+
}
|
192 |
+
|
193 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-price-wrap small {
|
194 |
+
font-size: 16px !important;
|
195 |
+
line-height: 18px !important;
|
196 |
+
}
|
197 |
+
|
198 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="0"] {
|
199 |
+
font-size: 14px !important;
|
200 |
+
line-height: 16px !important;
|
201 |
+
}
|
202 |
+
|
203 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="1"] {
|
204 |
+
font-size: 20px !important;
|
205 |
+
line-height: 22px !important;
|
206 |
+
font-weight: bold !important;
|
207 |
+
}
|
208 |
+
|
209 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="2"] {
|
210 |
+
font-size: 17px !important;
|
211 |
+
line-height: 19px !important;
|
212 |
+
font-weight: bold !important;
|
213 |
+
}
|
214 |
+
|
215 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="3"] {
|
216 |
+
font-size: 17px !important;
|
217 |
+
line-height: 19px !important;
|
218 |
+
font-weight: bold !important;
|
219 |
+
}
|
220 |
+
|
221 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="4"] {
|
222 |
+
font-size: 17px !important;
|
223 |
+
line-height: 19px !important;
|
224 |
+
font-weight: bold !important;
|
225 |
+
}
|
226 |
+
|
227 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="5"] {
|
228 |
+
font-size: 17px !important;
|
229 |
+
line-height: 19px !important;
|
230 |
+
}
|
231 |
+
|
232 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="6"] {
|
233 |
+
font-size: 14px !important;
|
234 |
+
line-height: 16px !important;
|
235 |
+
}
|
236 |
+
|
237 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="7"] {
|
238 |
+
font-size: 20px !important;
|
239 |
+
line-height: 22px !important;
|
240 |
+
font-weight: bold !important;
|
241 |
+
}
|
242 |
+
|
243 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="8"] {
|
244 |
+
font-size: 17px !important;
|
245 |
+
line-height: 19px !important;
|
246 |
+
}
|
247 |
+
|
248 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="9"] {
|
249 |
+
font-size: 17px !important;
|
250 |
+
line-height: 19px !important;
|
251 |
+
}
|
252 |
+
|
253 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="10"] {
|
254 |
+
font-size: 17px !important;
|
255 |
+
line-height: 19px !important;
|
256 |
+
}
|
257 |
+
|
258 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="11"] {
|
259 |
+
font-size: 14px !important;
|
260 |
+
line-height: 16px !important;
|
261 |
+
}
|
262 |
+
|
263 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="12"] {
|
264 |
+
font-size: 20px !important;
|
265 |
+
line-height: 22px !important;
|
266 |
+
font-weight: bold !important;
|
267 |
+
}
|
268 |
+
|
269 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="13"] {
|
270 |
+
font-size: 17px !important;
|
271 |
+
line-height: 19px !important;
|
272 |
+
}
|
273 |
+
|
274 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="14"] {
|
275 |
+
font-size: 17px !important;
|
276 |
+
line-height: 19px !important;
|
277 |
+
}
|
278 |
+
|
279 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="15"] {
|
280 |
+
font-size: 17px !important;
|
281 |
+
line-height: 19px !important;
|
282 |
+
}
|
283 |
+
|
284 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="16"] {
|
285 |
+
font-size: 14px !important;
|
286 |
+
line-height: 16px !important;
|
287 |
+
}
|
288 |
+
|
289 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="17"] {
|
290 |
+
font-size: 20px !important;
|
291 |
+
line-height: 22px !important;
|
292 |
+
font-weight: bold !important;
|
293 |
+
}
|
294 |
+
|
295 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="18"] {
|
296 |
+
font-size: 17px !important;
|
297 |
+
line-height: 19px !important;
|
298 |
+
}
|
299 |
+
|
300 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="19"] {
|
301 |
+
font-size: 17px !important;
|
302 |
+
line-height: 19px !important;
|
303 |
+
}
|
304 |
+
|
305 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="20"] {
|
306 |
+
font-size: 14px !important;
|
307 |
+
line-height: 16px !important;
|
308 |
+
}
|
309 |
+
|
310 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="21"] {
|
311 |
+
font-size: 20px !important;
|
312 |
+
line-height: 22px !important;
|
313 |
+
font-weight: bold !important;
|
314 |
+
}
|
315 |
+
|
316 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="22"] {
|
317 |
+
font-size: 17px !important;
|
318 |
+
line-height: 19px !important;
|
319 |
+
}
|
320 |
+
|
321 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="23"] {
|
322 |
+
font-size: 17px !important;
|
323 |
+
line-height: 19px !important;
|
324 |
+
}
|
325 |
+
|
326 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="24"] {
|
327 |
+
font-size: 17px !important;
|
328 |
+
line-height: 19px !important;
|
329 |
+
}
|
330 |
+
|
331 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="25"] {
|
332 |
+
font-size: 17px !important;
|
333 |
+
line-height: 19px !important;
|
334 |
+
}
|
335 |
+
|
336 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="26"] {
|
337 |
+
font-size: 17px !important;
|
338 |
+
line-height: 19px !important;
|
339 |
+
}
|
340 |
+
|
341 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="27"] {
|
342 |
+
font-size: 17px !important;
|
343 |
+
line-height: 19px !important;
|
344 |
+
}
|
345 |
+
|
346 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="28"] {
|
347 |
+
font-size: 17px !important;
|
348 |
+
line-height: 19px !important;
|
349 |
+
}
|
350 |
+
|
351 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="29"] {
|
352 |
+
font-size: 17px !important;
|
353 |
+
line-height: 19px !important;
|
354 |
+
}
|
355 |
+
|
356 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="30"] {
|
357 |
+
font-size: 17px !important;
|
358 |
+
line-height: 19px !important;
|
359 |
+
}
|
360 |
+
|
361 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="31"] {
|
362 |
+
font-size: 14px !important;
|
363 |
+
line-height: 16px !important;
|
364 |
+
}
|
365 |
+
|
366 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="32"] {
|
367 |
+
font-size: 20px !important;
|
368 |
+
line-height: 22px !important;
|
369 |
+
font-weight: bold !important;
|
370 |
+
}
|
371 |
+
|
372 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="33"] {
|
373 |
+
font-size: 17px !important;
|
374 |
+
line-height: 19px !important;
|
375 |
+
}
|
376 |
+
|
377 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="34"] {
|
378 |
+
font-size: 17px !important;
|
379 |
+
line-height: 19px !important;
|
380 |
+
}
|
381 |
+
|
382 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="35"] {
|
383 |
+
font-size: 17px !important;
|
384 |
+
line-height: 19px !important;
|
385 |
+
}
|
386 |
+
|
387 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="36"] {
|
388 |
+
font-size: 17px !important;
|
389 |
+
line-height: 19px !important;
|
390 |
+
}
|
391 |
+
|
392 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="37"] {
|
393 |
+
font-size: 17px !important;
|
394 |
+
line-height: 19px !important;
|
395 |
+
}
|
396 |
+
|
397 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="38"] {
|
398 |
+
font-size: 14px !important;
|
399 |
+
line-height: 16px !important;
|
400 |
+
}
|
401 |
+
|
402 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="39"] {
|
403 |
+
font-size: 20px !important;
|
404 |
+
line-height: 22px !important;
|
405 |
+
font-weight: bold !important;
|
406 |
+
}
|
407 |
+
|
408 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="40"] {
|
409 |
+
font-size: 17px !important;
|
410 |
+
line-height: 19px !important;
|
411 |
+
}
|
412 |
+
|
413 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="41"] {
|
414 |
+
font-size: 17px !important;
|
415 |
+
line-height: 19px !important;
|
416 |
+
}
|
417 |
+
|
418 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="42"] {
|
419 |
+
font-size: 17px !important;
|
420 |
+
line-height: 19px !important;
|
421 |
+
}
|
422 |
+
|
423 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="43"] {
|
424 |
+
font-size: 17px !important;
|
425 |
+
line-height: 19px !important;
|
426 |
+
}
|
427 |
+
|
428 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="44"] {
|
429 |
+
font-size: 17px !important;
|
430 |
+
line-height: 19px !important;
|
431 |
+
}
|
432 |
+
|
433 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="45"] {
|
434 |
+
font-size: 17px !important;
|
435 |
+
line-height: 19px !important;
|
436 |
+
}
|
437 |
+
|
438 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="46"] {
|
439 |
+
font-size: 17px !important;
|
440 |
+
line-height: 19px !important;
|
441 |
+
}
|
442 |
+
|
443 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="47"] {
|
444 |
+
font-size: 17px !important;
|
445 |
+
line-height: 19px !important;
|
446 |
+
}
|
447 |
+
|
448 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="48"] {
|
449 |
+
font-size: 14px !important;
|
450 |
+
line-height: 16px !important;
|
451 |
+
}
|
452 |
+
|
453 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="49"] {
|
454 |
+
font-size: 20px !important;
|
455 |
+
line-height: 22px !important;
|
456 |
+
font-weight: bold !important;
|
457 |
+
}
|
458 |
+
|
459 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="50"] {
|
460 |
+
font-size: 17px !important;
|
461 |
+
line-height: 19px !important;
|
462 |
+
}
|
463 |
+
|
464 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="51"] {
|
465 |
+
font-size: 17px !important;
|
466 |
+
line-height: 19px !important;
|
467 |
+
}
|
468 |
+
|
469 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="52"] {
|
470 |
+
font-size: 17px !important;
|
471 |
+
line-height: 19px !important;
|
472 |
+
}
|
473 |
+
|
474 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="53"] {
|
475 |
+
font-size: 17px !important;
|
476 |
+
line-height: 19px !important;
|
477 |
+
}
|
478 |
+
|
479 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="54"] {
|
480 |
+
font-size: 17px !important;
|
481 |
+
line-height: 19px !important;
|
482 |
+
}
|
483 |
+
|
484 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="55"] {
|
485 |
+
font-size: 17px !important;
|
486 |
+
line-height: 19px !important;
|
487 |
+
}
|
488 |
+
|
489 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="56"] {
|
490 |
+
font-size: 17px !important;
|
491 |
+
line-height: 19px !important;
|
492 |
+
}
|
493 |
+
|
494 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="57"] {
|
495 |
+
font-size: 17px !important;
|
496 |
+
line-height: 19px !important;
|
497 |
+
}
|
498 |
+
|
499 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="58"] {
|
500 |
+
font-size: 17px !important;
|
501 |
+
line-height: 19px !important;
|
502 |
+
}
|
503 |
+
|
504 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="59"] {
|
505 |
+
font-size: 17px !important;
|
506 |
+
line-height: 19px !important;
|
507 |
+
}
|
508 |
+
|
509 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="60"] {
|
510 |
+
font-size: 17px !important;
|
511 |
+
line-height: 19px !important;
|
512 |
+
}
|
513 |
+
|
514 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="61"] {
|
515 |
+
font-size: 17px !important;
|
516 |
+
line-height: 19px !important;
|
517 |
+
}
|
518 |
+
|
519 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="62"] {
|
520 |
+
font-size: 17px !important;
|
521 |
+
line-height: 19px !important;
|
522 |
+
}
|
523 |
+
|
524 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="63"] {
|
525 |
+
font-size: 17px !important;
|
526 |
+
line-height: 19px !important;
|
527 |
+
}
|
528 |
+
|
529 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="64"] {
|
530 |
+
font-size: 17px !important;
|
531 |
+
line-height: 19px !important;
|
532 |
+
}
|
533 |
+
|
534 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="65"] {
|
535 |
+
font-size: 17px !important;
|
536 |
+
line-height: 19px !important;
|
537 |
+
}
|
538 |
+
|
539 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="66"] {
|
540 |
+
font-size: 17px !important;
|
541 |
+
line-height: 19px !important;
|
542 |
+
}
|
543 |
+
|
544 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="67"] {
|
545 |
+
font-size: 17px !important;
|
546 |
+
line-height: 19px !important;
|
547 |
+
}
|
548 |
+
|
549 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="68"] {
|
550 |
+
font-size: 17px !important;
|
551 |
+
line-height: 19px !important;
|
552 |
+
}
|
553 |
+
|
554 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="69"] {
|
555 |
+
font-size: 17px !important;
|
556 |
+
line-height: 19px !important;
|
557 |
+
}
|
558 |
+
|
559 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="70"] {
|
560 |
+
font-size: 17px !important;
|
561 |
+
line-height: 19px !important;
|
562 |
+
}
|
563 |
+
|
564 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="71"] {
|
565 |
+
font-size: 17px !important;
|
566 |
+
line-height: 19px !important;
|
567 |
+
}
|
568 |
+
|
569 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="72"] {
|
570 |
+
font-size: 17px !important;
|
571 |
+
line-height: 19px !important;
|
572 |
+
}
|
573 |
+
|
574 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="73"] {
|
575 |
+
font-size: 17px !important;
|
576 |
+
line-height: 19px !important;
|
577 |
+
}
|
578 |
+
|
579 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="74"] {
|
580 |
+
font-size: 17px !important;
|
581 |
+
line-height: 19px !important;
|
582 |
+
}
|
583 |
+
|
584 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="75"] {
|
585 |
+
font-size: 17px !important;
|
586 |
+
line-height: 19px !important;
|
587 |
+
}
|
588 |
+
|
589 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="76"] {
|
590 |
+
font-size: 14px !important;
|
591 |
+
line-height: 16px !important;
|
592 |
+
}
|
593 |
+
|
594 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="77"] {
|
595 |
+
font-size: 20px !important;
|
596 |
+
line-height: 22px !important;
|
597 |
+
font-weight: bold !important;
|
598 |
+
}
|
599 |
+
|
600 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="78"] {
|
601 |
+
font-size: 17px !important;
|
602 |
+
line-height: 19px !important;
|
603 |
+
}
|
604 |
+
|
605 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="79"] {
|
606 |
+
font-size: 17px !important;
|
607 |
+
line-height: 19px !important;
|
608 |
+
}
|
609 |
+
|
610 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="80"] {
|
611 |
+
font-size: 17px !important;
|
612 |
+
line-height: 19px !important;
|
613 |
+
}
|
614 |
+
|
615 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
616 |
+
font-size: 14px !important;
|
617 |
+
}
|
618 |
+
|
619 |
+
#go-pricing-table-464 .gw-go-col-wrap-0 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
620 |
+
background-color: #ef463b !important;
|
621 |
+
color: #ffffff !important;
|
622 |
+
}
|
623 |
+
|
624 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-header,
|
625 |
+
#go-pricing-table-464 .gw-go-col-wrap-1.gw-go-hover .gw-go-header-bottom,
|
626 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li .gw-go-body-cell:before,
|
627 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-btn {
|
628 |
+
background-color: #05458c;
|
629 |
+
}
|
630 |
+
|
631 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-price-wrap span,
|
632 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-coinf div,
|
633 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-coinb div {
|
634 |
+
color: #05458c;
|
635 |
+
}
|
636 |
+
|
637 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-header h3 {
|
638 |
+
font-size: 22px !important;
|
639 |
+
line-height: 24px !important;
|
640 |
+
}
|
641 |
+
|
642 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-price-wrap > span {
|
643 |
+
font-size: 55px !important;
|
644 |
+
line-height: 60px !important;
|
645 |
+
font-weight: bold !important;
|
646 |
+
}
|
647 |
+
|
648 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-price-wrap small {
|
649 |
+
font-size: 16px !important;
|
650 |
+
line-height: 18px !important;
|
651 |
+
}
|
652 |
+
|
653 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="0"] {
|
654 |
+
font-size: 14px !important;
|
655 |
+
line-height: 16px !important;
|
656 |
+
}
|
657 |
+
|
658 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="1"] {
|
659 |
+
font-size: 20px !important;
|
660 |
+
line-height: 22px !important;
|
661 |
+
font-weight: bold !important;
|
662 |
+
}
|
663 |
+
|
664 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="2"] {
|
665 |
+
font-size: 17px !important;
|
666 |
+
line-height: 19px !important;
|
667 |
+
font-weight: bold !important;
|
668 |
+
}
|
669 |
+
|
670 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="3"] {
|
671 |
+
font-size: 17px !important;
|
672 |
+
line-height: 19px !important;
|
673 |
+
font-weight: bold !important;
|
674 |
+
}
|
675 |
+
|
676 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="4"] {
|
677 |
+
font-size: 17px !important;
|
678 |
+
line-height: 19px !important;
|
679 |
+
font-weight: bold !important;
|
680 |
+
}
|
681 |
+
|
682 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="5"] {
|
683 |
+
font-size: 17px !important;
|
684 |
+
line-height: 19px !important;
|
685 |
+
}
|
686 |
+
|
687 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="6"] {
|
688 |
+
font-size: 14px !important;
|
689 |
+
line-height: 16px !important;
|
690 |
+
}
|
691 |
+
|
692 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="7"] {
|
693 |
+
font-size: 20px !important;
|
694 |
+
line-height: 22px !important;
|
695 |
+
font-weight: bold !important;
|
696 |
+
}
|
697 |
+
|
698 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="8"] {
|
699 |
+
font-size: 17px !important;
|
700 |
+
line-height: 19px !important;
|
701 |
+
}
|
702 |
+
|
703 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="9"] {
|
704 |
+
font-size: 17px !important;
|
705 |
+
line-height: 19px !important;
|
706 |
+
}
|
707 |
+
|
708 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="10"] {
|
709 |
+
font-size: 17px !important;
|
710 |
+
line-height: 19px !important;
|
711 |
+
}
|
712 |
+
|
713 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="11"] {
|
714 |
+
font-size: 14px !important;
|
715 |
+
line-height: 16px !important;
|
716 |
+
}
|
717 |
+
|
718 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="12"] {
|
719 |
+
font-size: 20px !important;
|
720 |
+
line-height: 22px !important;
|
721 |
+
font-weight: bold !important;
|
722 |
+
}
|
723 |
+
|
724 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="13"] {
|
725 |
+
font-size: 17px !important;
|
726 |
+
line-height: 19px !important;
|
727 |
+
}
|
728 |
+
|
729 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="14"] {
|
730 |
+
font-size: 17px !important;
|
731 |
+
line-height: 19px !important;
|
732 |
+
}
|
733 |
+
|
734 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="15"] {
|
735 |
+
font-size: 17px !important;
|
736 |
+
line-height: 19px !important;
|
737 |
+
}
|
738 |
+
|
739 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="16"] {
|
740 |
+
font-size: 14px !important;
|
741 |
+
line-height: 16px !important;
|
742 |
+
}
|
743 |
+
|
744 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="17"] {
|
745 |
+
font-size: 20px !important;
|
746 |
+
line-height: 22px !important;
|
747 |
+
font-weight: bold !important;
|
748 |
+
}
|
749 |
+
|
750 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="18"] {
|
751 |
+
font-size: 17px !important;
|
752 |
+
line-height: 19px !important;
|
753 |
+
}
|
754 |
+
|
755 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="19"] {
|
756 |
+
font-size: 17px !important;
|
757 |
+
line-height: 19px !important;
|
758 |
+
}
|
759 |
+
|
760 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="20"] {
|
761 |
+
font-size: 14px !important;
|
762 |
+
line-height: 16px !important;
|
763 |
+
}
|
764 |
+
|
765 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="21"] {
|
766 |
+
font-size: 20px !important;
|
767 |
+
line-height: 22px !important;
|
768 |
+
font-weight: bold !important;
|
769 |
+
}
|
770 |
+
|
771 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="22"] {
|
772 |
+
font-size: 17px !important;
|
773 |
+
line-height: 19px !important;
|
774 |
+
}
|
775 |
+
|
776 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="23"] {
|
777 |
+
font-size: 17px !important;
|
778 |
+
line-height: 19px !important;
|
779 |
+
}
|
780 |
+
|
781 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="24"] {
|
782 |
+
font-size: 17px !important;
|
783 |
+
line-height: 19px !important;
|
784 |
+
}
|
785 |
+
|
786 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="25"] {
|
787 |
+
font-size: 17px !important;
|
788 |
+
line-height: 19px !important;
|
789 |
+
}
|
790 |
+
|
791 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="26"] {
|
792 |
+
font-size: 17px !important;
|
793 |
+
line-height: 19px !important;
|
794 |
+
}
|
795 |
+
|
796 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="27"] {
|
797 |
+
font-size: 17px !important;
|
798 |
+
line-height: 19px !important;
|
799 |
+
}
|
800 |
+
|
801 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="28"] {
|
802 |
+
font-size: 17px !important;
|
803 |
+
line-height: 19px !important;
|
804 |
+
}
|
805 |
+
|
806 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="29"] {
|
807 |
+
font-size: 17px !important;
|
808 |
+
line-height: 19px !important;
|
809 |
+
}
|
810 |
+
|
811 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="30"] {
|
812 |
+
font-size: 17px !important;
|
813 |
+
line-height: 19px !important;
|
814 |
+
}
|
815 |
+
|
816 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="31"] {
|
817 |
+
font-size: 14px !important;
|
818 |
+
line-height: 16px !important;
|
819 |
+
}
|
820 |
+
|
821 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="32"] {
|
822 |
+
font-size: 20px !important;
|
823 |
+
line-height: 22px !important;
|
824 |
+
font-weight: bold !important;
|
825 |
+
}
|
826 |
+
|
827 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="33"] {
|
828 |
+
font-size: 17px !important;
|
829 |
+
line-height: 19px !important;
|
830 |
+
}
|
831 |
+
|
832 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="34"] {
|
833 |
+
font-size: 17px !important;
|
834 |
+
line-height: 19px !important;
|
835 |
+
}
|
836 |
+
|
837 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="35"] {
|
838 |
+
font-size: 17px !important;
|
839 |
+
line-height: 19px !important;
|
840 |
+
}
|
841 |
+
|
842 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="36"] {
|
843 |
+
font-size: 17px !important;
|
844 |
+
line-height: 19px !important;
|
845 |
+
}
|
846 |
+
|
847 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="37"] {
|
848 |
+
font-size: 17px !important;
|
849 |
+
line-height: 19px !important;
|
850 |
+
}
|
851 |
+
|
852 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="38"] {
|
853 |
+
font-size: 14px !important;
|
854 |
+
line-height: 16px !important;
|
855 |
+
}
|
856 |
+
|
857 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="39"] {
|
858 |
+
font-size: 20px !important;
|
859 |
+
line-height: 22px !important;
|
860 |
+
font-weight: bold !important;
|
861 |
+
}
|
862 |
+
|
863 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="40"] {
|
864 |
+
font-size: 17px !important;
|
865 |
+
line-height: 19px !important;
|
866 |
+
}
|
867 |
+
|
868 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="41"] {
|
869 |
+
font-size: 17px !important;
|
870 |
+
line-height: 19px !important;
|
871 |
+
}
|
872 |
+
|
873 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="42"] {
|
874 |
+
font-size: 17px !important;
|
875 |
+
line-height: 19px !important;
|
876 |
+
}
|
877 |
+
|
878 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="43"] {
|
879 |
+
font-size: 17px !important;
|
880 |
+
line-height: 19px !important;
|
881 |
+
}
|
882 |
+
|
883 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="44"] {
|
884 |
+
font-size: 17px !important;
|
885 |
+
line-height: 19px !important;
|
886 |
+
}
|
887 |
+
|
888 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="45"] {
|
889 |
+
font-size: 17px !important;
|
890 |
+
line-height: 19px !important;
|
891 |
+
}
|
892 |
+
|
893 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="46"] {
|
894 |
+
font-size: 17px !important;
|
895 |
+
line-height: 19px !important;
|
896 |
+
}
|
897 |
+
|
898 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="47"] {
|
899 |
+
font-size: 17px !important;
|
900 |
+
line-height: 19px !important;
|
901 |
+
}
|
902 |
+
|
903 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="48"] {
|
904 |
+
font-size: 14px !important;
|
905 |
+
line-height: 16px !important;
|
906 |
+
}
|
907 |
+
|
908 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="49"] {
|
909 |
+
font-size: 20px !important;
|
910 |
+
line-height: 22px !important;
|
911 |
+
font-weight: bold !important;
|
912 |
+
}
|
913 |
+
|
914 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="50"] {
|
915 |
+
font-size: 17px !important;
|
916 |
+
line-height: 19px !important;
|
917 |
+
}
|
918 |
+
|
919 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="51"] {
|
920 |
+
font-size: 17px !important;
|
921 |
+
line-height: 19px !important;
|
922 |
+
}
|
923 |
+
|
924 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="52"] {
|
925 |
+
font-size: 17px !important;
|
926 |
+
line-height: 19px !important;
|
927 |
+
}
|
928 |
+
|
929 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="53"] {
|
930 |
+
font-size: 17px !important;
|
931 |
+
line-height: 19px !important;
|
932 |
+
}
|
933 |
+
|
934 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="54"] {
|
935 |
+
font-size: 17px !important;
|
936 |
+
line-height: 19px !important;
|
937 |
+
}
|
938 |
+
|
939 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="55"] {
|
940 |
+
font-size: 17px !important;
|
941 |
+
line-height: 19px !important;
|
942 |
+
}
|
943 |
+
|
944 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="56"] {
|
945 |
+
font-size: 17px !important;
|
946 |
+
line-height: 19px !important;
|
947 |
+
}
|
948 |
+
|
949 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="57"] {
|
950 |
+
font-size: 17px !important;
|
951 |
+
line-height: 19px !important;
|
952 |
+
}
|
953 |
+
|
954 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="58"] {
|
955 |
+
font-size: 17px !important;
|
956 |
+
line-height: 19px !important;
|
957 |
+
}
|
958 |
+
|
959 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="59"] {
|
960 |
+
font-size: 17px !important;
|
961 |
+
line-height: 19px !important;
|
962 |
+
}
|
963 |
+
|
964 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="60"] {
|
965 |
+
font-size: 17px !important;
|
966 |
+
line-height: 19px !important;
|
967 |
+
}
|
968 |
+
|
969 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="61"] {
|
970 |
+
font-size: 17px !important;
|
971 |
+
line-height: 19px !important;
|
972 |
+
}
|
973 |
+
|
974 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="62"] {
|
975 |
+
font-size: 17px !important;
|
976 |
+
line-height: 19px !important;
|
977 |
+
}
|
978 |
+
|
979 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="63"] {
|
980 |
+
font-size: 17px !important;
|
981 |
+
line-height: 19px !important;
|
982 |
+
}
|
983 |
+
|
984 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="64"] {
|
985 |
+
font-size: 17px !important;
|
986 |
+
line-height: 19px !important;
|
987 |
+
}
|
988 |
+
|
989 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="65"] {
|
990 |
+
font-size: 17px !important;
|
991 |
+
line-height: 19px !important;
|
992 |
+
}
|
993 |
+
|
994 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="66"] {
|
995 |
+
font-size: 17px !important;
|
996 |
+
line-height: 19px !important;
|
997 |
+
}
|
998 |
+
|
999 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="67"] {
|
1000 |
+
font-size: 17px !important;
|
1001 |
+
line-height: 19px !important;
|
1002 |
+
}
|
1003 |
+
|
1004 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="68"] {
|
1005 |
+
font-size: 17px !important;
|
1006 |
+
line-height: 19px !important;
|
1007 |
+
}
|
1008 |
+
|
1009 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="69"] {
|
1010 |
+
font-size: 17px !important;
|
1011 |
+
line-height: 19px !important;
|
1012 |
+
}
|
1013 |
+
|
1014 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="70"] {
|
1015 |
+
font-size: 17px !important;
|
1016 |
+
line-height: 19px !important;
|
1017 |
+
}
|
1018 |
+
|
1019 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="71"] {
|
1020 |
+
font-size: 17px !important;
|
1021 |
+
line-height: 19px !important;
|
1022 |
+
}
|
1023 |
+
|
1024 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="72"] {
|
1025 |
+
font-size: 17px !important;
|
1026 |
+
line-height: 19px !important;
|
1027 |
+
}
|
1028 |
+
|
1029 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="73"] {
|
1030 |
+
font-size: 17px !important;
|
1031 |
+
line-height: 19px !important;
|
1032 |
+
}
|
1033 |
+
|
1034 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="74"] {
|
1035 |
+
font-size: 17px !important;
|
1036 |
+
line-height: 19px !important;
|
1037 |
+
}
|
1038 |
+
|
1039 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="75"] {
|
1040 |
+
font-size: 17px !important;
|
1041 |
+
line-height: 19px !important;
|
1042 |
+
}
|
1043 |
+
|
1044 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="76"] {
|
1045 |
+
font-size: 14px !important;
|
1046 |
+
line-height: 16px !important;
|
1047 |
+
}
|
1048 |
+
|
1049 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="77"] {
|
1050 |
+
font-size: 20px !important;
|
1051 |
+
line-height: 22px !important;
|
1052 |
+
font-weight: bold !important;
|
1053 |
+
}
|
1054 |
+
|
1055 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="78"] {
|
1056 |
+
font-size: 17px !important;
|
1057 |
+
line-height: 19px !important;
|
1058 |
+
}
|
1059 |
+
|
1060 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="79"] {
|
1061 |
+
font-size: 17px !important;
|
1062 |
+
line-height: 19px !important;
|
1063 |
+
}
|
1064 |
+
|
1065 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="80"] {
|
1066 |
+
font-size: 17px !important;
|
1067 |
+
line-height: 19px !important;
|
1068 |
+
}
|
1069 |
+
|
1070 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
1071 |
+
font-size: 14px !important;
|
1072 |
+
}
|
1073 |
+
|
1074 |
+
#go-pricing-table-464 .gw-go-col-wrap-1 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
1075 |
+
background-color: #05458c !important;
|
1076 |
+
color: #ffffff !important;
|
1077 |
+
}
|
1078 |
+
|
1079 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-header,
|
1080 |
+
#go-pricing-table-464 .gw-go-col-wrap-2.gw-go-hover .gw-go-header-bottom,
|
1081 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li .gw-go-body-cell:before,
|
1082 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-btn {
|
1083 |
+
background-color: #16bbdc;
|
1084 |
+
}
|
1085 |
+
|
1086 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-price-wrap span,
|
1087 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-coinf div,
|
1088 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-coinb div {
|
1089 |
+
color: #16bbdc;
|
1090 |
+
}
|
1091 |
+
|
1092 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-header h3 {
|
1093 |
+
font-size: 22px !important;
|
1094 |
+
line-height: 24px !important;
|
1095 |
+
}
|
1096 |
+
|
1097 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-price-wrap > span {
|
1098 |
+
font-size: 55px !important;
|
1099 |
+
line-height: 60px !important;
|
1100 |
+
font-weight: bold !important;
|
1101 |
+
}
|
1102 |
+
|
1103 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-price-wrap small {
|
1104 |
+
font-size: 16px !important;
|
1105 |
+
line-height: 18px !important;
|
1106 |
+
}
|
1107 |
+
|
1108 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="0"] {
|
1109 |
+
font-size: 14px !important;
|
1110 |
+
line-height: 16px !important;
|
1111 |
+
}
|
1112 |
+
|
1113 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="1"] {
|
1114 |
+
font-size: 20px !important;
|
1115 |
+
line-height: 22px !important;
|
1116 |
+
font-weight: bold !important;
|
1117 |
+
}
|
1118 |
+
|
1119 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="2"] {
|
1120 |
+
font-size: 17px !important;
|
1121 |
+
line-height: 19px !important;
|
1122 |
+
font-weight: bold !important;
|
1123 |
+
}
|
1124 |
+
|
1125 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="3"] {
|
1126 |
+
font-size: 17px !important;
|
1127 |
+
line-height: 19px !important;
|
1128 |
+
font-weight: bold !important;
|
1129 |
+
}
|
1130 |
+
|
1131 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="4"] {
|
1132 |
+
font-size: 17px !important;
|
1133 |
+
line-height: 19px !important;
|
1134 |
+
font-weight: bold !important;
|
1135 |
+
}
|
1136 |
+
|
1137 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="5"] {
|
1138 |
+
font-size: 17px !important;
|
1139 |
+
line-height: 19px !important;
|
1140 |
+
}
|
1141 |
+
|
1142 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="6"] {
|
1143 |
+
font-size: 14px !important;
|
1144 |
+
line-height: 16px !important;
|
1145 |
+
}
|
1146 |
+
|
1147 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="7"] {
|
1148 |
+
font-size: 20px !important;
|
1149 |
+
line-height: 22px !important;
|
1150 |
+
font-weight: bold !important;
|
1151 |
+
}
|
1152 |
+
|
1153 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="8"] {
|
1154 |
+
font-size: 17px !important;
|
1155 |
+
line-height: 19px !important;
|
1156 |
+
}
|
1157 |
+
|
1158 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="9"] {
|
1159 |
+
font-size: 17px !important;
|
1160 |
+
line-height: 19px !important;
|
1161 |
+
}
|
1162 |
+
|
1163 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="10"] {
|
1164 |
+
font-size: 17px !important;
|
1165 |
+
line-height: 19px !important;
|
1166 |
+
}
|
1167 |
+
|
1168 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="11"] {
|
1169 |
+
font-size: 14px !important;
|
1170 |
+
line-height: 16px !important;
|
1171 |
+
}
|
1172 |
+
|
1173 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="12"] {
|
1174 |
+
font-size: 20px !important;
|
1175 |
+
line-height: 22px !important;
|
1176 |
+
font-weight: bold !important;
|
1177 |
+
}
|
1178 |
+
|
1179 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="13"] {
|
1180 |
+
font-size: 17px !important;
|
1181 |
+
line-height: 19px !important;
|
1182 |
+
}
|
1183 |
+
|
1184 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="14"] {
|
1185 |
+
font-size: 17px !important;
|
1186 |
+
line-height: 19px !important;
|
1187 |
+
}
|
1188 |
+
|
1189 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="15"] {
|
1190 |
+
font-size: 17px !important;
|
1191 |
+
line-height: 19px !important;
|
1192 |
+
}
|
1193 |
+
|
1194 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="16"] {
|
1195 |
+
font-size: 14px !important;
|
1196 |
+
line-height: 16px !important;
|
1197 |
+
}
|
1198 |
+
|
1199 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="17"] {
|
1200 |
+
font-size: 20px !important;
|
1201 |
+
line-height: 22px !important;
|
1202 |
+
font-weight: bold !important;
|
1203 |
+
}
|
1204 |
+
|
1205 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="18"] {
|
1206 |
+
font-size: 17px !important;
|
1207 |
+
line-height: 19px !important;
|
1208 |
+
}
|
1209 |
+
|
1210 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="19"] {
|
1211 |
+
font-size: 17px !important;
|
1212 |
+
line-height: 19px !important;
|
1213 |
+
}
|
1214 |
+
|
1215 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="20"] {
|
1216 |
+
font-size: 14px !important;
|
1217 |
+
line-height: 16px !important;
|
1218 |
+
}
|
1219 |
+
|
1220 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="21"] {
|
1221 |
+
font-size: 20px !important;
|
1222 |
+
line-height: 22px !important;
|
1223 |
+
font-weight: bold !important;
|
1224 |
+
}
|
1225 |
+
|
1226 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="22"] {
|
1227 |
+
font-size: 17px !important;
|
1228 |
+
line-height: 19px !important;
|
1229 |
+
}
|
1230 |
+
|
1231 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="23"] {
|
1232 |
+
font-size: 17px !important;
|
1233 |
+
line-height: 19px !important;
|
1234 |
+
}
|
1235 |
+
|
1236 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="24"] {
|
1237 |
+
font-size: 17px !important;
|
1238 |
+
line-height: 19px !important;
|
1239 |
+
}
|
1240 |
+
|
1241 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="25"] {
|
1242 |
+
font-size: 17px !important;
|
1243 |
+
line-height: 19px !important;
|
1244 |
+
}
|
1245 |
+
|
1246 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="26"] {
|
1247 |
+
font-size: 17px !important;
|
1248 |
+
line-height: 19px !important;
|
1249 |
+
}
|
1250 |
+
|
1251 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="27"] {
|
1252 |
+
font-size: 17px !important;
|
1253 |
+
line-height: 19px !important;
|
1254 |
+
}
|
1255 |
+
|
1256 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="28"] {
|
1257 |
+
font-size: 17px !important;
|
1258 |
+
line-height: 19px !important;
|
1259 |
+
}
|
1260 |
+
|
1261 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="29"] {
|
1262 |
+
font-size: 17px !important;
|
1263 |
+
line-height: 19px !important;
|
1264 |
+
}
|
1265 |
+
|
1266 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="30"] {
|
1267 |
+
font-size: 17px !important;
|
1268 |
+
line-height: 19px !important;
|
1269 |
+
}
|
1270 |
+
|
1271 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="31"] {
|
1272 |
+
font-size: 14px !important;
|
1273 |
+
line-height: 16px !important;
|
1274 |
+
}
|
1275 |
+
|
1276 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="32"] {
|
1277 |
+
font-size: 20px !important;
|
1278 |
+
line-height: 22px !important;
|
1279 |
+
font-weight: bold !important;
|
1280 |
+
}
|
1281 |
+
|
1282 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="33"] {
|
1283 |
+
font-size: 17px !important;
|
1284 |
+
line-height: 19px !important;
|
1285 |
+
}
|
1286 |
+
|
1287 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="34"] {
|
1288 |
+
font-size: 17px !important;
|
1289 |
+
line-height: 19px !important;
|
1290 |
+
}
|
1291 |
+
|
1292 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="35"] {
|
1293 |
+
font-size: 17px !important;
|
1294 |
+
line-height: 19px !important;
|
1295 |
+
}
|
1296 |
+
|
1297 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="36"] {
|
1298 |
+
font-size: 17px !important;
|
1299 |
+
line-height: 19px !important;
|
1300 |
+
}
|
1301 |
+
|
1302 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="37"] {
|
1303 |
+
font-size: 17px !important;
|
1304 |
+
line-height: 19px !important;
|
1305 |
+
}
|
1306 |
+
|
1307 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="38"] {
|
1308 |
+
font-size: 14px !important;
|
1309 |
+
line-height: 16px !important;
|
1310 |
+
}
|
1311 |
+
|
1312 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="39"] {
|
1313 |
+
font-size: 20px !important;
|
1314 |
+
line-height: 22px !important;
|
1315 |
+
font-weight: bold !important;
|
1316 |
+
}
|
1317 |
+
|
1318 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="40"] {
|
1319 |
+
font-size: 17px !important;
|
1320 |
+
line-height: 19px !important;
|
1321 |
+
}
|
1322 |
+
|
1323 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="41"] {
|
1324 |
+
font-size: 17px !important;
|
1325 |
+
line-height: 19px !important;
|
1326 |
+
}
|
1327 |
+
|
1328 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="42"] {
|
1329 |
+
font-size: 17px !important;
|
1330 |
+
line-height: 19px !important;
|
1331 |
+
}
|
1332 |
+
|
1333 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="43"] {
|
1334 |
+
font-size: 17px !important;
|
1335 |
+
line-height: 19px !important;
|
1336 |
+
}
|
1337 |
+
|
1338 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="44"] {
|
1339 |
+
font-size: 17px !important;
|
1340 |
+
line-height: 19px !important;
|
1341 |
+
}
|
1342 |
+
|
1343 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="45"] {
|
1344 |
+
font-size: 17px !important;
|
1345 |
+
line-height: 19px !important;
|
1346 |
+
}
|
1347 |
+
|
1348 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="46"] {
|
1349 |
+
font-size: 17px !important;
|
1350 |
+
line-height: 19px !important;
|
1351 |
+
}
|
1352 |
+
|
1353 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="47"] {
|
1354 |
+
font-size: 17px !important;
|
1355 |
+
line-height: 19px !important;
|
1356 |
+
}
|
1357 |
+
|
1358 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="48"] {
|
1359 |
+
font-size: 14px !important;
|
1360 |
+
line-height: 16px !important;
|
1361 |
+
}
|
1362 |
+
|
1363 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="49"] {
|
1364 |
+
font-size: 20px !important;
|
1365 |
+
line-height: 22px !important;
|
1366 |
+
font-weight: bold !important;
|
1367 |
+
}
|
1368 |
+
|
1369 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="50"] {
|
1370 |
+
font-size: 17px !important;
|
1371 |
+
line-height: 19px !important;
|
1372 |
+
}
|
1373 |
+
|
1374 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="51"] {
|
1375 |
+
font-size: 17px !important;
|
1376 |
+
line-height: 19px !important;
|
1377 |
+
}
|
1378 |
+
|
1379 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="52"] {
|
1380 |
+
font-size: 17px !important;
|
1381 |
+
line-height: 19px !important;
|
1382 |
+
}
|
1383 |
+
|
1384 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="53"] {
|
1385 |
+
font-size: 17px !important;
|
1386 |
+
line-height: 19px !important;
|
1387 |
+
}
|
1388 |
+
|
1389 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="54"] {
|
1390 |
+
font-size: 17px !important;
|
1391 |
+
line-height: 19px !important;
|
1392 |
+
}
|
1393 |
+
|
1394 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="55"] {
|
1395 |
+
font-size: 17px !important;
|
1396 |
+
line-height: 19px !important;
|
1397 |
+
}
|
1398 |
+
|
1399 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="56"] {
|
1400 |
+
font-size: 17px !important;
|
1401 |
+
line-height: 19px !important;
|
1402 |
+
}
|
1403 |
+
|
1404 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="57"] {
|
1405 |
+
font-size: 17px !important;
|
1406 |
+
line-height: 19px !important;
|
1407 |
+
}
|
1408 |
+
|
1409 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="58"] {
|
1410 |
+
font-size: 17px !important;
|
1411 |
+
line-height: 19px !important;
|
1412 |
+
}
|
1413 |
+
|
1414 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="59"] {
|
1415 |
+
font-size: 17px !important;
|
1416 |
+
line-height: 19px !important;
|
1417 |
+
}
|
1418 |
+
|
1419 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="60"] {
|
1420 |
+
font-size: 17px !important;
|
1421 |
+
line-height: 19px !important;
|
1422 |
+
}
|
1423 |
+
|
1424 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="61"] {
|
1425 |
+
font-size: 17px !important;
|
1426 |
+
line-height: 19px !important;
|
1427 |
+
}
|
1428 |
+
|
1429 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="62"] {
|
1430 |
+
font-size: 17px !important;
|
1431 |
+
line-height: 19px !important;
|
1432 |
+
}
|
1433 |
+
|
1434 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="63"] {
|
1435 |
+
font-size: 17px !important;
|
1436 |
+
line-height: 19px !important;
|
1437 |
+
}
|
1438 |
+
|
1439 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="64"] {
|
1440 |
+
font-size: 17px !important;
|
1441 |
+
line-height: 19px !important;
|
1442 |
+
}
|
1443 |
+
|
1444 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="65"] {
|
1445 |
+
font-size: 17px !important;
|
1446 |
+
line-height: 19px !important;
|
1447 |
+
}
|
1448 |
+
|
1449 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="66"] {
|
1450 |
+
font-size: 17px !important;
|
1451 |
+
line-height: 19px !important;
|
1452 |
+
}
|
1453 |
+
|
1454 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="67"] {
|
1455 |
+
font-size: 17px !important;
|
1456 |
+
line-height: 19px !important;
|
1457 |
+
}
|
1458 |
+
|
1459 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="68"] {
|
1460 |
+
font-size: 17px !important;
|
1461 |
+
line-height: 19px !important;
|
1462 |
+
}
|
1463 |
+
|
1464 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="69"] {
|
1465 |
+
font-size: 17px !important;
|
1466 |
+
line-height: 19px !important;
|
1467 |
+
}
|
1468 |
+
|
1469 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="70"] {
|
1470 |
+
font-size: 17px !important;
|
1471 |
+
line-height: 19px !important;
|
1472 |
+
}
|
1473 |
+
|
1474 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="71"] {
|
1475 |
+
font-size: 17px !important;
|
1476 |
+
line-height: 19px !important;
|
1477 |
+
}
|
1478 |
+
|
1479 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="72"] {
|
1480 |
+
font-size: 17px !important;
|
1481 |
+
line-height: 19px !important;
|
1482 |
+
}
|
1483 |
+
|
1484 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="73"] {
|
1485 |
+
font-size: 17px !important;
|
1486 |
+
line-height: 19px !important;
|
1487 |
+
}
|
1488 |
+
|
1489 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="74"] {
|
1490 |
+
font-size: 17px !important;
|
1491 |
+
line-height: 19px !important;
|
1492 |
+
}
|
1493 |
+
|
1494 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="75"] {
|
1495 |
+
font-size: 17px !important;
|
1496 |
+
line-height: 19px !important;
|
1497 |
+
}
|
1498 |
+
|
1499 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="76"] {
|
1500 |
+
font-size: 14px !important;
|
1501 |
+
line-height: 16px !important;
|
1502 |
+
}
|
1503 |
+
|
1504 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="77"] {
|
1505 |
+
font-size: 20px !important;
|
1506 |
+
line-height: 22px !important;
|
1507 |
+
font-weight: bold !important;
|
1508 |
+
}
|
1509 |
+
|
1510 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="78"] {
|
1511 |
+
font-size: 17px !important;
|
1512 |
+
line-height: 19px !important;
|
1513 |
+
}
|
1514 |
+
|
1515 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="79"] {
|
1516 |
+
font-size: 17px !important;
|
1517 |
+
line-height: 19px !important;
|
1518 |
+
}
|
1519 |
+
|
1520 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="80"] {
|
1521 |
+
font-size: 17px !important;
|
1522 |
+
line-height: 19px !important;
|
1523 |
+
}
|
1524 |
+
|
1525 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
1526 |
+
font-size: 14px !important;
|
1527 |
+
}
|
1528 |
+
|
1529 |
+
#go-pricing-table-464 .gw-go-col-wrap-2 .gw-go-footer-row[data-row-index="0"] .gw-go-btn {
|
1530 |
+
background-color: #16bbdc !important;
|
1531 |
+
color: #ffffff !important;
|
1532 |
+
}
|
1533 |
+
|
1534 |
+
#go-pricing-table-464 .gw-go {
|
1535 |
+
visibility: inherit;
|
1536 |
+
}
|
1537 |
+
</style>
|
1538 |
+
<style>
|
1539 |
+
@media only screen and (min-width: 480px) and (max-width: 767px) {
|
1540 |
+
#go-pricing-table-464 .gw-go-col-wrap {
|
1541 |
+
width: 50%;
|
1542 |
+
}
|
1543 |
+
}
|
1544 |
+
</style>
|
1545 |
+
<style>
|
1546 |
+
@media only screen and (max-width: 479px) {
|
1547 |
+
#go-pricing-table-464 .gw-go-col-wrap {
|
1548 |
+
width: 100%;
|
1549 |
+
}
|
1550 |
+
}
|
1551 |
+
</style>
|
1552 |
+
<div id="go-pricing-table-464" class="go-pricing" style="margin-bottom:20px;">
|
1553 |
+
<div class="gw-go gw-go-clearfix gw-go-enlarge-current gw-go-disable-box-shadow gw-go-3cols" data-id="464" data-colnum="3" data-equalize="{"column":1,"body":1,"footer":1}" data-views="{"tp":{"min":"768","max":"959","cols":""},"ml":{"min":"480","max":"767","cols":"2"},"mp":{"min":"","max":"479","cols":"1"}}" style="opacity: 1;">
|
1554 |
+
<div class="gw-go-col-wrap gw-go-col-wrap-0 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="0" style="max-width: 409px; height: 3385px;">
|
1555 |
+
<div class="gw-go-col gw-go-clean-style5">
|
1556 |
+
<div class="gw-go-col-inner">
|
1557 |
+
<div class="gw-go-col-inner-layer"></div>
|
1558 |
+
<div class="gw-go-col-inner-layer-over"></div>
|
1559 |
+
<div class="gw-go-header gw-go-header-standard">
|
1560 |
+
<div class="gw-go-header-top">
|
1561 |
+
<h3>PERSONAL</h3></div>
|
1562 |
+
<div class="gw-go-header-bottom">
|
1563 |
+
<div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":2}" data-price="29"><span data-id="currency">$</span><span data-id="amount">29</span></span><small>One Time Purchase</small></div>
|
1564 |
+
</div>
|
1565 |
+
</div>
|
1566 |
+
<ul class="gw-go-body">
|
1567 |
+
<li data-row-index="0">
|
1568 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1569 |
+
</li>
|
1570 |
+
<li class="gw-go-even" data-row-index="1">
|
1571 |
+
<div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div>
|
1572 |
+
</li>
|
1573 |
+
<li data-row-index="2">
|
1574 |
+
<div class="gw-go-body-cell" style="height: 19px;">1 Installation per License</div>
|
1575 |
+
</li>
|
1576 |
+
<li class="gw-go-even" data-row-index="3">
|
1577 |
+
<div class="gw-go-body-cell" style="height: 37px;">1 week of Technical Support</div>
|
1578 |
+
</li>
|
1579 |
+
<li data-row-index="4">
|
1580 |
+
<div class="gw-go-body-cell" style="height: 19px;">1 year of Free Updates</div>
|
1581 |
+
</li>
|
1582 |
+
<li class="gw-go-even" data-row-index="5">
|
1583 |
+
<div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div>
|
1584 |
+
</li>
|
1585 |
+
<li data-row-index="6">
|
1586 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1587 |
+
</li>
|
1588 |
+
<li class="gw-go-even" data-row-index="7">
|
1589 |
+
<div class="gw-go-body-cell" style="height: 22px;">GALLERIES</div>
|
1590 |
+
</li>
|
1591 |
+
<li data-row-index="8">
|
1592 |
+
<div class="gw-go-body-cell" style="height: 19px;">Manage Galleries</div>
|
1593 |
+
</li>
|
1594 |
+
<li class="gw-go-even" data-row-index="9">
|
1595 |
+
<div class="gw-go-body-cell" style="height: 19px;">Add Gallery</div>
|
1596 |
+
</li>
|
1597 |
+
<li data-row-index="10">
|
1598 |
+
<div class="gw-go-body-cell" style="height: 19px;">Sort Galleries</div>
|
1599 |
+
</li>
|
1600 |
+
<li class="gw-go-even" data-row-index="11">
|
1601 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1602 |
+
</li>
|
1603 |
+
<li data-row-index="12">
|
1604 |
+
<div class="gw-go-body-cell" style="height: 22px;">ALBUMS</div>
|
1605 |
+
</li>
|
1606 |
+
<li class="gw-go-even" data-row-index="13">
|
1607 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1608 |
+
</li>
|
1609 |
+
<li data-row-index="14">
|
1610 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1611 |
+
</li>
|
1612 |
+
<li class="gw-go-even" data-row-index="15">
|
1613 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1614 |
+
</li>
|
1615 |
+
<li data-row-index="16">
|
1616 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1617 |
+
</li>
|
1618 |
+
<li class="gw-go-even" data-row-index="17">
|
1619 |
+
<div class="gw-go-body-cell" style="height: 22px;">TAGS</div>
|
1620 |
+
</li>
|
1621 |
+
<li data-row-index="18">
|
1622 |
+
<div class="gw-go-body-cell" style="height: 19px;">Manage Tags</div>
|
1623 |
+
</li>
|
1624 |
+
<li class="gw-go-even" data-row-index="19">
|
1625 |
+
<div class="gw-go-body-cell" style="height: 19px;">Add Tag</div>
|
1626 |
+
</li>
|
1627 |
+
<li data-row-index="20">
|
1628 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1629 |
+
</li>
|
1630 |
+
<li class="gw-go-even" data-row-index="21">
|
1631 |
+
<div class="gw-go-body-cell" style="height: 22px;">LAYOUT SETTINGS</div>
|
1632 |
+
</li>
|
1633 |
+
<li data-row-index="22">
|
1634 |
+
<div class="gw-go-body-cell" style="height: 19px;">Thumbnail Layout</div>
|
1635 |
+
</li>
|
1636 |
+
<li class="gw-go-even" data-row-index="23">
|
1637 |
+
<div class="gw-go-body-cell" style="height: 19px;">Masonry Layout</div>
|
1638 |
+
</li>
|
1639 |
+
<li data-row-index="24">
|
1640 |
+
<div class="gw-go-body-cell" style="height: 19px;">Slideshow Layout</div>
|
1641 |
+
</li>
|
1642 |
+
<li class="gw-go-even" data-row-index="25">
|
1643 |
+
<div class="gw-go-body-cell" style="height: 19px;">Image Browser Layout</div>
|
1644 |
+
</li>
|
1645 |
+
<li data-row-index="26">
|
1646 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1647 |
+
</li>
|
1648 |
+
<li class="gw-go-even" data-row-index="27">
|
1649 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1650 |
+
</li>
|
1651 |
+
<li data-row-index="28">
|
1652 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1653 |
+
</li>
|
1654 |
+
<li class="gw-go-even" data-row-index="29">
|
1655 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1656 |
+
</li>
|
1657 |
+
<li data-row-index="30">
|
1658 |
+
<div class="gw-go-body-cell" style="height: 19px;">Custom CSS</div>
|
1659 |
+
</li>
|
1660 |
+
<li class="gw-go-even" data-row-index="31">
|
1661 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1662 |
+
</li>
|
1663 |
+
<li data-row-index="32">
|
1664 |
+
<div class="gw-go-body-cell" style="height: 22px;">LIGHTBOXES</div>
|
1665 |
+
</li>
|
1666 |
+
<li class="gw-go-even" data-row-index="33">
|
1667 |
+
<div class="gw-go-body-cell" style="height: 19px;">Lightcase</div>
|
1668 |
+
</li>
|
1669 |
+
<li data-row-index="34">
|
1670 |
+
<div class="gw-go-body-cell" style="height: 19px;">Fancy Box</div>
|
1671 |
+
</li>
|
1672 |
+
<li class="gw-go-even" data-row-index="35">
|
1673 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1674 |
+
</li>
|
1675 |
+
<li data-row-index="36">
|
1676 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1677 |
+
</li>
|
1678 |
+
<li class="gw-go-even" data-row-index="37">
|
1679 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1680 |
+
</li>
|
1681 |
+
<li data-row-index="38">
|
1682 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1683 |
+
</li>
|
1684 |
+
<li class="gw-go-even" data-row-index="39">
|
1685 |
+
<div class="gw-go-body-cell" style="height: 22px;">GENERAL SETTINGS</div>
|
1686 |
+
</li>
|
1687 |
+
<li data-row-index="40">
|
1688 |
+
<div class="gw-go-body-cell" style="height: 19px;">Global Options</div>
|
1689 |
+
</li>
|
1690 |
+
<li class="gw-go-even" data-row-index="41">
|
1691 |
+
<div class="gw-go-body-cell" style="height: 19px;">Lazy Load Settings</div>
|
1692 |
+
</li>
|
1693 |
+
<li data-row-index="42">
|
1694 |
+
<div class="gw-go-body-cell" style="height: 19px;">Filters Settings</div>
|
1695 |
+
</li>
|
1696 |
+
<li class="gw-go-even" data-row-index="43">
|
1697 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1698 |
+
</li>
|
1699 |
+
<li data-row-index="44">
|
1700 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1701 |
+
</li>
|
1702 |
+
<li class="gw-go-even" data-row-index="45">
|
1703 |
+
<div class="gw-go-body-cell" style="height: 19px;">Page Navigation</div>
|
1704 |
+
</li>
|
1705 |
+
<li data-row-index="46">
|
1706 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1707 |
+
</li>
|
1708 |
+
<li class="gw-go-even" data-row-index="47">
|
1709 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1710 |
+
</li>
|
1711 |
+
<li data-row-index="48">
|
1712 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1713 |
+
</li>
|
1714 |
+
<li class="gw-go-even" data-row-index="49">
|
1715 |
+
<div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div>
|
1716 |
+
</li>
|
1717 |
+
<li data-row-index="50">
|
1718 |
+
<div class="gw-go-body-cell" style="height: 19px;">Shortcode Wizard</div>
|
1719 |
+
</li>
|
1720 |
+
<li class="gw-go-even" data-row-index="51">
|
1721 |
+
<div class="gw-go-body-cell" style="height: 19px;">Unlimited Galleries and Images</div>
|
1722 |
+
</li>
|
1723 |
+
<li class="gw-go-even" data-row-index="53">
|
1724 |
+
<div class="gw-go-body-cell" style="height: 19px;">Duplicate Gallery</div>
|
1725 |
+
</li>
|
1726 |
+
<li data-row-index="54">
|
1727 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1728 |
+
</li>
|
1729 |
+
<li class="gw-go-even" data-row-index="55">
|
1730 |
+
<div class="gw-go-body-cell" style="height: 19px;">Filmstrip Gallery</div>
|
1731 |
+
</li>
|
1732 |
+
<li data-row-index="56">
|
1733 |
+
<div class="gw-go-body-cell" style="height: 19px;">Multiple Browser Compatible</div>
|
1734 |
+
</li>
|
1735 |
+
<li class="gw-go-even" data-row-index="57">
|
1736 |
+
<div class="gw-go-body-cell" style="height: 19px;">Supports Media Manager</div>
|
1737 |
+
</li>
|
1738 |
+
<li data-row-index="58">
|
1739 |
+
<div class="gw-go-body-cell" style="height: 19px;">Copy Images</div>
|
1740 |
+
</li>
|
1741 |
+
<li class="gw-go-even" data-row-index="59">
|
1742 |
+
<div class="gw-go-body-cell" style="height: 19px;">Move Images</div>
|
1743 |
+
</li>
|
1744 |
+
<li data-row-index="60">
|
1745 |
+
<div class="gw-go-body-cell" style="height: 19px;">Rotate Clockwise</div>
|
1746 |
+
</li>
|
1747 |
+
<li class="gw-go-even" data-row-index="61">
|
1748 |
+
<div class="gw-go-body-cell" style="height: 19px;">Rotate Anti-Clockwise</div>
|
1749 |
+
</li>
|
1750 |
+
<li data-row-index="62">
|
1751 |
+
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Vertically</div>
|
1752 |
+
</li>
|
1753 |
+
<li class="gw-go-even" data-row-index="63">
|
1754 |
+
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Horizontally</div>
|
1755 |
+
</li>
|
1756 |
+
<li data-row-index="64">
|
1757 |
+
<div class="gw-go-body-cell" style="height: 19px;">Restore Images</div>
|
1758 |
+
</li>
|
1759 |
+
<li class="gw-go-even" data-row-index="65">
|
1760 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1761 |
+
</li>
|
1762 |
+
<li data-row-index="66">
|
1763 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1764 |
+
</li>
|
1765 |
+
<li class="gw-go-even" data-row-index="67">
|
1766 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1767 |
+
</li>
|
1768 |
+
<li data-row-index="68">
|
1769 |
+
<div class="gw-go-body-cell" style="height: 19px;">Hover Effects</div>
|
1770 |
+
</li>
|
1771 |
+
<li class="gw-go-even" data-row-index="69">
|
1772 |
+
<div class="gw-go-body-cell" style="height: 19px;">Animation Effects</div>
|
1773 |
+
</li>
|
1774 |
+
<li data-row-index="70">
|
1775 |
+
<div class="gw-go-body-cell" style="height: 19px;">Special Effects</div>
|
1776 |
+
</li>
|
1777 |
+
<li class="gw-go-even" data-row-index="71">
|
1778 |
+
<div class="gw-go-body-cell" style="height: 19px;">Purge Galleries</div>
|
1779 |
+
</li>
|
1780 |
+
<li data-row-index="72">
|
1781 |
+
<div class="gw-go-body-cell" style="height: 19px;">SEO Friendly</div>
|
1782 |
+
</li>
|
1783 |
+
<li class="gw-go-even" data-row-index="73">
|
1784 |
+
<div class="gw-go-body-cell" style="height: 19px;">Title & Description</div>
|
1785 |
+
</li>
|
1786 |
+
<li data-row-index="74">
|
1787 |
+
<div class="gw-go-body-cell" style="height: 19px;">Font Settings</div>
|
1788 |
+
</li>
|
1789 |
+
<li class="gw-go-even" data-row-index="75">
|
1790 |
+
<div class="gw-go-body-cell" style="height: 19px;">Border Settings</div>
|
1791 |
+
</li>
|
1792 |
+
<li data-row-index="76">
|
1793 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1794 |
+
</li>
|
1795 |
+
<li class="gw-go-even" data-row-index="77">
|
1796 |
+
<div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div>
|
1797 |
+
</li>
|
1798 |
+
<li data-row-index="78">
|
1799 |
+
<div class="gw-go-body-cell" style="height: 19px;">Feature Requests</div>
|
1800 |
+
</li>
|
1801 |
+
<li class="gw-go-even" data-row-index="79">
|
1802 |
+
<div class="gw-go-body-cell" style="height: 19px;">Roles and Capabilities</div>
|
1803 |
+
</li>
|
1804 |
+
<li data-row-index="80">
|
1805 |
+
<div class="gw-go-body-cell" style="height: 19px;">-</div>
|
1806 |
+
</li>
|
1807 |
+
</ul>
|
1808 |
+
<div class="gw-go-footer-wrap">
|
1809 |
+
<div class="gw-go-footer-spacer"></div>
|
1810 |
+
<div class="gw-go-footer">
|
1811 |
+
<div class="gw-go-footer-rows">
|
1812 |
+
<div class="gw-go-footer-row" data-row-index="0">
|
1813 |
+
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="<?php echo tech_banker_gallery_url;?>product/personal-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
1814 |
+
</div>
|
1815 |
+
</div>
|
1816 |
+
</div>
|
1817 |
+
</div>
|
1818 |
+
</div>
|
1819 |
+
<div class="gw-go-tooltip"></div>
|
1820 |
+
</div>
|
1821 |
+
</div>
|
1822 |
+
<div class="gw-go-col-wrap gw-go-col-wrap-1 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="1" style="max-width: 409px; height: 3385px;">
|
1823 |
+
<div class="gw-go-col gw-go-clean-style5">
|
1824 |
+
<div class="gw-go-col-inner">
|
1825 |
+
<div class="gw-go-col-inner-layer"></div>
|
1826 |
+
<div class="gw-go-col-inner-layer-over"></div>
|
1827 |
+
<div class="gw-go-ribbon-right"><img src="<?php echo plugins_url("assets/global/img/ribbon_green_right_top.png", dirname(dirname(__FILE__))); ?>"></div>
|
1828 |
+
<div class="gw-go-header gw-go-header-standard">
|
1829 |
+
<div class="gw-go-header-top">
|
1830 |
+
<h3>BUSINESS</h3></div>
|
1831 |
+
<div class="gw-go-header-bottom">
|
1832 |
+
<div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":2}" data-price="38"><span data-id="currency">$</span><span data-id="amount">38</span></span><small>One Time Purchase</small></div>
|
1833 |
+
</div>
|
1834 |
+
</div>
|
1835 |
+
<ul class="gw-go-body">
|
1836 |
+
<li data-row-index="0">
|
1837 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1838 |
+
</li>
|
1839 |
+
<li class="gw-go-even" data-row-index="1">
|
1840 |
+
<div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div>
|
1841 |
+
</li>
|
1842 |
+
<li data-row-index="2">
|
1843 |
+
<div class="gw-go-body-cell" style="height: 19px;">1 Installation per License</div>
|
1844 |
+
</li>
|
1845 |
+
<li class="gw-go-even" data-row-index="3">
|
1846 |
+
<div class="gw-go-body-cell" style="height: 19px;">1 month of Technical Support</div>
|
1847 |
+
</li>
|
1848 |
+
<li data-row-index="4">
|
1849 |
+
<div class="gw-go-body-cell" style="height: 19px;">1 year of Free Updates</div>
|
1850 |
+
</li>
|
1851 |
+
<li class="gw-go-even" data-row-index="5">
|
1852 |
+
<div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div>
|
1853 |
+
</li>
|
1854 |
+
<li data-row-index="6">
|
1855 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1856 |
+
</li>
|
1857 |
+
<li class="gw-go-even" data-row-index="7">
|
1858 |
+
<div class="gw-go-body-cell" style="height: 22px;">GALLERIES</div>
|
1859 |
+
</li>
|
1860 |
+
<li data-row-index="8">
|
1861 |
+
<div class="gw-go-body-cell" style="height: 19px;">Manage Galleries</div>
|
1862 |
+
</li>
|
1863 |
+
<li class="gw-go-even" data-row-index="9">
|
1864 |
+
<div class="gw-go-body-cell" style="height: 19px;">Add Gallery</div>
|
1865 |
+
</li>
|
1866 |
+
<li data-row-index="10">
|
1867 |
+
<div class="gw-go-body-cell" style="height: 19px;">Sort Galleries</div>
|
1868 |
+
</li>
|
1869 |
+
<li class="gw-go-even" data-row-index="11">
|
1870 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1871 |
+
</li>
|
1872 |
+
<li data-row-index="12">
|
1873 |
+
<div class="gw-go-body-cell" style="height: 22px;">ALBUMS</div>
|
1874 |
+
</li>
|
1875 |
+
<li class="gw-go-even" data-row-index="13">
|
1876 |
+
<div class="gw-go-body-cell" style="height: 19px;">Manage Albums</div>
|
1877 |
+
</li>
|
1878 |
+
<li data-row-index="14">
|
1879 |
+
<div class="gw-go-body-cell" style="height: 19px;">Add Album</div>
|
1880 |
+
</li>
|
1881 |
+
<li class="gw-go-even" data-row-index="15">
|
1882 |
+
<div class="gw-go-body-cell" style="height: 19px;">Sort Albums</div>
|
1883 |
+
</li>
|
1884 |
+
<li data-row-index="16">
|
1885 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1886 |
+
</li>
|
1887 |
+
<li class="gw-go-even" data-row-index="17">
|
1888 |
+
<div class="gw-go-body-cell" style="height: 22px;">TAGS</div>
|
1889 |
+
</li>
|
1890 |
+
<li data-row-index="18">
|
1891 |
+
<div class="gw-go-body-cell" style="height: 19px;">Manage Tags</div>
|
1892 |
+
</li>
|
1893 |
+
<li class="gw-go-even" data-row-index="19">
|
1894 |
+
<div class="gw-go-body-cell" style="height: 19px;">Add Tag</div>
|
1895 |
+
</li>
|
1896 |
+
<li data-row-index="20">
|
1897 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1898 |
+
</li>
|
1899 |
+
<li class="gw-go-even" data-row-index="21">
|
1900 |
+
<div class="gw-go-body-cell" style="height: 22px;">LAYOUT SETTINGS</div>
|
1901 |
+
</li>
|
1902 |
+
<li data-row-index="22">
|
1903 |
+
<div class="gw-go-body-cell" style="height: 19px;">Thumbnail Layout</div>
|
1904 |
+
</li>
|
1905 |
+
<li class="gw-go-even" data-row-index="23">
|
1906 |
+
<div class="gw-go-body-cell" style="height: 19px;">Masonry Layout</div>
|
1907 |
+
</li>
|
1908 |
+
<li data-row-index="24">
|
1909 |
+
<div class="gw-go-body-cell" style="height: 19px;">Slideshow Layout</div>
|
1910 |
+
</li>
|
1911 |
+
<li class="gw-go-even" data-row-index="25">
|
1912 |
+
<div class="gw-go-body-cell" style="height: 19px;">Image Browser Layout</div>
|
1913 |
+
</li>
|
1914 |
+
<li data-row-index="26">
|
1915 |
+
<div class="gw-go-body-cell" style="height: 19px;">Justified Grid Layout</div>
|
1916 |
+
</li>
|
1917 |
+
<li class="gw-go-even" data-row-index="27">
|
1918 |
+
<div class="gw-go-body-cell" style="height: 19px;">Blog Style Layout</div>
|
1919 |
+
</li>
|
1920 |
+
<li data-row-index="28">
|
1921 |
+
<div class="gw-go-body-cell" style="height: 19px;">Compact Album</div>
|
1922 |
+
</li>
|
1923 |
+
<li class="gw-go-even" data-row-index="29">
|
1924 |
+
<div class="gw-go-body-cell" style="height: 19px;">Extended Album</div>
|
1925 |
+
</li>
|
1926 |
+
<li data-row-index="30">
|
1927 |
+
<div class="gw-go-body-cell" style="height: 19px;">Custom CSS</div>
|
1928 |
+
</li>
|
1929 |
+
<li class="gw-go-even" data-row-index="31">
|
1930 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1931 |
+
</li>
|
1932 |
+
<li data-row-index="32">
|
1933 |
+
<div class="gw-go-body-cell" style="height: 22px;">LIGHTBOXES</div>
|
1934 |
+
</li>
|
1935 |
+
<li class="gw-go-even" data-row-index="33">
|
1936 |
+
<div class="gw-go-body-cell" style="height: 19px;">Lightcase</div>
|
1937 |
+
</li>
|
1938 |
+
<li data-row-index="34">
|
1939 |
+
<div class="gw-go-body-cell" style="height: 19px;">Fancy Box</div>
|
1940 |
+
</li>
|
1941 |
+
<li class="gw-go-even" data-row-index="35">
|
1942 |
+
<div class="gw-go-body-cell" style="height: 19px;">Color Box</div>
|
1943 |
+
</li>
|
1944 |
+
<li data-row-index="36">
|
1945 |
+
<div class="gw-go-body-cell" style="height: 19px;">Foo Box</div>
|
1946 |
+
</li>
|
1947 |
+
<li class="gw-go-even" data-row-index="37">
|
1948 |
+
<div class="gw-go-body-cell" style="height: 19px;">Nivo Lightbox</div>
|
1949 |
+
</li>
|
1950 |
+
<li data-row-index="38">
|
1951 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1952 |
+
</li>
|
1953 |
+
<li class="gw-go-even" data-row-index="39">
|
1954 |
+
<div class="gw-go-body-cell" style="height: 22px;">GENERAL SETTINGS</div>
|
1955 |
+
</li>
|
1956 |
+
<li data-row-index="40">
|
1957 |
+
<div class="gw-go-body-cell" style="height: 19px;">Global Options</div>
|
1958 |
+
</li>
|
1959 |
+
<li class="gw-go-even" data-row-index="41">
|
1960 |
+
<div class="gw-go-body-cell" style="height: 19px;">Lazy Load Settings</div>
|
1961 |
+
</li>
|
1962 |
+
<li data-row-index="42">
|
1963 |
+
<div class="gw-go-body-cell" style="height: 19px;">Filters Settings</div>
|
1964 |
+
</li>
|
1965 |
+
<li class="gw-go-even" data-row-index="43">
|
1966 |
+
<div class="gw-go-body-cell" style="height: 19px;">Order By Settings</div>
|
1967 |
+
</li>
|
1968 |
+
<li data-row-index="44">
|
1969 |
+
<div class="gw-go-body-cell" style="height: 19px;">Search Box Settings</div>
|
1970 |
+
</li>
|
1971 |
+
<li class="gw-go-even" data-row-index="45">
|
1972 |
+
<div class="gw-go-body-cell" style="height: 19px;">Page Navigation</div>
|
1973 |
+
</li>
|
1974 |
+
<li data-row-index="46">
|
1975 |
+
<div class="gw-go-body-cell" style="height: 19px;">Watermark Settings</div>
|
1976 |
+
</li>
|
1977 |
+
<li class="gw-go-even" data-row-index="47">
|
1978 |
+
<div class="gw-go-body-cell" style="height: 19px;">Advertisement</div>
|
1979 |
+
</li>
|
1980 |
+
<li data-row-index="48">
|
1981 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
1982 |
+
</li>
|
1983 |
+
<li class="gw-go-even" data-row-index="49">
|
1984 |
+
<div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div>
|
1985 |
+
</li>
|
1986 |
+
<li data-row-index="50">
|
1987 |
+
<div class="gw-go-body-cell" style="height: 19px;">Shortcode Wizard</div>
|
1988 |
+
</li>
|
1989 |
+
<li class="gw-go-even" data-row-index="51">
|
1990 |
+
<div class="gw-go-body-cell" style="height: 19px;">Unlimited Galleries and Images</div>
|
1991 |
+
</li>
|
1992 |
+
<li class="gw-go-even" data-row-index="53">
|
1993 |
+
<div class="gw-go-body-cell" style="height: 19px;">Duplicate Gallery</div>
|
1994 |
+
</li>
|
1995 |
+
<li data-row-index="54">
|
1996 |
+
<div class="gw-go-body-cell" style="height: 19px;">Duplicate Albums</div>
|
1997 |
+
</li>
|
1998 |
+
<li class="gw-go-even" data-row-index="55">
|
1999 |
+
<div class="gw-go-body-cell" style="height: 19px;">Filmstrip Gallery</div>
|
2000 |
+
</li>
|
2001 |
+
<li data-row-index="56">
|
2002 |
+
<div class="gw-go-body-cell" style="height: 19px;">Multiple Browser Compatible</div>
|
2003 |
+
</li>
|
2004 |
+
<li class="gw-go-even" data-row-index="57">
|
2005 |
+
<div class="gw-go-body-cell" style="height: 19px;">Supports Media Manager</div>
|
2006 |
+
</li>
|
2007 |
+
<li data-row-index="58">
|
2008 |
+
<div class="gw-go-body-cell" style="height: 19px;">Copy Images</div>
|
2009 |
+
</li>
|
2010 |
+
<li class="gw-go-even" data-row-index="59">
|
2011 |
+
<div class="gw-go-body-cell" style="height: 19px;">Move Images</div>
|
2012 |
+
</li>
|
2013 |
+
<li data-row-index="60">
|
2014 |
+
<div class="gw-go-body-cell" style="height: 19px;">Rotate Clockwise</div>
|
2015 |
+
</li>
|
2016 |
+
<li class="gw-go-even" data-row-index="61">
|
2017 |
+
<div class="gw-go-body-cell" style="height: 19px;">Rotate Anti-Clockwise</div>
|
2018 |
+
</li>
|
2019 |
+
<li data-row-index="62">
|
2020 |
+
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Vertically</div>
|
2021 |
+
</li>
|
2022 |
+
<li class="gw-go-even" data-row-index="63">
|
2023 |
+
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Horizontally</div>
|
2024 |
+
</li>
|
2025 |
+
<li data-row-index="64">
|
2026 |
+
<div class="gw-go-body-cell" style="height: 19px;">Restore Images</div>
|
2027 |
+
</li>
|
2028 |
+
<li class="gw-go-even" data-row-index="65">
|
2029 |
+
<div class="gw-go-body-cell" style="height: 19px;">Cropping Images</div>
|
2030 |
+
</li>
|
2031 |
+
<li data-row-index="66">
|
2032 |
+
<div class="gw-go-body-cell" style="height: 19px;">Editing Images</div>
|
2033 |
+
</li>
|
2034 |
+
<li class="gw-go-even" data-row-index="67">
|
2035 |
+
<div class="gw-go-body-cell" style="height: 19px;">Saturation Images</div>
|
2036 |
+
</li>
|
2037 |
+
<li data-row-index="68">
|
2038 |
+
<div class="gw-go-body-cell" style="height: 19px;">Hover Effects</div>
|
2039 |
+
</li>
|
2040 |
+
<li class="gw-go-even" data-row-index="69">
|
2041 |
+
<div class="gw-go-body-cell" style="height: 19px;">Animation Effects</div>
|
2042 |
+
</li>
|
2043 |
+
<li data-row-index="70">
|
2044 |
+
<div class="gw-go-body-cell" style="height: 19px;">Special Effects</div>
|
2045 |
+
</li>
|
2046 |
+
<li class="gw-go-even" data-row-index="71">
|
2047 |
+
<div class="gw-go-body-cell" style="height: 19px;">Purge Galleries</div>
|
2048 |
+
</li>
|
2049 |
+
<li data-row-index="72">
|
2050 |
+
<div class="gw-go-body-cell" style="height: 19px;">SEO Friendly</div>
|
2051 |
+
</li>
|
2052 |
+
<li class="gw-go-even" data-row-index="73">
|
2053 |
+
<div class="gw-go-body-cell" style="height: 19px;">Title & Description</div>
|
2054 |
+
</li>
|
2055 |
+
<li data-row-index="74">
|
2056 |
+
<div class="gw-go-body-cell" style="height: 19px;">Font Settings</div>
|
2057 |
+
</li>
|
2058 |
+
<li class="gw-go-even" data-row-index="75">
|
2059 |
+
<div class="gw-go-body-cell" style="height: 19px;">Border Settings</div>
|
2060 |
+
</li>
|
2061 |
+
<li data-row-index="76">
|
2062 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2063 |
+
</li>
|
2064 |
+
<li class="gw-go-even" data-row-index="77">
|
2065 |
+
<div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div>
|
2066 |
+
</li>
|
2067 |
+
<li data-row-index="78">
|
2068 |
+
<div class="gw-go-body-cell" style="height: 19px;">Feature Requests</div>
|
2069 |
+
</li>
|
2070 |
+
<li class="gw-go-even" data-row-index="79">
|
2071 |
+
<div class="gw-go-body-cell" style="height: 19px;">Roles and Capabilities</div>
|
2072 |
+
</li>
|
2073 |
+
<li data-row-index="80">
|
2074 |
+
<div class="gw-go-body-cell" style="height: 19px;">Bulk Deletion of Records</div>
|
2075 |
+
</li>
|
2076 |
+
</ul>
|
2077 |
+
<div class="gw-go-footer-wrap">
|
2078 |
+
<div class="gw-go-footer-spacer"></div>
|
2079 |
+
<div class="gw-go-footer">
|
2080 |
+
<div class="gw-go-footer-rows">
|
2081 |
+
<div class="gw-go-footer-row" data-row-index="0">
|
2082 |
+
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="<?php echo tech_banker_gallery_url;?>product/business-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
2083 |
+
</div>
|
2084 |
+
</div>
|
2085 |
+
</div>
|
2086 |
+
</div>
|
2087 |
+
</div>
|
2088 |
+
<div class="gw-go-tooltip"></div>
|
2089 |
+
</div>
|
2090 |
+
</div>
|
2091 |
+
<div class="gw-go-col-wrap gw-go-col-wrap-2 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="2" style="max-width: 409px; height: 3385px;">
|
2092 |
+
<div class="gw-go-col gw-go-clean-style5">
|
2093 |
+
<div class="gw-go-col-inner">
|
2094 |
+
<div class="gw-go-col-inner-layer"></div>
|
2095 |
+
<div class="gw-go-col-inner-layer-over"></div>
|
2096 |
+
<div class="gw-go-header gw-go-header-standard">
|
2097 |
+
<div class="gw-go-header-top">
|
2098 |
+
<h3>DEVELOPER</h3></div>
|
2099 |
+
<div class="gw-go-header-bottom">
|
2100 |
+
<div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":2}" data-price="146"><span data-id="currency">$</span><span data-id="amount">146</span></span><small>One Time Purchase</small></div>
|
2101 |
+
</div>
|
2102 |
+
</div>
|
2103 |
+
<ul class="gw-go-body">
|
2104 |
+
<li data-row-index="0">
|
2105 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2106 |
+
</li>
|
2107 |
+
<li class="gw-go-even" data-row-index="1">
|
2108 |
+
<div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div>
|
2109 |
+
</li>
|
2110 |
+
<li data-row-index="2">
|
2111 |
+
<div class="gw-go-body-cell" style="height: 19px;">5 Installations per License</div>
|
2112 |
+
</li>
|
2113 |
+
<li class="gw-go-even" data-row-index="3">
|
2114 |
+
<div class="gw-go-body-cell" style="height: 19px;">6 months of Technical Support</div>
|
2115 |
+
</li>
|
2116 |
+
<li data-row-index="4">
|
2117 |
+
<div class="gw-go-body-cell" style="height: 19px;">Life Time Free Updates</div>
|
2118 |
+
</li>
|
2119 |
+
<li class="gw-go-even" data-row-index="5">
|
2120 |
+
<div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div>
|
2121 |
+
</li>
|
2122 |
+
<li data-row-index="6">
|
2123 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2124 |
+
</li>
|
2125 |
+
<li class="gw-go-even" data-row-index="7">
|
2126 |
+
<div class="gw-go-body-cell" style="height: 22px;">GALLERIES</div>
|
2127 |
+
</li>
|
2128 |
+
<li data-row-index="8">
|
2129 |
+
<div class="gw-go-body-cell" style="height: 19px;">Manage Galleries</div>
|
2130 |
+
</li>
|
2131 |
+
<li class="gw-go-even" data-row-index="9">
|
2132 |
+
<div class="gw-go-body-cell" style="height: 19px;">Add Gallery</div>
|
2133 |
+
</li>
|
2134 |
+
<li data-row-index="10">
|
2135 |
+
<div class="gw-go-body-cell" style="height: 19px;">Sort Galleries</div>
|
2136 |
+
</li>
|
2137 |
+
<li class="gw-go-even" data-row-index="11">
|
2138 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2139 |
+
</li>
|
2140 |
+
<li data-row-index="12">
|
2141 |
+
<div class="gw-go-body-cell" style="height: 22px;">ALBUMS</div>
|
2142 |
+
</li>
|
2143 |
+
<li class="gw-go-even" data-row-index="13">
|
2144 |
+
<div class="gw-go-body-cell" style="height: 19px;">Manage Albums</div>
|
2145 |
+
</li>
|
2146 |
+
<li data-row-index="14">
|
2147 |
+
<div class="gw-go-body-cell" style="height: 19px;">Add Album</div>
|
2148 |
+
</li>
|
2149 |
+
<li class="gw-go-even" data-row-index="15">
|
2150 |
+
<div class="gw-go-body-cell" style="height: 19px;">Sort Albums</div>
|
2151 |
+
</li>
|
2152 |
+
<li data-row-index="16">
|
2153 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2154 |
+
</li>
|
2155 |
+
<li class="gw-go-even" data-row-index="17">
|
2156 |
+
<div class="gw-go-body-cell" style="height: 22px;">TAGS</div>
|
2157 |
+
</li>
|
2158 |
+
<li data-row-index="18">
|
2159 |
+
<div class="gw-go-body-cell" style="height: 19px;">Manage Tags</div>
|
2160 |
+
</li>
|
2161 |
+
<li class="gw-go-even" data-row-index="19">
|
2162 |
+
<div class="gw-go-body-cell" style="height: 19px;">Add Tag</div>
|
2163 |
+
</li>
|
2164 |
+
<li data-row-index="20">
|
2165 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2166 |
+
</li>
|
2167 |
+
<li class="gw-go-even" data-row-index="21">
|
2168 |
+
<div class="gw-go-body-cell" style="height: 22px;">LAYOUT SETTINGS</div>
|
2169 |
+
</li>
|
2170 |
+
<li data-row-index="22">
|
2171 |
+
<div class="gw-go-body-cell" style="height: 19px;">Thumbnail Layout</div>
|
2172 |
+
</li>
|
2173 |
+
<li class="gw-go-even" data-row-index="23">
|
2174 |
+
<div class="gw-go-body-cell" style="height: 19px;">Masonry Layout</div>
|
2175 |
+
</li>
|
2176 |
+
<li data-row-index="24">
|
2177 |
+
<div class="gw-go-body-cell" style="height: 19px;">Slideshow Layout</div>
|
2178 |
+
</li>
|
2179 |
+
<li class="gw-go-even" data-row-index="25">
|
2180 |
+
<div class="gw-go-body-cell" style="height: 19px;">Image Browser Layout</div>
|
2181 |
+
</li>
|
2182 |
+
<li data-row-index="26">
|
2183 |
+
<div class="gw-go-body-cell" style="height: 19px;">Justified Grid Layout</div>
|
2184 |
+
</li>
|
2185 |
+
<li class="gw-go-even" data-row-index="27">
|
2186 |
+
<div class="gw-go-body-cell" style="height: 19px;">Blog Style Layout</div>
|
2187 |
+
</li>
|
2188 |
+
<li data-row-index="28">
|
2189 |
+
<div class="gw-go-body-cell" style="height: 19px;">Compact Album</div>
|
2190 |
+
</li>
|
2191 |
+
<li class="gw-go-even" data-row-index="29">
|
2192 |
+
<div class="gw-go-body-cell" style="height: 19px;">Extended Album</div>
|
2193 |
+
</li>
|
2194 |
+
<li data-row-index="30">
|
2195 |
+
<div class="gw-go-body-cell" style="height: 19px;">Custom CSS</div>
|
2196 |
+
</li>
|
2197 |
+
<li class="gw-go-even" data-row-index="31">
|
2198 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2199 |
+
</li>
|
2200 |
+
<li data-row-index="32">
|
2201 |
+
<div class="gw-go-body-cell" style="height: 22px;">LIGHTBOXES</div>
|
2202 |
+
</li>
|
2203 |
+
<li class="gw-go-even" data-row-index="33">
|
2204 |
+
<div class="gw-go-body-cell" style="height: 19px;">Lightcase</div>
|
2205 |
+
</li>
|
2206 |
+
<li data-row-index="34">
|
2207 |
+
<div class="gw-go-body-cell" style="height: 19px;">Fancy Box</div>
|
2208 |
+
</li>
|
2209 |
+
<li class="gw-go-even" data-row-index="35">
|
2210 |
+
<div class="gw-go-body-cell" style="height: 19px;">Color Box</div>
|
2211 |
+
</li>
|
2212 |
+
<li data-row-index="36">
|
2213 |
+
<div class="gw-go-body-cell" style="height: 19px;">Foo Box</div>
|
2214 |
+
</li>
|
2215 |
+
<li class="gw-go-even" data-row-index="37">
|
2216 |
+
<div class="gw-go-body-cell" style="height: 19px;">Nivo Lightbox</div>
|
2217 |
+
</li>
|
2218 |
+
<li data-row-index="38">
|
2219 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2220 |
+
</li>
|
2221 |
+
<li class="gw-go-even" data-row-index="39">
|
2222 |
+
<div class="gw-go-body-cell" style="height: 22px;">GENERAL SETTINGS</div>
|
2223 |
+
</li>
|
2224 |
+
<li data-row-index="40">
|
2225 |
+
<div class="gw-go-body-cell" style="height: 19px;">Global Options</div>
|
2226 |
+
</li>
|
2227 |
+
<li class="gw-go-even" data-row-index="41">
|
2228 |
+
<div class="gw-go-body-cell" style="height: 19px;">Lazy Load Settings</div>
|
2229 |
+
</li>
|
2230 |
+
<li data-row-index="42">
|
2231 |
+
<div class="gw-go-body-cell" style="height: 19px;">Filters Settings</div>
|
2232 |
+
</li>
|
2233 |
+
<li class="gw-go-even" data-row-index="43">
|
2234 |
+
<div class="gw-go-body-cell" style="height: 19px;">Order By Settings</div>
|
2235 |
+
</li>
|
2236 |
+
<li data-row-index="44">
|
2237 |
+
<div class="gw-go-body-cell" style="height: 19px;">Search Box Settings</div>
|
2238 |
+
</li>
|
2239 |
+
<li class="gw-go-even" data-row-index="45">
|
2240 |
+
<div class="gw-go-body-cell" style="height: 19px;">Page Navigation</div>
|
2241 |
+
</li>
|
2242 |
+
<li data-row-index="46">
|
2243 |
+
<div class="gw-go-body-cell" style="height: 19px;">Watermark Settings</div>
|
2244 |
+
</li>
|
2245 |
+
<li class="gw-go-even" data-row-index="47">
|
2246 |
+
<div class="gw-go-body-cell" style="height: 19px;">Advertisement</div>
|
2247 |
+
</li>
|
2248 |
+
<li data-row-index="48">
|
2249 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2250 |
+
</li>
|
2251 |
+
<li class="gw-go-even" data-row-index="49">
|
2252 |
+
<div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div>
|
2253 |
+
</li>
|
2254 |
+
<li data-row-index="50">
|
2255 |
+
<div class="gw-go-body-cell" style="height: 19px;">Shortcode Wizard</div>
|
2256 |
+
</li>
|
2257 |
+
<li class="gw-go-even" data-row-index="51">
|
2258 |
+
<div class="gw-go-body-cell" style="height: 19px;">Unlimited Galleries and Images</div>
|
2259 |
+
</li>
|
2260 |
+
<li class="gw-go-even" data-row-index="53">
|
2261 |
+
<div class="gw-go-body-cell" style="height: 19px;">Duplicate Gallery</div>
|
2262 |
+
</li>
|
2263 |
+
<li data-row-index="54">
|
2264 |
+
<div class="gw-go-body-cell" style="height: 19px;">Duplicate Albums</div>
|
2265 |
+
</li>
|
2266 |
+
<li class="gw-go-even" data-row-index="55">
|
2267 |
+
<div class="gw-go-body-cell" style="height: 19px;">Filmstrip Gallery</div>
|
2268 |
+
</li>
|
2269 |
+
<li data-row-index="56">
|
2270 |
+
<div class="gw-go-body-cell" style="height: 19px;">Multiple Browser Compatible</div>
|
2271 |
+
</li>
|
2272 |
+
<li class="gw-go-even" data-row-index="57">
|
2273 |
+
<div class="gw-go-body-cell" style="height: 19px;">Supports Media Manager</div>
|
2274 |
+
</li>
|
2275 |
+
<li data-row-index="58">
|
2276 |
+
<div class="gw-go-body-cell" style="height: 19px;">Copy Images</div>
|
2277 |
+
</li>
|
2278 |
+
<li class="gw-go-even" data-row-index="59">
|
2279 |
+
<div class="gw-go-body-cell" style="height: 19px;">Move Images</div>
|
2280 |
+
</li>
|
2281 |
+
<li data-row-index="60">
|
2282 |
+
<div class="gw-go-body-cell" style="height: 19px;">Rotate Clockwise</div>
|
2283 |
+
</li>
|
2284 |
+
<li class="gw-go-even" data-row-index="61">
|
2285 |
+
<div class="gw-go-body-cell" style="height: 19px;">Rotate Anti-Clockwise</div>
|
2286 |
+
</li>
|
2287 |
+
<li data-row-index="62">
|
2288 |
+
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Vertically</div>
|
2289 |
+
</li>
|
2290 |
+
<li class="gw-go-even" data-row-index="63">
|
2291 |
+
<div class="gw-go-body-cell" style="height: 19px;">Flip Images Horizontally</div>
|
2292 |
+
</li>
|
2293 |
+
<li data-row-index="64">
|
2294 |
+
<div class="gw-go-body-cell" style="height: 19px;">Restore Images</div>
|
2295 |
+
</li>
|
2296 |
+
<li class="gw-go-even" data-row-index="65">
|
2297 |
+
<div class="gw-go-body-cell" style="height: 19px;">Cropping Images</div>
|
2298 |
+
</li>
|
2299 |
+
<li data-row-index="66">
|
2300 |
+
<div class="gw-go-body-cell" style="height: 19px;">Editing Images</div>
|
2301 |
+
</li>
|
2302 |
+
<li class="gw-go-even" data-row-index="67">
|
2303 |
+
<div class="gw-go-body-cell" style="height: 19px;">Saturation Images</div>
|
2304 |
+
</li>
|
2305 |
+
<li data-row-index="68">
|
2306 |
+
<div class="gw-go-body-cell" style="height: 19px;">Hover Effects</div>
|
2307 |
+
</li>
|
2308 |
+
<li class="gw-go-even" data-row-index="69">
|
2309 |
+
<div class="gw-go-body-cell" style="height: 19px;">Animation Effects</div>
|
2310 |
+
</li>
|
2311 |
+
<li data-row-index="70">
|
2312 |
+
<div class="gw-go-body-cell" style="height: 19px;">Special Effects</div>
|
2313 |
+
</li>
|
2314 |
+
<li class="gw-go-even" data-row-index="71">
|
2315 |
+
<div class="gw-go-body-cell" style="height: 19px;">Purge Galleries</div>
|
2316 |
+
</li>
|
2317 |
+
<li data-row-index="72">
|
2318 |
+
<div class="gw-go-body-cell" style="height: 19px;">SEO Friendly</div>
|
2319 |
+
</li>
|
2320 |
+
<li class="gw-go-even" data-row-index="73">
|
2321 |
+
<div class="gw-go-body-cell" style="height: 19px;">Title & Description</div>
|
2322 |
+
</li>
|
2323 |
+
<li data-row-index="74">
|
2324 |
+
<div class="gw-go-body-cell" style="height: 19px;">Font Settings</div>
|
2325 |
+
</li>
|
2326 |
+
<li class="gw-go-even" data-row-index="75">
|
2327 |
+
<div class="gw-go-body-cell" style="height: 19px;">Border Settings</div>
|
2328 |
+
</li>
|
2329 |
+
<li data-row-index="76">
|
2330 |
+
<div class="gw-go-body-cell" style="height: 0px;"></div>
|
2331 |
+
</li>
|
2332 |
+
<li class="gw-go-even" data-row-index="77">
|
2333 |
+
<div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div>
|
2334 |
+
</li>
|
2335 |
+
<li data-row-index="78">
|
2336 |
+
<div class="gw-go-body-cell" style="height: 19px;">Feature Requests</div>
|
2337 |
+
</li>
|
2338 |
+
<li class="gw-go-even" data-row-index="79">
|
2339 |
+
<div class="gw-go-body-cell" style="height: 19px;">Roles and Capabilities</div>
|
2340 |
+
</li>
|
2341 |
+
<li data-row-index="80">
|
2342 |
+
<div class="gw-go-body-cell" style="height: 19px;">Bulk Deletion of Records</div>
|
2343 |
+
</li>
|
2344 |
+
</ul>
|
2345 |
+
<div class="gw-go-footer-wrap">
|
2346 |
+
<div class="gw-go-footer-spacer"></div>
|
2347 |
+
<div class="gw-go-footer">
|
2348 |
+
<div class="gw-go-footer-rows">
|
2349 |
+
<div class="gw-go-footer-row" data-row-index="0">
|
2350 |
+
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="<?php echo tech_banker_gallery_url;?>product/developer-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
2351 |
+
</div>
|
2352 |
+
</div>
|
2353 |
+
</div>
|
2354 |
+
</div>
|
2355 |
+
</div>
|
2356 |
+
</div>
|
2357 |
+
</div>
|
2358 |
+
</div>
|
2359 |
+
</div>
|
2360 |
+
</div>
|
2361 |
+
</div>
|
2362 |
+
</form>
|
2363 |
+
</div>
|
2364 |
+
</div>
|
2365 |
+
</div>
|
2366 |
+
</div>
|
2367 |
+
</div>
|
2368 |
+
<div class="tab-pane" id="live_demos">
|
2369 |
+
<div class="row">
|
2370 |
+
<div class="col-md-12">
|
2371 |
+
<div class="portlet box vivid-green">
|
2372 |
+
<div class="portlet-title" onclick="show_hide_text_field_options('ux_div_thumbnail_layout');">
|
2373 |
+
<div class="caption">
|
2374 |
+
<i class="icon-custom-plus"></i>
|
2375 |
+
<?php echo "Thumbnail Layout"; ?>
|
2376 |
+
</div>
|
2377 |
+
<span class="dashicons dashicons-arrow-down downarraow-toggle"></span>
|
2378 |
+
</div>
|
2379 |
+
<div class="portlet-body form">
|
2380 |
+
<div class="form-body" id="ux_div_thumbnail_layout">
|
2381 |
+
<div class="row">
|
2382 |
+
<div class="col-md-4">
|
2383 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Individual Images</h3>
|
2384 |
+
<div class="standard-arrow list-divider bullet-top">
|
2385 |
+
<ul>
|
2386 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-title-thumbnail-layout/">With Title</a></li>
|
2387 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-title-description-thumbnail-layout/">With Title & Description</a></li>
|
2388 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-without-title-description-thumbnail-layout/">Without Title & Description</a></li>
|
2389 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-lightboxes-thumbnail-layout/">Lightboxes</a></li>
|
2390 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-pagination-thumbnail-layout/">Pagination</a></li>
|
2391 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-thumbnail-layout/">Lazy Load</a></li>
|
2392 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-filters-thumbnail-layout/">Filters</a></li>
|
2393 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-thumbnail-layout/">Order By</a></li>
|
2394 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-thumbnail-layout/">Search Box</a></li>
|
2395 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-watermark-thumbnail-layout/">Watermark</a></li>
|
2396 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-animation-thumbnail-layout/">Animation</a></li>
|
2397 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-special-effects-thumbnail-layout/">Special Effects</a></li>
|
2398 |
+
</ul>
|
2399 |
+
</div>
|
2400 |
+
</div>
|
2401 |
+
<div class="col-md-4">
|
2402 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Compact Album</h3>
|
2403 |
+
<div class="standard-arrow list-divider bullet-top">
|
2404 |
+
<ul>
|
2405 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-title-thumbnail-layout/">With Title</a></li>
|
2406 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-title-description-thumbnail-layout/">With Title & Description</a></li>
|
2407 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-without-title-description-thumbnail-layout/">Without Title & Description</a></li>
|
2408 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-lightboxes-thumbnail-layout/">Lightboxes</a></li>
|
2409 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-pagination-thumbnail-layout/">Pagination</a></li>
|
2410 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-lazy-load-thumbnail-layout/">Lazy Load</a></li>
|
2411 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-filters-thumbnail-layout/">Filters</a></li>
|
2412 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-order-by-thumbnail-layout/">Order By</a></li>
|
2413 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-search-box-thumbnail-layout/">Search Box</a></li>
|
2414 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-watermark-thumbnail-layout/">Watermark</a></li>
|
2415 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-animation-thumbnail-layout/">Animation</a></li>
|
2416 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-special-effects-thumbnail-layout/">Special Effects</a></li>
|
2417 |
+
</ul>
|
2418 |
+
</div>
|
2419 |
+
</div>
|
2420 |
+
<div class="col-md-4">
|
2421 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Extended Album</h3>
|
2422 |
+
<div class="standard-arrow list-divider bullet-top">
|
2423 |
+
<ul>
|
2424 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-title-thumbnail-layout/">With Title</a></li>
|
2425 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-title-description-thumbnail-layout/">With Title & Description</a></li>
|
2426 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-without-title-description-thumbnail-layout/">Without Title & Description</a></li>
|
2427 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-lightboxes-thumbnail-layout/">Lightboxes</a></li>
|
2428 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-pagination-thumbnail-layout/">Pagination</a></li>
|
2429 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-lazy-load-thumbnail-layout/">Lazy Load</a></li>
|
2430 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-filters-thumbnail-layout/">Filters</a></li>
|
2431 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-order-by-thumbnail-layout/">Order By</a></li>
|
2432 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-search-box-thumbnail-layout/">Search Box</a></li>
|
2433 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-watermark-thumbnail-layout/">Watermark</a></li>
|
2434 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-animation-thumbnail-layout/">Animation</a></li>
|
2435 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-special-effects-thumbnail-layout/">Special Effects</a></li>
|
2436 |
+
</ul>
|
2437 |
+
</div>
|
2438 |
+
</div>
|
2439 |
+
</div>
|
2440 |
+
</div>
|
2441 |
+
</div>
|
2442 |
+
</div>
|
2443 |
+
</div>
|
2444 |
+
</div>
|
2445 |
+
<div class="row">
|
2446 |
+
<div class="col-md-12">
|
2447 |
+
<div class="portlet box vivid-green toggle-portlet">
|
2448 |
+
<div class="portlet-title" onclick="show_hide_text_field_options('ux_div_masonry_layout');">
|
2449 |
+
<div class="caption">
|
2450 |
+
<i class="icon-custom-plus"></i>
|
2451 |
+
<?php echo "Masonry Layout"; ?>
|
2452 |
+
</div>
|
2453 |
+
<span class="dashicons dashicons-arrow-down downarraow-toggle"></span>
|
2454 |
+
</div>
|
2455 |
+
<div class="portlet-body form">
|
2456 |
+
<div class="form-body" id="ux_div_masonry_layout">
|
2457 |
+
<div class="row">
|
2458 |
+
<div class="col-md-4">
|
2459 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Individual Images</h3>
|
2460 |
+
<div class="standard-arrow list-divider bullet-top">
|
2461 |
+
<ul>
|
2462 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-title-masonry-layout/">With Title</a></li>
|
2463 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-title-description-masonry-layout/">With Title & Description</a></li>
|
2464 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-without-title-description-masonry-layout/">Without Title & Description</a></li>
|
2465 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-lightboxes-masonry-layout/">Lightboxes</a></li>
|
2466 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-pagination-masonry-layout/">Pagination</a></li>
|
2467 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-masonry-layout/">Lazy Load</a></li>
|
2468 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-filters-masonry-layout/">Filters</a></li>
|
2469 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-masonry-layout/">Order By</a></li>
|
2470 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-masonry-layout/">Search Box</a></li>
|
2471 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-watermark-masonry-layout/">Watermark</a></li>
|
2472 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-animation-masonry-layout/">Animation</a></li>
|
2473 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-special-effects-masonry-layout/">Special Effects</a></li>
|
2474 |
+
</ul>
|
2475 |
+
</div>
|
2476 |
+
</div>
|
2477 |
+
<div class="col-md-4">
|
2478 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Compact Album</h3>
|
2479 |
+
<div class="standard-arrow list-divider bullet-top">
|
2480 |
+
<ul>
|
2481 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-title-masonry-layout/">With Title</a></li>
|
2482 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-title-description-masonry-layout/">With Title & Description</a></li>
|
2483 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-without-title-description-masonry-layout/">Without Title & Description</a></li>
|
2484 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-lightboxes-masonry-layout/">Lightboxes</a></li>
|
2485 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-pagination-masonry-layout/">Pagination</a></li>
|
2486 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-lazy-load-masonry-layout/">Lazy Load</a></li>
|
2487 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-filters-masonry-layout/">Filters</a></li>
|
2488 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-order-by-masonry-layout/">Order By</a></li>
|
2489 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-search-box-masonry-layout/">Search Box</a></li>
|
2490 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-watermark-masonry-layout/">Watermark</a></li>
|
2491 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-animation-masonry-layout/">Animation</a></li>
|
2492 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-special-effects-masonry-layout/">Special Effects</a></li>
|
2493 |
+
</ul>
|
2494 |
+
</div>
|
2495 |
+
</div>
|
2496 |
+
<div class="col-md-4">
|
2497 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Extended Album</h3>
|
2498 |
+
<div class="standard-arrow list-divider bullet-top">
|
2499 |
+
<ul>
|
2500 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-title-masonry-layout/">With Title</a></li>
|
2501 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-title-description-masonry-layout/">With Title & Description</a></li>
|
2502 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-without-title-description-masonry-layout/">Without Title & Description</a></li>
|
2503 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-lightboxes-masonry-layout/">Lightboxes</a></li>
|
2504 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-pagination-masonry-layout/">Pagination</a></li>
|
2505 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-lazy-load-masonry-layout/">Lazy Load</a></li>
|
2506 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-filters-masonry-layout/">Filters</a></li>
|
2507 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-order-by-masonry-layout/">Order By</a></li>
|
2508 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-search-box-masonry-layout/">Search Box</a></li>
|
2509 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-watermark-masonry-layout/">Watermark</a></li>
|
2510 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-animation-masonry-layout/">Animation</a></li>
|
2511 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-special-effects-masonry-layout/">Special Effects</a></li>
|
2512 |
+
</ul>
|
2513 |
+
</div>
|
2514 |
+
</div>
|
2515 |
+
</div>
|
2516 |
+
</div>
|
2517 |
+
</div>
|
2518 |
+
</div>
|
2519 |
+
</div>
|
2520 |
+
</div>
|
2521 |
+
<div class="row">
|
2522 |
+
<div class="col-md-12">
|
2523 |
+
<div class="portlet box vivid-green toggle-portlet">
|
2524 |
+
<div class="portlet-title" onclick="show_hide_text_field_options('ux_div_slideshow_layout');">
|
2525 |
+
<div class="caption">
|
2526 |
+
<i class="icon-custom-plus"></i>
|
2527 |
+
<?php echo "SlideShow Layout"; ?>
|
2528 |
+
</div>
|
2529 |
+
<span class="dashicons dashicons-arrow-down downarraow-toggle"></span>
|
2530 |
+
</div>
|
2531 |
+
<div class="portlet-body form">
|
2532 |
+
<div class="form-body" id="ux_div_slideshow_layout">
|
2533 |
+
<div class="row">
|
2534 |
+
<div class="col-md-4">
|
2535 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Individual Images</h3>
|
2536 |
+
<div class="standard-arrow list-divider bullet-top">
|
2537 |
+
<ul>
|
2538 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-title-slideshow-layout/">With Title</a></li>
|
2539 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-title-description-slideshow-layout/">With Title & Description</a></li>
|
2540 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-without-title-description-slideshow-layout/">Without Title & Description</a></li>
|
2541 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-slideshow-layout/">Lazy Load</a></li>
|
2542 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-filters-slideshow-layout/">Filters</a></li>
|
2543 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-slideshow-layout/">Order By</a></li>
|
2544 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-slideshow-layout/">Search Box</a></li>
|
2545 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-watermark-slideshow-layout/">Watermark</a></li>
|
2546 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-animation-slideshow-layout/">Animation</a></li>
|
2547 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-special-effects-slideshow-layout/">Special Effects</a></li>
|
2548 |
+
</ul>
|
2549 |
+
</div>
|
2550 |
+
</div>
|
2551 |
+
<div class="col-md-4">
|
2552 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Compact Album</h3>
|
2553 |
+
<div class="standard-arrow list-divider bullet-top">
|
2554 |
+
<ul>
|
2555 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-title-slideshow-layout/">With Title</a></li>
|
2556 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-title-description-slideshow-layout/">With Title & Description</a></li>
|
2557 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-without-title-description-slideshow-layout/">Without Title & Description</a></li>
|
2558 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-lazy-load-slideshow-layout/">Lazy Load</a></li>
|
2559 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-filters-slideshow-layout/">Filters</a></li>
|
2560 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-order-by-slideshow-layout/">Order By</a></li>
|
2561 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-search-box-slideshow-layout/">Search Box</a></li>
|
2562 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-watermark-slideshow-layout/">Watermark</a></li>
|
2563 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-animation-slideshow-layout/">Animation</a></li>
|
2564 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-special-effects-slideshow-layout/">Special Effects</a></li>
|
2565 |
+
</ul>
|
2566 |
+
</div>
|
2567 |
+
</div>
|
2568 |
+
<div class="col-md-4">
|
2569 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Extended Album</h3>
|
2570 |
+
<div class="standard-arrow list-divider bullet-top">
|
2571 |
+
<ul>
|
2572 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-title-slideshow-layout/">With Title</a></li>
|
2573 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-title-description-slideshow-layout/">With Title & Description</a></li>
|
2574 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-without-title-description-slideshow-layout/">Without Title & Description</a></li>
|
2575 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-lazy-load-slideshow-layout/">Lazy Load</a></li>
|
2576 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-filters-slideshow-layout/">Filters</a></li>
|
2577 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-order-by-slideshow-layout/">Order By</a></li>
|
2578 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-search-box-slideshow-layout/">Search Box</a></li>
|
2579 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-watermark-slideshow-layout/">Watermark</a></li>
|
2580 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-animation-slideshow-layout/">Animation</a></li>
|
2581 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-special-effects-slideshow-layout/">Special Effects</a></li>
|
2582 |
+
</ul>
|
2583 |
+
</div>
|
2584 |
+
</div>
|
2585 |
+
</div>
|
2586 |
+
</div>
|
2587 |
+
</div>
|
2588 |
+
</div>
|
2589 |
+
</div>
|
2590 |
+
</div>
|
2591 |
+
<div class="row">
|
2592 |
+
<div class="col-md-12">
|
2593 |
+
<div class="portlet box vivid-green toggle-portlet">
|
2594 |
+
<div class="portlet-title" onclick="show_hide_text_field_options('ux_div_image_browser_layout');">
|
2595 |
+
<div class="caption">
|
2596 |
+
<i class="icon-custom-plus"></i>
|
2597 |
+
<?php echo "Image Browser Layout"; ?>
|
2598 |
+
</div>
|
2599 |
+
<span class="dashicons dashicons-arrow-down downarraow-toggle"></span>
|
2600 |
+
</div>
|
2601 |
+
<div class="portlet-body form">
|
2602 |
+
<div class="form-body" id="ux_div_image_browser_layout">
|
2603 |
+
<div class="row">
|
2604 |
+
<div class="col-md-4">
|
2605 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Individual Images</h3>
|
2606 |
+
<div class="standard-arrow list-divider bullet-top">
|
2607 |
+
<ul>
|
2608 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-title-image-browser-layout/">With Title</a></li>
|
2609 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-title-description-image-browser-layout/">With Title & Description</a></li>
|
2610 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-without-title-description-image-browser-layout/">Without Title & Description</a></li>
|
2611 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-image-browser-layout/">Lazy Load</a></li>
|
2612 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-filters-image-browser-layout/">Filters</a></li>
|
2613 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-image-browser-layout/">Order By</a></li>
|
2614 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-image-browser-layout/">Search Box</a></li>
|
2615 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-watermark-image-browser-layout/">Watermark</a></li>
|
2616 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-animation-image-browser-layout/">Animation</a></li>
|
2617 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-special-effects-image-browser-layout/">Special Effects</a></li>
|
2618 |
+
</ul>
|
2619 |
+
</div>
|
2620 |
+
</div>
|
2621 |
+
<div class="col-md-4">
|
2622 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Compact Album</h3>
|
2623 |
+
<div class="standard-arrow list-divider bullet-top">
|
2624 |
+
<ul>
|
2625 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-title-image-browser-layout/">With Title</a></li>
|
2626 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-title-description-image-browser-layout/">With Title & Description</a></li>
|
2627 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-without-title-description-image-browser-layout/">Without Title & Description</a></li>
|
2628 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-lazy-load-image-browser-layout/">Lazy Load</a></li>
|
2629 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-filters-image-browser-layout/">Filters</a></li>
|
2630 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-order-by-image-browser-layout/">Order By</a></li>
|
2631 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-search-box-image-browser-layout/">Search Box</a></li>
|
2632 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-watermark-image-browser-layout/">Watermark</a></li>
|
2633 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-animation-image-browser-layout/">Animation</a></li>
|
2634 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-special-effects-image-browser-layout/">Special Effects</a></li>
|
2635 |
+
</ul>
|
2636 |
+
</div>
|
2637 |
+
</div>
|
2638 |
+
<div class="col-md-4">
|
2639 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Extended Album</h3>
|
2640 |
+
<div class="standard-arrow list-divider bullet-top">
|
2641 |
+
<ul>
|
2642 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-title-image-browser-layout/">With Title</a></li>
|
2643 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-title-description-image-browser-layout/">With Title & Description</a></li>
|
2644 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-without-title-description-image-browser-layout/">Without Title & Description</a></li>
|
2645 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-lazy-load-image-browser-layout/">Lazy Load</a></li>
|
2646 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-filters-image-browser-layout/">Filters</a></li>
|
2647 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-order-by-image-browser-layout/">Order By</a></li>
|
2648 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-search-box-image-browser-layout/">Search Box</a></li>
|
2649 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-watermark-image-browser-layout/">Watermark</a></li>
|
2650 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-animation-image-browser-layout/">Animation</a></li>
|
2651 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-special-effects-image-browser-layout/">Special Effects</a></li>
|
2652 |
+
</ul>
|
2653 |
+
</div>
|
2654 |
+
</div>
|
2655 |
+
</div>
|
2656 |
+
</div>
|
2657 |
+
</div>
|
2658 |
+
</div>
|
2659 |
+
</div>
|
2660 |
+
</div>
|
2661 |
+
<div class="row">
|
2662 |
+
<div class="col-md-12">
|
2663 |
+
<div class="portlet box vivid-green toggle-portlet">
|
2664 |
+
<div class="portlet-title" onclick="show_hide_text_field_options('ux_div_justified_grid_layout');">
|
2665 |
+
<div class="caption">
|
2666 |
+
<i class="icon-custom-plus"></i>
|
2667 |
+
<?php echo "Justified Grid Layout"; ?>
|
2668 |
+
</div>
|
2669 |
+
<span class="dashicons dashicons-arrow-down downarraow-toggle"></span>
|
2670 |
+
</div>
|
2671 |
+
<div class="portlet-body form">
|
2672 |
+
<div class="form-body" id="ux_div_justified_grid_layout">
|
2673 |
+
<div class="row">
|
2674 |
+
<div class="col-md-4">
|
2675 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Individual Images</h3>
|
2676 |
+
<div class="standard-arrow list-divider bullet-top">
|
2677 |
+
<ul>
|
2678 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-title-justified-grid-layout/">With Title</a></li>
|
2679 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-title-description-justified-grid-layout/">With Title & Description</a></li>
|
2680 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-without-title-description-justified-grid-layout/">Without Title & Description</a></li>
|
2681 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-lightboxes-justified-grid-layout/">Lightboxes</a></li>
|
2682 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-pagination-justified-grid-layout/">Pagination</a></li>
|
2683 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-justified-grid-layout/">Lazy Load</a></li>
|
2684 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-filters-justified-grid-layout/">Filters</a></li>
|
2685 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-justified-grid-layout/">Order By</a></li>
|
2686 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-justified-grid-layout/">Search Box</a></li>
|
2687 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-watermark-justified-grid-layout/">Watermark</a></li>
|
2688 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-animation-justified-grid-layout/">Animation</a></li>
|
2689 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-special-effects-justified-grid-layout/">Special Effects</a></li>
|
2690 |
+
</ul>
|
2691 |
+
</div>
|
2692 |
+
</div>
|
2693 |
+
<div class="col-md-4">
|
2694 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Compact Album</h3>
|
2695 |
+
<div class="standard-arrow list-divider bullet-top">
|
2696 |
+
<ul>
|
2697 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-title-justified-grid-layout/">With Title</a></li>
|
2698 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-title-description-justified-grid-layout/">With Title & Description</a></li>
|
2699 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-without-title-description-justified-grid-layout/">Without Title & Description</a></li>
|
2700 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-lightboxes-justified-grid-layout/">Lightboxes</a></li>
|
2701 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-pagination-justified-grid-layout/">Pagination</a></li>
|
2702 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-lazy-load-justified-grid-layout/">Lazy Load</a></li>
|
2703 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-filters-justified-grid-layout/">Filters</a></li>
|
2704 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-order-by-justified-grid-layout/">Order By</a></li>
|
2705 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-search-box-justified-grid-layout/">Search Box</a></li>
|
2706 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-watermark-justified-grid-layout/">Watermark</a></li>
|
2707 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-animation-justified-grid-layout/">Animation</a></li>
|
2708 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-special-effects-justified-grid-layout/">Special Effects</a></li>
|
2709 |
+
</ul>
|
2710 |
+
</div>
|
2711 |
+
</div>
|
2712 |
+
<div class="col-md-4">
|
2713 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Extended Album</h3>
|
2714 |
+
<div class="standard-arrow list-divider bullet-top">
|
2715 |
+
<ul>
|
2716 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-title-justified-grid-layout/">With Title</a></li>
|
2717 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-title-description-justified-grid-layout/">With Title & Description</a></li>
|
2718 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-without-title-description-justified-grid-layout/">Without Title & Description</a></li>
|
2719 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-lightboxes-justified-grid-layout/">Lightboxes</a></li>
|
2720 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-pagination-justified-grid-layout/">Pagination</a></li>
|
2721 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-lazy-load-justified-grid-layout/">Lazy Load</a></li>
|
2722 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-filters-justified-grid-layout/">Filters</a></li>
|
2723 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-order-by-justified-grid-layout/">Order By</a></li>
|
2724 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-search-box-justified-grid-layout/">Search Box</a></li>
|
2725 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-watermark-justified-grid-layout/">Watermark</a></li>
|
2726 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-animation-justified-grid-layout/">Animation</a></li>
|
2727 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-special-effects-justified-grid-layout/">Special Effects</a></li>
|
2728 |
+
</ul>
|
2729 |
+
</div>
|
2730 |
+
</div>
|
2731 |
+
</div>
|
2732 |
+
</div>
|
2733 |
+
</div>
|
2734 |
+
</div>
|
2735 |
+
</div>
|
2736 |
+
</div>
|
2737 |
+
<div class="row">
|
2738 |
+
<div class="col-md-12">
|
2739 |
+
<div class="portlet box vivid-green toggle-portlet">
|
2740 |
+
<div class="portlet-title" onclick="show_hide_text_field_options('ux_div_blog_style_layout');">
|
2741 |
+
<div class="caption">
|
2742 |
+
<i class="icon-custom-plus"></i>
|
2743 |
+
<?php echo "Blog Style Layout"; ?>
|
2744 |
+
</div>
|
2745 |
+
<span class="dashicons dashicons-arrow-down downarraow-toggle"></span>
|
2746 |
+
</div>
|
2747 |
+
<div class="portlet-body form">
|
2748 |
+
<div class="form-body" id="ux_div_blog_style_layout">
|
2749 |
+
<div class="row">
|
2750 |
+
<div class="col-md-4">
|
2751 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Individual Images</h3>
|
2752 |
+
<div class="standard-arrow list-divider bullet-top">
|
2753 |
+
<ul>
|
2754 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-title-blog-style-layout/">With Title</a></li>
|
2755 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-title-description-blog-style-layout/">With Title & Description</a></li>
|
2756 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-without-title-description-blog-style-layout/">Without Title & Description</a></li>
|
2757 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-lightboxes-blog-style-layout/">Lightboxes</a></li>
|
2758 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-pagination-blog-style-layout/">Pagination</a></li>
|
2759 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-lazy-load-blog-style-layout/">Lazy Load</a></li>
|
2760 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-filters-blog-style-layout/">Filters</a></li>
|
2761 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-order-by-blog-style-layout/">Order By</a></li>
|
2762 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/individual-images-with-search-box-blog-style-layout/">Search Box</a></li>
|
2763 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-watermark-blog-style-layout/">Watermark</a></li>
|
2764 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-animation-blog-style-layout/">Animation</a></li>
|
2765 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/individual-images-with-special-effects-blog-style-layout/">Special Effects</a></li>
|
2766 |
+
</ul>
|
2767 |
+
</div>
|
2768 |
+
</div>
|
2769 |
+
<div class="col-md-4">
|
2770 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Compact Album</h3>
|
2771 |
+
<div class="standard-arrow list-divider bullet-top">
|
2772 |
+
<ul>
|
2773 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-title-blog-style-layout/">With Title</a></li>
|
2774 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-title-description-blog-style-layout/">With Title & Description</a></li>
|
2775 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-without-title-description-blog-style-layout/">Without Title & Description</a></li>
|
2776 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-lightboxes-blog-style-layout/">Lightboxes</a></li>
|
2777 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-pagination-blog-style-layout/">Pagination</a></li>
|
2778 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-lazy-load-blog-style-layout/">Lazy Load</a></li>
|
2779 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-filters-blog-style-layout/">Filters</a></li>
|
2780 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-order-by-blog-style-layout/">Order By</a></li>
|
2781 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/compact-album-with-search-box-blog-style-layout/">Search Box</a></li>
|
2782 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-watermark-blog-style-layout/">Watermark</a></li>
|
2783 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-animation-blog-style-layout/">Animation</a></li>
|
2784 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/compact-album-with-special-effects-blog-style-layout/">Special Effects</a></li>
|
2785 |
+
</ul>
|
2786 |
+
</div>
|
2787 |
+
</div>
|
2788 |
+
<div class="col-md-4">
|
2789 |
+
<h3 style="color: #000000;text-align: left" class="vc_custom_heading">Extended Album</h3>
|
2790 |
+
<div class="standard-arrow list-divider bullet-top">
|
2791 |
+
<ul>
|
2792 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-title-blog-style-layout/">With Title</a></li>
|
2793 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-title-description-blog-style-layout/">With Title & Description</a></li>
|
2794 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-without-title-description-blog-style-layout/">Without Title & Description</a></li>
|
2795 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-lightboxes-blog-style-layout/">Lightboxes</a></li>
|
2796 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-pagination-blog-style-layout/">Pagination</a></li>
|
2797 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-lazy-load-blog-style-layout/">Lazy Load</a></li>
|
2798 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-filters-blog-style-layout/">Filters</a></li>
|
2799 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-order-by-blog-style-layout/">Order By</a></li>
|
2800 |
+
<li><a target = "_blank" href="https://gallery-bank.tech-banker.com/frontend-demos/extended-album-with-search-box-blog-style-layout/">Search Box</a></li>
|
2801 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-watermark-blog-style-layout/">Watermark</a></li>
|
2802 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-animation-blog-style-layout/">Animation</a></li>
|
2803 |
+
<li><a target = "_blank" href="<?php echo tech_banker_gallery_url;?>frontend-demos/extended-album-with-special-effects-blog-style-layout/">Special Effects</a></li>
|
2804 |
+
</ul>
|
2805 |
+
</div>
|
2806 |
+
</div>
|
2807 |
+
</div>
|
2808 |
+
</div>
|
2809 |
+
</div>
|
2810 |
+
</div>
|
2811 |
+
</div>
|
2812 |
+
</div>
|
2813 |
+
|
2814 |
+
|
2815 |
+
|
2816 |
+
|
2817 |
+
|
2818 |
+
</div>
|
2819 |
+
<div class="tab-pane" id="have_suggestions">
|
2820 |
+
<div class="row">
|
2821 |
+
<div class="col-md-12">
|
2822 |
+
<div class="portlet box vivid-green">
|
2823 |
+
<div class="portlet-title">
|
2824 |
+
<div class="caption">
|
2825 |
+
<i class="icon-custom-call-out"></i>
|
2826 |
+
<?php echo $gb_feature_requests; ?>
|
2827 |
+
</div>
|
2828 |
+
<p class="premium-editions">
|
2829 |
+
<?php echo $gb_upgrade_need_help ?><a href="<?php echo tech_banker_gallery_url;?>" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="<?php echo tech_banker_gallery_url;?>frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
|
2830 |
+
</p>
|
2831 |
+
</div>
|
2832 |
+
<div class="portlet-body form">
|
2833 |
+
<form id="ux_frm_feature_requests">
|
2834 |
+
<div class="form-body">
|
2835 |
+
<div class="note note-warning">
|
2836 |
+
<?php
|
2837 |
+
if ($gb_message_translate_help != "") {
|
2838 |
+
?>
|
2839 |
+
<h4 class="block">
|
2840 |
+
<?php echo $gb_important_disclaimer; ?>
|
2841 |
+
</h4>
|
2842 |
+
<p><strong><?php echo $gb_message_translate_help; ?> <a href="javascript:void(0);" data-popup-open="ux_open_popup_translator" class="custom_links_feature" onclick="show_pop_up_gallery_bank();"><?php echo $gb_message_translate_here; ?></a></strong></p>
|
2843 |
+
<?php
|
2844 |
+
}
|
2845 |
+
?>
|
2846 |
+
<h4 class="block"><?php echo $gb_feature_requests_thank_you; ?></h4>
|
2847 |
+
<p><?php echo $gb_feature_requests_fill_form; ?></p>
|
2848 |
+
<p><?php echo $gb_feature_requests_any_suggestion; ?></p>
|
2849 |
+
<p><?php echo $gb_feature_requests_write_us_on; ?>
|
2850 |
+
<a href="mailto:support@tech-banker.com" target="_blank">support@tech-banker.com</a>
|
2851 |
+
</p>
|
2852 |
+
</div>
|
2853 |
+
<div class="row">
|
2854 |
+
<div class="col-md-6">
|
2855 |
+
<div class="form-group">
|
2856 |
+
<label class="control-label">
|
2857 |
+
<?php echo $gb_feature_requests_name_title; ?> :
|
2858 |
+
<i class="icon-custom-question tooltips" data-original-title="<?php echo $gb_feature_requests_name_tooltip; ?>" data-placement="right"></i>
|
2859 |
+
<span class="required" aria-required="true">*</span>
|
2860 |
+
</label>
|
2861 |
+
<input type="text" class="form-control" name="ux_txt_your_name" id="ux_txt_your_name" value="" placeholder="<?php echo $gb_feature_requests_name_placeholder; ?>">
|
2862 |
+
</div>
|
2863 |
+
</div>
|
2864 |
+
<div class=col-md-6>
|
2865 |
+
<div class="form-group">
|
2866 |
+
<label class="control-label">
|
2867 |
+
<?php echo $gb_feature_requests_email_title; ?> :
|
2868 |
+
<i class="icon-custom-question tooltips" data-original-title="<?php echo $gb_feature_requests_email_tooltip; ?>" data-placement="right"></i>
|
2869 |
+
<span class="required" aria-required="true">*</span>
|
2870 |
+
</label>
|
2871 |
+
<input type="text" class="form-control" name="ux_txt_email_address" id="ux_txt_email_address" value="" placeholder="<?php echo $gb_feature_requests_email_placeholder; ?>">
|
2872 |
+
</div>
|
2873 |
+
</div>
|
2874 |
+
</div>
|
2875 |
+
<div class="form-group">
|
2876 |
+
<label class="control-label">
|
2877 |
+
<?php echo $gb_feature_requests; ?> :
|
2878 |
+
<i class="icon-custom-question tooltips" data-original-title="<?php echo $gb_feature_requests_tooltip; ?>" data-placement="right"></i>
|
2879 |
+
<span class="required" aria-required="true">*</span>
|
2880 |
+
</label>
|
2881 |
+
<textarea class="form-control" name="ux_txtarea_feature_request" id="ux_txtarea_feature_request" rows="8" placeholder="<?php echo $gb_feature_requests_placeholder; ?>"></textarea>
|
2882 |
+
</div>
|
2883 |
+
<div class="line-separator"></div>
|
2884 |
+
<div class="form-actions">
|
2885 |
+
<div class="pull-right">
|
2886 |
+
<button type="submit" class="btn vivid-green" name="ux_btn_send_request" id="ux_btn_send_request"><?php echo $gb_feature_requests_send_request; ?></button>
|
2887 |
+
</div>
|
2888 |
+
</div>
|
2889 |
+
</div>
|
2890 |
+
</form>
|
2891 |
+
</div>
|
2892 |
+
</div>
|
2893 |
+
</div>
|
2894 |
+
</div>
|
2895 |
+
</div>
|
2896 |
+
</div>
|
2897 |
</div>
|
2898 |
</div>
|
2899 |
+
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2900 |
</div>
|
2901 |
</div>
|
2902 |
+
</div>
|
2903 |
+
</div>
|
|
|
|
|
2904 |
<?php
|
2905 |
}
|
2906 |
}
|