Version Description
Download this release
Release Info
Developer | webdorado |
Plugin | Photo Gallery by WD – Responsive Photo Gallery |
Version | 1.1.4 |
Comparing to | |
See all releases |
Code changes from version 1.1.3 to 1.1.4
- admin/controllers/BWGControllerAlbums_bwg.php +2 -3
- admin/controllers/BWGControllerGalleries_bwg.php +12 -9
- admin/models/BWGModelAlbums_bwg.php +4 -4
- admin/models/BWGModelGalleries_bwg.php +5 -5
- admin/models/BWGModelUninstall_bwg.php +2 -2
- admin/views/BWGViewAlbums_bwg.php +1 -1
- admin/views/BWGViewGalleries_bwg.php +1 -1
- frontend/views/BWGViewAlbum_compact_preview.php +2 -2
- frontend/views/BWGViewAlbum_extended_preview.php +2 -2
- frontend/views/BWGViewGalleryBox.php +2 -2
- frontend/views/BWGViewImage_browser.php +1 -1
- frontend/views/BWGViewThumbnails.php +1 -1
- photo-gallery.php +15 -22
- readme.txt +63 -62
admin/controllers/BWGControllerAlbums_bwg.php
CHANGED
@@ -75,12 +75,12 @@ class BWGControllerAlbums_bwg {
|
|
75 |
public function get_image_for_album($album_id) {
|
76 |
global $wpdb;
|
77 |
$preview_image = '';
|
78 |
-
$gallery_row = $wpdb->get_row($wpdb->prepare("SELECT t1.preview_image,t1.random_preview_image FROM " . $wpdb->prefix . "bwg_gallery as t1 INNER JOIN " . $wpdb->prefix . "bwg_album_gallery as t2 on t1.id=t2.alb_gal_id WHERE t2.is_album=0 AND t2.album_id='%d' AND (t1.preview_image<>'' OR t1.random_preview_image<>'') ORDER BY
|
79 |
if ($gallery_row) {
|
80 |
$preview_image = (($gallery_row->preview_image) ? $gallery_row->preview_image : $gallery_row->random_preview_image);
|
81 |
}
|
82 |
if (!$preview_image) {
|
83 |
-
$album_row = $wpdb->get_row($wpdb->prepare("SELECT t1.preview_image,t1.random_preview_image FROM " . $wpdb->prefix . "bwg_album as t1 INNER JOIN " . $wpdb->prefix . "bwg_album_gallery as t2 on t1.id=t2.alb_gal_id WHERE t2.is_album=1 AND t2.album_id='%d' AND (t1.preview_image<>'' OR t1.random_preview_image<>'') ORDER BY
|
84 |
if ($album_row) {
|
85 |
$preview_image = (($album_row->preview_image) ? $album_row->preview_image : $album_row->random_preview_image);
|
86 |
}
|
@@ -143,7 +143,6 @@ class BWGControllerAlbums_bwg {
|
|
143 |
$published = ((isset($_POST['published']) && esc_html(stripslashes($_POST['published'])) != '') ? esc_html(stripslashes($_POST['published'])) : '');
|
144 |
$albums_galleries = (isset($_POST['albums_galleries']) ? esc_html(stripslashes($_POST['albums_galleries'])) : '');
|
145 |
if ($id != 0) {
|
146 |
-
$random_preview_image = (($preview_image == '') ? $this->get_image_for_album($id) : '');
|
147 |
$save = $wpdb->update($wpdb->prefix . 'bwg_album', array(
|
148 |
'name' => $name,
|
149 |
'slug' => $slug,
|
75 |
public function get_image_for_album($album_id) {
|
76 |
global $wpdb;
|
77 |
$preview_image = '';
|
78 |
+
$gallery_row = $wpdb->get_row($wpdb->prepare("SELECT t1.preview_image,t1.random_preview_image FROM " . $wpdb->prefix . "bwg_gallery as t1 INNER JOIN " . $wpdb->prefix . "bwg_album_gallery as t2 on t1.id=t2.alb_gal_id WHERE t2.is_album=0 AND t2.album_id='%d' AND (t1.preview_image<>'' OR t1.random_preview_image<>'') ORDER BY t2.`order`", $album_id));
|
79 |
if ($gallery_row) {
|
80 |
$preview_image = (($gallery_row->preview_image) ? $gallery_row->preview_image : $gallery_row->random_preview_image);
|
81 |
}
|
82 |
if (!$preview_image) {
|
83 |
+
$album_row = $wpdb->get_row($wpdb->prepare("SELECT t1.preview_image,t1.random_preview_image FROM " . $wpdb->prefix . "bwg_album as t1 INNER JOIN " . $wpdb->prefix . "bwg_album_gallery as t2 on t1.id=t2.alb_gal_id WHERE t2.is_album=1 AND t2.album_id='%d' AND (t1.preview_image<>'' OR t1.random_preview_image<>'') ORDER BY t2.`order`", $album_id));
|
84 |
if ($album_row) {
|
85 |
$preview_image = (($album_row->preview_image) ? $album_row->preview_image : $album_row->random_preview_image);
|
86 |
}
|
143 |
$published = ((isset($_POST['published']) && esc_html(stripslashes($_POST['published'])) != '') ? esc_html(stripslashes($_POST['published'])) : '');
|
144 |
$albums_galleries = (isset($_POST['albums_galleries']) ? esc_html(stripslashes($_POST['albums_galleries'])) : '');
|
145 |
if ($id != 0) {
|
|
|
146 |
$save = $wpdb->update($wpdb->prefix . 'bwg_album', array(
|
147 |
'name' => $name,
|
148 |
'slug' => $slug,
|
admin/controllers/BWGControllerGalleries_bwg.php
CHANGED
@@ -85,7 +85,7 @@ class BWGControllerGalleries_bwg {
|
|
85 |
$this->save_db();
|
86 |
global $wpdb;
|
87 |
if (!isset($_POST['current_id']) || (esc_html(stripslashes($_POST['current_id'])) == 0) || (esc_html(stripslashes($_POST['current_id'])) == '')) {
|
88 |
-
// If gallery saved first time(insert in db).
|
89 |
$_POST['current_id'] = (int) $wpdb->get_var('SELECT MAX(`id`) FROM ' . $wpdb->prefix . 'bwg_gallery');
|
90 |
}
|
91 |
}
|
@@ -562,13 +562,6 @@ class BWGControllerGalleries_bwg {
|
|
562 |
$wpdb->query('DELETE FROM ' . $wpdb->prefix . 'bwg_image WHERE gallery_id=0');
|
563 |
}
|
564 |
|
565 |
-
// Return random image from gallery for gallery preview.
|
566 |
-
public function get_image_for_gallery($gallery_id) {
|
567 |
-
global $wpdb;
|
568 |
-
$preview_image = $wpdb->get_var($wpdb->prepare("SELECT thumb_url FROM " . $wpdb->prefix . "bwg_image WHERE gallery_id='%d' ORDER BY rand() limit 1", $gallery_id));
|
569 |
-
return $preview_image;
|
570 |
-
}
|
571 |
-
|
572 |
public function bwg_get_unique_slug($slug, $id) {
|
573 |
global $wpdb;
|
574 |
$slug = sanitize_title($slug);
|
@@ -619,7 +612,17 @@ class BWGControllerGalleries_bwg {
|
|
619 |
$slug = $this->bwg_get_unique_slug($slug, $id);
|
620 |
$description = (isset($_POST['description']) ? stripslashes($_POST['description']) : '');
|
621 |
$preview_image = (isset($_POST['preview_image']) ? esc_html(stripslashes($_POST['preview_image'])) : '');
|
622 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
623 |
$published = (isset($_POST['published']) ? (int) $_POST['published'] : 1);
|
624 |
if ($id != 0) {
|
625 |
$save = $wpdb->update($wpdb->prefix . 'bwg_gallery', array(
|
85 |
$this->save_db();
|
86 |
global $wpdb;
|
87 |
if (!isset($_POST['current_id']) || (esc_html(stripslashes($_POST['current_id'])) == 0) || (esc_html(stripslashes($_POST['current_id'])) == '')) {
|
88 |
+
// If gallery saved first time (insert in db).
|
89 |
$_POST['current_id'] = (int) $wpdb->get_var('SELECT MAX(`id`) FROM ' . $wpdb->prefix . 'bwg_gallery');
|
90 |
}
|
91 |
}
|
562 |
$wpdb->query('DELETE FROM ' . $wpdb->prefix . 'bwg_image WHERE gallery_id=0');
|
563 |
}
|
564 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
565 |
public function bwg_get_unique_slug($slug, $id) {
|
566 |
global $wpdb;
|
567 |
$slug = sanitize_title($slug);
|
612 |
$slug = $this->bwg_get_unique_slug($slug, $id);
|
613 |
$description = (isset($_POST['description']) ? stripslashes($_POST['description']) : '');
|
614 |
$preview_image = (isset($_POST['preview_image']) ? esc_html(stripslashes($_POST['preview_image'])) : '');
|
615 |
+
if ($preview_image == '') {
|
616 |
+
if ($id != 0) {
|
617 |
+
$random_preview_image = $wpdb->get_var($wpdb->prepare("SELECT random_preview_image FROM " . $wpdb->prefix . "bwg_gallery WHERE id='%d'", $id));
|
618 |
+
if ($random_preview_image == '') {
|
619 |
+
$random_preview_image = $wpdb->get_var($wpdb->prepare("SELECT thumb_url FROM " . $wpdb->prefix . "bwg_image WHERE gallery_id='%d' ORDER BY `order`", $id));
|
620 |
+
}
|
621 |
+
}
|
622 |
+
else {
|
623 |
+
$random_preview_image = (isset($_POST['thumb_url_pr_0']) ? esc_html(stripslashes($_POST['thumb_url_pr_0'])) : '');
|
624 |
+
}
|
625 |
+
}
|
626 |
$published = (isset($_POST['published']) ? (int) $_POST['published'] : 1);
|
627 |
if ($id != 0) {
|
628 |
$save = $wpdb->update($wpdb->prefix . 'bwg_gallery', array(
|
admin/models/BWGModelAlbums_bwg.php
CHANGED
@@ -21,12 +21,12 @@ class BWGModelAlbums_bwg {
|
|
21 |
public function get_rows_data() {
|
22 |
global $wpdb;
|
23 |
if (!current_user_can('manage_options') && $wpdb->get_var("SELECT gallery_role FROM " . $wpdb->prefix . "bwg_option")) {
|
24 |
-
$where = " WHERE
|
25 |
}
|
26 |
else {
|
27 |
-
$where = " WHERE
|
28 |
}
|
29 |
-
$where .= ((isset($_POST['search_value'])) ? ' AND
|
30 |
$asc_or_desc = ((isset($_POST['asc_or_desc'])) ? esc_html(stripslashes($_POST['asc_or_desc'])) : 'asc');
|
31 |
$order_by = ' ORDER BY `' . ((isset($_POST['order_by']) && esc_html(stripslashes($_POST['order_by'])) != '') ? esc_html(stripslashes($_POST['order_by'])) : 'order') . '` ' . $asc_or_desc;
|
32 |
if (isset($_POST['page_number']) && $_POST['page_number']) {
|
@@ -35,7 +35,7 @@ class BWGModelAlbums_bwg {
|
|
35 |
else {
|
36 |
$limit = 0;
|
37 |
}
|
38 |
-
$query = "SELECT
|
39 |
$rows = $wpdb->get_results($query);
|
40 |
return $rows;
|
41 |
}
|
21 |
public function get_rows_data() {
|
22 |
global $wpdb;
|
23 |
if (!current_user_can('manage_options') && $wpdb->get_var("SELECT gallery_role FROM " . $wpdb->prefix . "bwg_option")) {
|
24 |
+
$where = " WHERE author=" . get_current_user_id();
|
25 |
}
|
26 |
else {
|
27 |
+
$where = " WHERE author>=0 ";
|
28 |
}
|
29 |
+
$where .= ((isset($_POST['search_value'])) ? ' AND name LIKE "%' . esc_html(stripslashes($_POST['search_value'])) . '%"' : '');
|
30 |
$asc_or_desc = ((isset($_POST['asc_or_desc'])) ? esc_html(stripslashes($_POST['asc_or_desc'])) : 'asc');
|
31 |
$order_by = ' ORDER BY `' . ((isset($_POST['order_by']) && esc_html(stripslashes($_POST['order_by'])) != '') ? esc_html(stripslashes($_POST['order_by'])) : 'order') . '` ' . $asc_or_desc;
|
32 |
if (isset($_POST['page_number']) && $_POST['page_number']) {
|
35 |
else {
|
36 |
$limit = 0;
|
37 |
}
|
38 |
+
$query = "SELECT * FROM " . $wpdb->prefix . "bwg_album " . $where . $order_by . " LIMIT " . $limit . ",20";
|
39 |
$rows = $wpdb->get_results($query);
|
40 |
return $rows;
|
41 |
}
|
admin/models/BWGModelGalleries_bwg.php
CHANGED
@@ -49,21 +49,21 @@ class BWGModelGalleries_bwg {
|
|
49 |
public function get_rows_data() {
|
50 |
global $wpdb;
|
51 |
if (!current_user_can('manage_options') && $wpdb->get_var("SELECT gallery_role FROM " . $wpdb->prefix . "bwg_option")) {
|
52 |
-
$where = " WHERE
|
53 |
}
|
54 |
else {
|
55 |
-
$where = " WHERE
|
56 |
}
|
57 |
-
$where .= ((isset($_POST['search_value'])) ? ' AND
|
58 |
$asc_or_desc = ((isset($_POST['asc_or_desc'])) ? esc_html(stripslashes($_POST['asc_or_desc'])) : 'asc');
|
59 |
-
$order_by = ' ORDER BY
|
60 |
if (isset($_POST['page_number']) && $_POST['page_number']) {
|
61 |
$limit = ((int) $_POST['page_number'] - 1) * 20;
|
62 |
}
|
63 |
else {
|
64 |
$limit = 0;
|
65 |
}
|
66 |
-
$query = "SELECT
|
67 |
$rows = $wpdb->get_results($query);
|
68 |
return $rows;
|
69 |
}
|
49 |
public function get_rows_data() {
|
50 |
global $wpdb;
|
51 |
if (!current_user_can('manage_options') && $wpdb->get_var("SELECT gallery_role FROM " . $wpdb->prefix . "bwg_option")) {
|
52 |
+
$where = " WHERE author=" . get_current_user_id();
|
53 |
}
|
54 |
else {
|
55 |
+
$where = " WHERE author>=0 ";
|
56 |
}
|
57 |
+
$where .= ((isset($_POST['search_value'])) ? ' AND name LIKE "%' . esc_html(stripslashes($_POST['search_value'])) . '%"' : '');
|
58 |
$asc_or_desc = ((isset($_POST['asc_or_desc'])) ? esc_html(stripslashes($_POST['asc_or_desc'])) : 'asc');
|
59 |
+
$order_by = ' ORDER BY `' . ((isset($_POST['order_by']) && esc_html(stripslashes($_POST['order_by'])) != '') ? esc_html(stripslashes($_POST['order_by'])) : 'order') . '` ' . $asc_or_desc;
|
60 |
if (isset($_POST['page_number']) && $_POST['page_number']) {
|
61 |
$limit = ((int) $_POST['page_number'] - 1) * 20;
|
62 |
}
|
63 |
else {
|
64 |
$limit = 0;
|
65 |
}
|
66 |
+
$query = "SELECT * FROM " . $wpdb->prefix . "bwg_gallery " . $where . $order_by . " LIMIT " . $limit . ",20";
|
67 |
$rows = $wpdb->get_results($query);
|
68 |
return $rows;
|
69 |
}
|
admin/models/BWGModelUninstall_bwg.php
CHANGED
@@ -36,14 +36,14 @@ class BWGModelUninstall_bwg {
|
|
36 |
wp_delete_term($term->term_id, 'bwg_tag');
|
37 |
}
|
38 |
// Delete custom pages for galleries.
|
39 |
-
$count_posts = wp_count_posts('
|
40 |
$published_posts = $count_posts->publish;
|
41 |
$posts = get_posts(array('posts_per_page' => $published_posts, 'post_type' => 'bwg_gallery'));
|
42 |
foreach ($posts as $post) {
|
43 |
wp_delete_post($post->ID, TRUE);
|
44 |
}
|
45 |
// Delete custom pages for albums.
|
46 |
-
$count_posts = wp_count_posts('
|
47 |
$published_posts = $count_posts->publish;
|
48 |
$posts = get_posts(array('posts_per_page' => $published_posts, 'post_type' => 'bwg_album'));
|
49 |
foreach ($posts as $post) {
|
36 |
wp_delete_term($term->term_id, 'bwg_tag');
|
37 |
}
|
38 |
// Delete custom pages for galleries.
|
39 |
+
$count_posts = wp_count_posts('bwg_gallery');
|
40 |
$published_posts = $count_posts->publish;
|
41 |
$posts = get_posts(array('posts_per_page' => $published_posts, 'post_type' => 'bwg_gallery'));
|
42 |
foreach ($posts as $post) {
|
43 |
wp_delete_post($post->ID, TRUE);
|
44 |
}
|
45 |
// Delete custom pages for albums.
|
46 |
+
$count_posts = wp_count_posts('bwg_album');
|
47 |
$published_posts = $count_posts->publish;
|
48 |
$posts = get_posts(array('posts_per_page' => $published_posts, 'post_type' => 'bwg_album'));
|
49 |
foreach ($posts as $post) {
|
admin/views/BWGViewAlbums_bwg.php
CHANGED
@@ -156,7 +156,7 @@ class BWGViewAlbums_bwg {
|
|
156 |
<img title="<?php echo $row_data->name; ?>" style="border: 1px solid #CCCCCC; max-width:60px; max-height:60px;" src="<?php echo $preview_image; ?>">
|
157 |
</td>
|
158 |
<td class="spider_order table_medium_col"><input id="order_input_<?php echo $row_data->id; ?>" name="order_input_<?php echo $row_data->id; ?>" type="text" size="1" value="<?php echo $row_data->order; ?>" /></td>
|
159 |
-
<td><?php echo $row_data->display_name; ?></td>
|
160 |
<td class="table_big_col"><a onclick="spider_set_input_value('task', '<?php echo $published; ?>');spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');spider_form_submit(event, 'albums_form')" href=""><img src="<?php echo WD_BWG_URL . '/images/' . $published_image . '.png'; ?>"></img></a></td>
|
161 |
<td class="table_big_col"><a onclick="spider_set_input_value('task', 'edit');
|
162 |
spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
|
156 |
<img title="<?php echo $row_data->name; ?>" style="border: 1px solid #CCCCCC; max-width:60px; max-height:60px;" src="<?php echo $preview_image; ?>">
|
157 |
</td>
|
158 |
<td class="spider_order table_medium_col"><input id="order_input_<?php echo $row_data->id; ?>" name="order_input_<?php echo $row_data->id; ?>" type="text" size="1" value="<?php echo $row_data->order; ?>" /></td>
|
159 |
+
<td><?php echo get_userdata($row_data->author)->display_name; ?></td>
|
160 |
<td class="table_big_col"><a onclick="spider_set_input_value('task', '<?php echo $published; ?>');spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');spider_form_submit(event, 'albums_form')" href=""><img src="<?php echo WD_BWG_URL . '/images/' . $published_image . '.png'; ?>"></img></a></td>
|
161 |
<td class="table_big_col"><a onclick="spider_set_input_value('task', 'edit');
|
162 |
spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
|
admin/views/BWGViewGalleries_bwg.php
CHANGED
@@ -160,7 +160,7 @@ class BWGViewGalleries_bwg {
|
|
160 |
spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
|
161 |
spider_form_submit(event, 'galleries_form')" href="" title="Edit"><?php echo $row_data->name; ?></a></td>
|
162 |
<td><?php echo $row_data->slug; ?></td>
|
163 |
-
<td><?php echo $row_data->display_name; ?></td>
|
164 |
<td class="spider_order table_medium_col"><input id="order_input_<?php echo $row_data->id; ?>" name="order_input_<?php echo $row_data->id; ?>" type="text" size="1" value="<?php echo $row_data->order; ?>" /></td>
|
165 |
<td class="table_big_col"><a onclick="spider_set_input_value('task', '<?php echo $published; ?>');spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');spider_form_submit(event, 'galleries_form')" href=""><img src="<?php echo WD_BWG_URL . '/images/' . $published_image . '.png'; ?>"></img></a></td>
|
166 |
<td class="table_big_col"><a onclick="spider_set_input_value('task', 'edit');
|
160 |
spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');
|
161 |
spider_form_submit(event, 'galleries_form')" href="" title="Edit"><?php echo $row_data->name; ?></a></td>
|
162 |
<td><?php echo $row_data->slug; ?></td>
|
163 |
+
<td><?php echo get_userdata($row_data->author)->display_name; ?></td>
|
164 |
<td class="spider_order table_medium_col"><input id="order_input_<?php echo $row_data->id; ?>" name="order_input_<?php echo $row_data->id; ?>" type="text" size="1" value="<?php echo $row_data->order; ?>" /></td>
|
165 |
<td class="table_big_col"><a onclick="spider_set_input_value('task', '<?php echo $published; ?>');spider_set_input_value('current_id', '<?php echo $row_data->id; ?>');spider_form_submit(event, 'galleries_form')" href=""><img src="<?php echo WD_BWG_URL . '/images/' . $published_image . '.png'; ?>"></img></a></td>
|
166 |
<td class="table_big_col"><a onclick="spider_set_input_value('task', 'edit');
|
frontend/views/BWGViewAlbum_compact_preview.php
CHANGED
@@ -446,7 +446,7 @@ class BWGViewAlbum_compact_preview {
|
|
446 |
<span class="bwg_album_thumb_<?php echo $bwg; ?>">
|
447 |
<span class="bwg_album_thumb_spun1_<?php echo $bwg; ?>">
|
448 |
<span class="bwg_album_thumb_spun2_<?php echo $bwg; ?>">
|
449 |
-
<img style="padding: 0 !important; max-height: none !important; max-width: none !important; width: <?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;" src="<?php echo $preview_url; ?>" />
|
450 |
<?php
|
451 |
if ($params['compuct_album_title'] == 'hover') {
|
452 |
?>
|
@@ -535,7 +535,7 @@ class BWGViewAlbum_compact_preview {
|
|
535 |
<span class="bwg_standart_thumb_<?php echo $bwg; ?>">
|
536 |
<span class="bwg_standart_thumb_spun1_<?php echo $bwg; ?>">
|
537 |
<span class="bwg_standart_thumb_spun2_<?php echo $bwg; ?>">
|
538 |
-
<img style="max-height:none; max-width:none; width:<?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;" id="<?php echo $image_row->id; ?>" src="<?php echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->thumb_url; ?>" alt="<?php echo $image_row->alt; ?>"
|
539 |
<?php
|
540 |
if ($params['compuct_album_image_title'] == 'hover') {
|
541 |
?>
|
446 |
<span class="bwg_album_thumb_<?php echo $bwg; ?>">
|
447 |
<span class="bwg_album_thumb_spun1_<?php echo $bwg; ?>">
|
448 |
<span class="bwg_album_thumb_spun2_<?php echo $bwg; ?>">
|
449 |
+
<img style="padding: 0 !important; max-height: none !important; max-width: none !important; width: <?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;" src="<?php echo $preview_url; ?>" alt="<?php echo $title; ?>" />
|
450 |
<?php
|
451 |
if ($params['compuct_album_title'] == 'hover') {
|
452 |
?>
|
535 |
<span class="bwg_standart_thumb_<?php echo $bwg; ?>">
|
536 |
<span class="bwg_standart_thumb_spun1_<?php echo $bwg; ?>">
|
537 |
<span class="bwg_standart_thumb_spun2_<?php echo $bwg; ?>">
|
538 |
+
<img style="max-height:none; max-width:none; width:<?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;" id="<?php echo $image_row->id; ?>" src="<?php echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->thumb_url; ?>" alt="<?php echo $image_row->alt; ?>" />
|
539 |
<?php
|
540 |
if ($params['compuct_album_image_title'] == 'hover') {
|
541 |
?>
|
frontend/views/BWGViewAlbum_extended_preview.php
CHANGED
@@ -464,7 +464,7 @@ class BWGViewAlbum_extended_preview {
|
|
464 |
<span class="bwg_album_thumb_<?php echo $bwg; ?>" style="height:inherit;">
|
465 |
<span class="bwg_album_thumb_spun1_<?php echo $bwg; ?>">
|
466 |
<span class="bwg_album_thumb_spun2_<?php echo $bwg; ?>">
|
467 |
-
<img style="padding: 0; max-height:none; max-width:none; width:<?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;" src="<?php echo $preview_url; ?>" />
|
468 |
</span>
|
469 |
</span>
|
470 |
</span>
|
@@ -571,7 +571,7 @@ class BWGViewAlbum_extended_preview {
|
|
571 |
<span class="bwg_standart_thumb_<?php echo $bwg; ?>">
|
572 |
<span class="bwg_standart_thumb_spun1_<?php echo $bwg; ?>">
|
573 |
<span class="bwg_standart_thumb_spun2_<?php echo $bwg; ?>">
|
574 |
-
<img style="max-height:none; max-width:none; width:<?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;" id="<?php echo $image_row->id; ?>" src="<?php echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->thumb_url; ?>" alt="<?php echo $image_row->alt; ?>"
|
575 |
<?php
|
576 |
if ($params['extended_album_image_title'] == 'hover') {
|
577 |
?>
|
464 |
<span class="bwg_album_thumb_<?php echo $bwg; ?>" style="height:inherit;">
|
465 |
<span class="bwg_album_thumb_spun1_<?php echo $bwg; ?>">
|
466 |
<span class="bwg_album_thumb_spun2_<?php echo $bwg; ?>">
|
467 |
+
<img style="padding: 0; max-height:none; max-width:none; width:<?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;" src="<?php echo $preview_url; ?>" alt="<?php echo $title; ?>" />
|
468 |
</span>
|
469 |
</span>
|
470 |
</span>
|
571 |
<span class="bwg_standart_thumb_<?php echo $bwg; ?>">
|
572 |
<span class="bwg_standart_thumb_spun1_<?php echo $bwg; ?>">
|
573 |
<span class="bwg_standart_thumb_spun2_<?php echo $bwg; ?>">
|
574 |
+
<img style="max-height:none; max-width:none; width:<?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;" id="<?php echo $image_row->id; ?>" src="<?php echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->thumb_url; ?>" alt="<?php echo $image_row->alt; ?>" />
|
575 |
<?php
|
576 |
if ($params['extended_album_image_title'] == 'hover') {
|
577 |
?>
|
frontend/views/BWGViewGalleryBox.php
CHANGED
@@ -648,7 +648,7 @@ class BWGViewGalleryBox {
|
|
648 |
<span class="bwg_popup_image_spun" id="image_id_<?php echo $image_row->id; ?>">
|
649 |
<span class="bwg_popup_image_spun1" style="display: table; width: inherit; height: inherit;">
|
650 |
<span class="bwg_popup_image_spun2" style="display: table-cell; vertical-align: middle; text-align: center;">
|
651 |
-
<img id="bwg_popup_image" class="bwg_popup_image" src="<?php echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->image_url; ?>" image_id="<?php echo $image_row->id; ?>" />
|
652 |
</span>
|
653 |
</span>
|
654 |
</span>
|
@@ -666,7 +666,7 @@ class BWGViewGalleryBox {
|
|
666 |
<span class="bwg_popup_image_second_spun" id="image_id_<?php echo $image_row->id; ?>">
|
667 |
<span class="bwg_popup_image_spun1" style="display: table; width: inherit; height: inherit;">
|
668 |
<span class="bwg_popup_image_spun2" style="display: table-cell; vertical-align: middle; text-align: center;">
|
669 |
-
<img id="bwg_popup_image_second" class="bwg_popup_image" src="<?php echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->image_url; ?>" />
|
670 |
</span>
|
671 |
</span>
|
672 |
</span>
|
648 |
<span class="bwg_popup_image_spun" id="image_id_<?php echo $image_row->id; ?>">
|
649 |
<span class="bwg_popup_image_spun1" style="display: table; width: inherit; height: inherit;">
|
650 |
<span class="bwg_popup_image_spun2" style="display: table-cell; vertical-align: middle; text-align: center;">
|
651 |
+
<img id="bwg_popup_image" class="bwg_popup_image" src="<?php echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->image_url; ?>" image_id="<?php echo $image_row->id; ?>" alt="<?php echo $image_row->alt; ?>" />
|
652 |
</span>
|
653 |
</span>
|
654 |
</span>
|
666 |
<span class="bwg_popup_image_second_spun" id="image_id_<?php echo $image_row->id; ?>">
|
667 |
<span class="bwg_popup_image_spun1" style="display: table; width: inherit; height: inherit;">
|
668 |
<span class="bwg_popup_image_spun2" style="display: table-cell; vertical-align: middle; text-align: center;">
|
669 |
+
<img id="bwg_popup_image_second" class="bwg_popup_image" src="<?php echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->image_url; ?>" alt="<?php echo $image_row->alt; ?>"/>
|
670 |
</span>
|
671 |
</span>
|
672 |
</span>
|
frontend/views/BWGViewImage_browser.php
CHANGED
@@ -417,7 +417,7 @@ class BWGViewImage_browser {
|
|
417 |
}
|
418 |
?>
|
419 |
<a style="position:relative;" href="javascript:spider_createpopup('<?php echo addslashes(add_query_arg($params_array, admin_url('admin-ajax.php'))); ?>', '<?php echo $bwg; ?>', '<?php echo $params['popup_width']; ?>', '<?php echo $params['popup_height']; ?>', 1, 'testpopup', 5);">
|
420 |
-
<img class="bwg_image_browser_img_<?php echo $bwg; ?>" src="<?php echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->image_url; ?>" alt="<?php echo $image_row->alt; ?>"
|
421 |
</a>
|
422 |
<script>
|
423 |
setTimeout(function(){
|
417 |
}
|
418 |
?>
|
419 |
<a style="position:relative;" href="javascript:spider_createpopup('<?php echo addslashes(add_query_arg($params_array, admin_url('admin-ajax.php'))); ?>', '<?php echo $bwg; ?>', '<?php echo $params['popup_width']; ?>', '<?php echo $params['popup_height']; ?>', 1, 'testpopup', 5);">
|
420 |
+
<img class="bwg_image_browser_img_<?php echo $bwg; ?>" src="<?php echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->image_url; ?>" alt="<?php echo $image_row->alt; ?>" />
|
421 |
</a>
|
422 |
<script>
|
423 |
setTimeout(function(){
|
frontend/views/BWGViewThumbnails.php
CHANGED
@@ -332,7 +332,7 @@ class BWGViewThumbnails {
|
|
332 |
<span class="bwg_standart_thumb_<?php echo $bwg; ?>">
|
333 |
<span class="bwg_standart_thumb_spun1_<?php echo $bwg; ?>">
|
334 |
<span class="bwg_standart_thumb_spun2_<?php echo $bwg; ?>">
|
335 |
-
<img class="bwg_standart_thumb_img_<?php echo $bwg; ?>" style="max-height: none !important; max-width: none !important; padding: 0 !important; width:<?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;" id="<?php echo $image_row->id; ?>" src="<?php echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->thumb_url; ?>" alt="<?php echo $image_row->alt; ?>"
|
336 |
<?php
|
337 |
if ($params['image_title'] == 'hover') {
|
338 |
?>
|
332 |
<span class="bwg_standart_thumb_<?php echo $bwg; ?>">
|
333 |
<span class="bwg_standart_thumb_spun1_<?php echo $bwg; ?>">
|
334 |
<span class="bwg_standart_thumb_spun2_<?php echo $bwg; ?>">
|
335 |
+
<img class="bwg_standart_thumb_img_<?php echo $bwg; ?>" style="max-height: none !important; max-width: none !important; padding: 0 !important; width:<?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;" id="<?php echo $image_row->id; ?>" src="<?php echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->thumb_url; ?>" alt="<?php echo $image_row->alt; ?>" />
|
336 |
<?php
|
337 |
if ($params['image_title'] == 'hover') {
|
338 |
?>
|
photo-gallery.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Photo Gallery
|
5 |
* Plugin URI: http://web-dorado.com/products/wordpress-photo-gallery-plugin.html
|
6 |
* Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.
|
7 |
-
* Version: 1.1.
|
8 |
* Author: http://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
*/
|
@@ -756,44 +756,39 @@ function bwg_activate() {
|
|
756 |
`masonry_thumb_transition` tinyint(1) NOT NULL,
|
757 |
|
758 |
`slideshow_cont_bg_color` varchar(64) NOT NULL,
|
759 |
-
`slideshow_ctrl_btn_color` varchar(64) NOT NULL,
|
760 |
-
`slideshow_ctrl_btn_height` int(4) NOT NULL,
|
761 |
-
`slideshow_ctrl_btn_margin_top` int(4) NOT NULL,
|
762 |
-
`slideshow_ctrl_btn_margin_left` int(4) NOT NULL,
|
763 |
-
`slideshow_ctrl_btn_transparent` int(4) NOT NULL,
|
764 |
`slideshow_close_btn_transparent` int(4) NOT NULL,
|
765 |
`slideshow_rl_btn_bg_color` varchar(64) NOT NULL,
|
766 |
-
`slideshow_rl_btn_border_radius`
|
767 |
`slideshow_rl_btn_border_width` int(4) NOT NULL,
|
768 |
`slideshow_rl_btn_border_style` varchar(64) NOT NULL,
|
769 |
`slideshow_rl_btn_border_color` varchar(64) NOT NULL,
|
770 |
`slideshow_rl_btn_box_shadow` varchar(128) NOT NULL,
|
771 |
-
`slideshow_rl_btn_color`
|
772 |
`slideshow_rl_btn_height` int(4) NOT NULL,
|
773 |
`slideshow_rl_btn_size` int(4) NOT NULL,
|
774 |
-
`slideshow_rl_btn_width`
|
775 |
-
`slideshow_close_rl_btn_hover_color`
|
776 |
`slideshow_filmstrip_pos` varchar(64) NOT NULL,
|
777 |
-
`slideshow_filmstrip_thumb_border_width`
|
778 |
-
`slideshow_filmstrip_thumb_border_style`
|
779 |
-
`slideshow_filmstrip_thumb_border_color`
|
780 |
`slideshow_filmstrip_thumb_border_radius` varchar(64) NOT NULL,
|
781 |
-
`slideshow_filmstrip_thumb_margin`
|
782 |
`slideshow_filmstrip_thumb_active_border_width` int(4) NOT NULL,
|
783 |
`slideshow_filmstrip_thumb_active_border_color` varchar(64) NOT NULL,
|
784 |
`slideshow_filmstrip_thumb_deactive_transparent` int(4) NOT NULL,
|
785 |
`slideshow_filmstrip_rl_bg_color` varchar(64) NOT NULL,
|
786 |
-
`slideshow_filmstrip_rl_btn_color`
|
787 |
`slideshow_filmstrip_rl_btn_size` int(4) NOT NULL,
|
788 |
`slideshow_title_font_size` int(4) NOT NULL,
|
789 |
-
`slideshow_title_font`
|
790 |
`slideshow_title_color` varchar(64) NOT NULL,
|
791 |
`slideshow_title_opacity` int(4) NOT NULL,
|
792 |
`slideshow_title_border_radius` varchar(64) NOT NULL,
|
793 |
`slideshow_title_background_color` varchar(64) NOT NULL,
|
794 |
`slideshow_title_padding` varchar(64) NOT NULL,
|
795 |
`slideshow_description_font_size` int(4) NOT NULL,
|
796 |
-
`slideshow_description_font`
|
797 |
`slideshow_description_color` varchar(64) NOT NULL,
|
798 |
`slideshow_description_opacity` int(4) NOT NULL,
|
799 |
`slideshow_description_border_radius` varchar(64) NOT NULL,
|
@@ -810,7 +805,6 @@ function bwg_activate() {
|
|
810 |
`slideshow_play_pause_btn_size` int(4) NOT NULL,
|
811 |
`slideshow_rl_btn_style` varchar(64) NOT NULL,
|
812 |
|
813 |
-
`blog_style_images_conteiner_width` int(4) NOT NULL,
|
814 |
`blog_style_margin` varchar(128) NOT NULL,
|
815 |
`blog_style_padding` varchar(128) NOT NULL,
|
816 |
`blog_style_border_radius` varchar(128) NOT NULL,
|
@@ -823,7 +817,6 @@ function bwg_activate() {
|
|
823 |
`blog_style_align` varchar(128) NOT NULL,
|
824 |
`blog_style_share_buttons_bg_color` varchar(128) NOT NULL,
|
825 |
`blog_style_share_buttons_margin` varchar(128) NOT NULL,
|
826 |
-
`blog_style_share_buttons_padding` varchar(128) NOT NULL,
|
827 |
`blog_style_share_buttons_border_radius` varchar(128) NOT NULL,
|
828 |
`blog_style_share_buttons_border_width` int(4) NOT NULL,
|
829 |
`blog_style_share_buttons_border_style` varchar(128) NOT NULL,
|
@@ -2388,7 +2381,7 @@ function bwg_activate() {
|
|
2388 |
));
|
2389 |
}
|
2390 |
$version = str_replace('.', '', get_option("wd_bwg_version"));
|
2391 |
-
$new_version =
|
2392 |
if ($version && $version < $new_version) {
|
2393 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
2394 |
for ($i = $version; $i < $new_version; $i++) {
|
@@ -2397,10 +2390,10 @@ function bwg_activate() {
|
|
2397 |
$func_name();
|
2398 |
}
|
2399 |
}
|
2400 |
-
update_option("wd_bwg_version", '1.1.
|
2401 |
}
|
2402 |
else {
|
2403 |
-
add_option("wd_bwg_version", '1.1.
|
2404 |
add_option("wd_bwg_theme_version", '1.0.0', '', 'no');
|
2405 |
}
|
2406 |
}
|
4 |
* Plugin Name: Photo Gallery
|
5 |
* Plugin URI: http://web-dorado.com/products/wordpress-photo-gallery-plugin.html
|
6 |
* Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.
|
7 |
+
* Version: 1.1.4
|
8 |
* Author: http://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
*/
|
756 |
`masonry_thumb_transition` tinyint(1) NOT NULL,
|
757 |
|
758 |
`slideshow_cont_bg_color` varchar(64) NOT NULL,
|
|
|
|
|
|
|
|
|
|
|
759 |
`slideshow_close_btn_transparent` int(4) NOT NULL,
|
760 |
`slideshow_rl_btn_bg_color` varchar(64) NOT NULL,
|
761 |
+
`slideshow_rl_btn_border_radius` varchar(64) NOT NULL,
|
762 |
`slideshow_rl_btn_border_width` int(4) NOT NULL,
|
763 |
`slideshow_rl_btn_border_style` varchar(64) NOT NULL,
|
764 |
`slideshow_rl_btn_border_color` varchar(64) NOT NULL,
|
765 |
`slideshow_rl_btn_box_shadow` varchar(128) NOT NULL,
|
766 |
+
`slideshow_rl_btn_color` varchar(64) NOT NULL,
|
767 |
`slideshow_rl_btn_height` int(4) NOT NULL,
|
768 |
`slideshow_rl_btn_size` int(4) NOT NULL,
|
769 |
+
`slideshow_rl_btn_width` int(4) NOT NULL,
|
770 |
+
`slideshow_close_rl_btn_hover_color` varchar(64) NOT NULL,
|
771 |
`slideshow_filmstrip_pos` varchar(64) NOT NULL,
|
772 |
+
`slideshow_filmstrip_thumb_border_width` int(4) NOT NULL,
|
773 |
+
`slideshow_filmstrip_thumb_border_style` varchar(64) NOT NULL,
|
774 |
+
`slideshow_filmstrip_thumb_border_color` varchar(64) NOT NULL,
|
775 |
`slideshow_filmstrip_thumb_border_radius` varchar(64) NOT NULL,
|
776 |
+
`slideshow_filmstrip_thumb_margin` varchar(64) NOT NULL,
|
777 |
`slideshow_filmstrip_thumb_active_border_width` int(4) NOT NULL,
|
778 |
`slideshow_filmstrip_thumb_active_border_color` varchar(64) NOT NULL,
|
779 |
`slideshow_filmstrip_thumb_deactive_transparent` int(4) NOT NULL,
|
780 |
`slideshow_filmstrip_rl_bg_color` varchar(64) NOT NULL,
|
781 |
+
`slideshow_filmstrip_rl_btn_color` varchar(64) NOT NULL,
|
782 |
`slideshow_filmstrip_rl_btn_size` int(4) NOT NULL,
|
783 |
`slideshow_title_font_size` int(4) NOT NULL,
|
784 |
+
`slideshow_title_font` varchar(64) NOT NULL,
|
785 |
`slideshow_title_color` varchar(64) NOT NULL,
|
786 |
`slideshow_title_opacity` int(4) NOT NULL,
|
787 |
`slideshow_title_border_radius` varchar(64) NOT NULL,
|
788 |
`slideshow_title_background_color` varchar(64) NOT NULL,
|
789 |
`slideshow_title_padding` varchar(64) NOT NULL,
|
790 |
`slideshow_description_font_size` int(4) NOT NULL,
|
791 |
+
`slideshow_description_font` varchar(64) NOT NULL,
|
792 |
`slideshow_description_color` varchar(64) NOT NULL,
|
793 |
`slideshow_description_opacity` int(4) NOT NULL,
|
794 |
`slideshow_description_border_radius` varchar(64) NOT NULL,
|
805 |
`slideshow_play_pause_btn_size` int(4) NOT NULL,
|
806 |
`slideshow_rl_btn_style` varchar(64) NOT NULL,
|
807 |
|
|
|
808 |
`blog_style_margin` varchar(128) NOT NULL,
|
809 |
`blog_style_padding` varchar(128) NOT NULL,
|
810 |
`blog_style_border_radius` varchar(128) NOT NULL,
|
817 |
`blog_style_align` varchar(128) NOT NULL,
|
818 |
`blog_style_share_buttons_bg_color` varchar(128) NOT NULL,
|
819 |
`blog_style_share_buttons_margin` varchar(128) NOT NULL,
|
|
|
820 |
`blog_style_share_buttons_border_radius` varchar(128) NOT NULL,
|
821 |
`blog_style_share_buttons_border_width` int(4) NOT NULL,
|
822 |
`blog_style_share_buttons_border_style` varchar(128) NOT NULL,
|
2381 |
));
|
2382 |
}
|
2383 |
$version = str_replace('.', '', get_option("wd_bwg_version"));
|
2384 |
+
$new_version = 114;
|
2385 |
if ($version && $version < $new_version) {
|
2386 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
2387 |
for ($i = $version; $i < $new_version; $i++) {
|
2390 |
$func_name();
|
2391 |
}
|
2392 |
}
|
2393 |
+
update_option("wd_bwg_version", '1.1.4');
|
2394 |
}
|
2395 |
else {
|
2396 |
+
add_option("wd_bwg_version", '1.1.4', '', 'no');
|
2397 |
add_option("wd_bwg_theme_version", '1.0.0', '', 'no');
|
2398 |
}
|
2399 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://web-dorado.com/products/wordpress-photo-gallery-plugin.html
|
|
4 |
Tags: photo, photo gallery, image gallery, video gallery, gallery, galleries, wordpress gallery plugin, images gallery, album, photo albums, Simple gallery, best gallery plugin, free photo gallery, wp gallery, wordpress gallery, website gallery, gallery shortcode, best gallery, picture, pictures, gallery slider, photo album, photogallery, widget gallery, image, images, photos, gallery lightbox, photoset, wordpress photo gallery plugin, wp gallery plugins, responsive wordpress photo gallery, media, image album, filterable gallery, banner rotator, fullscreen gallery, Fotogalerie, Galleria, galerie, galeri
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.8.1
|
7 |
-
Stable tag: 1.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -179,39 +179,40 @@ Step 2: Creating/Editing Galleries for the Photo Gallery.
|
|
179 |
2.4 Description. Fill in the information you would like to share with the gallery. The description will be visible with some of the gallery views.
|
180 |
2.5 Author. This indicates the author of the gallery. It automatically includes the name of the logged in user, who has added the gallery.
|
181 |
2.6 Published. Choose whether to publish the gallery or to leave it for the further publication.
|
182 |
-
2.7 Preview image. Indicate the image which will be used to preview the gallery. If you leave it blank, it will
|
183 |
-
2.8 Images. You can add photos by clicking Add Images button.
|
184 |
|
185 |
-
The plugin is not using standard WordPress Media Manager, instead here you will be redirected to Photo Gallery File Manager. After uploading images you should mark them and press Add button.
|
186 |
Photo Gallery File Manager
|
187 |
2.8.1 Up. This button will allow you to move within the taxonomy of the folder to a higher level folder.
|
188 |
-
2.8.2 Make a directory. You can indicate the location of the directory to get images
|
189 |
-
2.8.3 Rename item. You can rename the chosen images without leaving the uploader.
|
190 |
-
2.8.4 Copy. You can copy images and directories.
|
191 |
2.8.5 Cut. You can cut images and directories.
|
192 |
2.8.6 Paste. You can paste copied/cut images and directories.
|
193 |
2.8.7 Remove items. You can remove any amount of items from the list.
|
194 |
-
2.8.8 Upload files. You can upload images from your PC and other devices using this feature. Multi-upload is also possible. To upload all images, you should first press Ctrl+A.
|
|
|
195 |
To add the images to your Gallery, you should press Add the selected images to gallery button.
|
196 |
Important! Before uploading an image, you should provide dimensions for the generated thumbnail at the top of the Media Upload window or leave it to default value set in the Thumbnail options (Options Menu).
|
197 |
2.8.9 View options: View thumbnails. Displays images in Thumbnail view.
|
198 |
View list. Displays images in list view.
|
199 |
-
|
200 |
-
Now let`s explore the individual image options. Refer to the buttons on the right side and below.
|
201 |
-
2.9 Set Watermark. You can apply the created watermark by checking the image you want to add the watermark to and pressing the button. The watermark can be created in Options menu of the product.
|
202 |
-
2.10 Reset. You can reset the images to the default by selecting multiple/all images and pressing this button. It will remove all kind of changes, including crop, rotate and watermark.
|
203 |
-
2.11 Show order column. You can either Drag and Drop images to change the positioning of the images or prefer order column, where you can provide numbering for the images. This option is more useful when you have multiple pages of images and it is not convenient to use Drag/Drop.
|
204 |
2.12 Save images. Using this button you can save only the changes made with the images, the changes with the gallery as a whole should be saved with the upper Save button.
|
205 |
-
2.13 Publish. Check the images you want to publish and press the button.
|
206 |
-
2.14 Unpublish. Check the images you want to temporary unpublish and press the button.
|
207 |
-
2.15 Delete. Check the images you want to remove from the album and press the button.
|
208 |
2.16 Crop. You can crop the image for creating the Thumbnail for the large image. The thumbnail will be available with some of the gallery views.
|
209 |
-
2.17 Rotate. You can rotate the thumbnail image. The change will also affect the larger image.
|
210 |
2.18 Reset. If you want to return to the original image, undo crop and reset, you can use this button.
|
211 |
-
2.19 Alt/Title. Provide a title for each image.
|
212 |
-
2.20 Description. You can additionally have a description for the images to provide detailed information.
|
213 |
-
2.21 Tags. Each image can have a number of tags from the list of created tags.
|
214 |
-
2.22 Published. Choose whether to publish or unpublish the uploaded images.
|
215 |
|
216 |
Step 3: Creating/Editing Tags for the Photo Gallery galleries and albums.
|
217 |
3.1 On the left menu select Photo Gallery> Tags.
|
@@ -226,19 +227,19 @@ Step 4: Creating/Editing Albums for the Photo Gallery.
|
|
226 |
4.4 Description. Provide a detailed description for the album.
|
227 |
4.5 Author. The author of the album will be automatically set by the logged in user, who creates the album.
|
228 |
4.6 Published. Choose whether to publish the album or not.
|
229 |
-
4.7 Preview Image. Choose the preview image for the album. If you leave it blank it will
|
230 |
-
4.8 Albums and Galleries. Choose the galleries or already created albums to be used in the album.
|
231 |
4.9 Drag/Drop. After adding the albums you will be able to use drag/drop option to set the order for the albums to be displayed.
|
232 |
|
233 |
Step 5: Editing Options for Photo Gallery.
|
234 |
-
Here you can change default options for different views of Photo Gallery
|
235 |
5.1 Global Options of Photo Gallery.
|
236 |
-
5.1.1 Images directory. Provide an image directory location which will host the uploaded images.
|
237 |
-
5.1.2 Gallery role. Choose whether only author can make changes in the
|
238 |
5.1.3 Album role. Choose whether only author can make changes in the albums or not.
|
239 |
-
5.1.4 Image role. Choose whether only author can make changes in the images or not.
|
240 |
|
241 |
-
5.2 Watermark. You can use this option to add different types of watermarks on your images.
|
242 |
5.2.1 Watermark Type. Choose what kind of advertisement you want to use from provided 2 options (text, image) or not to use watermarks in your galleries and albums.
|
243 |
5.2.2 Text
|
244 |
Watermark text. Provide the text which will be displayed over the gallery/album images.
|
@@ -252,7 +253,7 @@ Watermark URL. Provide the absolute URL of the image which will be used for the
|
|
252 |
Watermark image size. Define the size (in percentage for the responsive look) of the image used for the watermark.
|
253 |
Watermark position. Choose the positioning of the watermark from the available 9 options.
|
254 |
|
255 |
-
5.3. Advertisement. You can use this option to add advertisement
|
256 |
5.3.1 Advertisement Type. Choose what kind of advertisement you want to use from the provided 2 options (text, image) or not to use ads in your galleries and albums.
|
257 |
5.3.2 Text
|
258 |
Advertisement text. Provide the text which will be displayed over the gallery/album images.
|
@@ -270,20 +271,20 @@ Advertisement opacity. Define the level of opacity for the advertisement, provid
|
|
270 |
Advertisement position. Choose the positioning of the advertisement from the available 9 options.
|
271 |
|
272 |
5.4 Lightbox
|
273 |
-
5.4.1 Ligthbox dimensions. Define the width and height of the lightbox.
|
274 |
-
5.4.2 Lightbox effect. Select the effect which will be applied to the slideshow of images in the lightbox.
|
275 |
5.4.3 Interval. Provide the time interval between the display of slideshow images in seconds.
|
276 |
-
5.4.4 Enable filmstrip. Choose whether to include the filmstrip of images in the lightbox or not.
|
277 |
5.4.5 Filmstrip height. Define the height of the filmstrip in pixels.
|
278 |
5.4.6 Enable control buttons. Choose whether to display control buttons in the lightbox or not.
|
279 |
5.4.7 Enable fullscreen. Choose whether to have a possibility of entering Fullscreen from the lightbox or not.
|
280 |
-
5.4.8 Enable comments. Choose whether to display comments with the images or not.
|
281 |
5.4.9 Enable Captcha for comments. Choose whether to have Captcha field for the possibility of adding comments as a human verification or not.
|
282 |
5.4.10 Enable original image display button. Choose whether to allow displaying original images upon clicking the button or not.
|
283 |
-
5.4.11 Enable image download. Choose whether to allow downloading the images or not.
|
284 |
-
5.4.12 Enable Facebook button. Choose whether to display Facebook share button with the images or not.
|
285 |
-
5.4.13 Enable Twitter button. Choose whether to display twit button with the images or not.
|
286 |
-
5.4.14 Enable Google+ button. Choose whether to display Google+ share button with the images or not.
|
287 |
|
288 |
5.5 Album Options
|
289 |
5.5.1 Number of album columns. Provide the maximum number of columns to be displayed within a single album.
|
@@ -299,9 +300,9 @@ Advertisement position. Choose the positioning of the advertisement from the ava
|
|
299 |
5.6.2 Interval. Provide the time interval between the slideshow images in seconds.
|
300 |
5.6.3 Slideshow dimensions. Define the width and height of the slideshow.
|
301 |
5.6.4 Enable autoplay. Choose either to have the slideshow auto played or allow the users to change the images with a click.
|
302 |
-
5.6.5 Enable shuffle. Choose whether to have the images randomized in the slideshow or not.
|
303 |
5.6.6 Enable control buttons. Choose whether to display control buttons with image slideshow views or not.
|
304 |
-
5.6.7 Enable slideshow filmstrip. Choose whether to include the filmstrip of images in the slideshow or not.
|
305 |
5.6.8 Slideshow filmstrip height. Define the height for the filmstrip for the slideshow.
|
306 |
5.6.9 Enable image title. Choose whether to display the titles for the slideshow images or not.
|
307 |
5.6.10 Title position. Select the positioning for the image title from the provided options.
|
@@ -312,11 +313,11 @@ Advertisement position. Choose the positioning of the advertisement from the ava
|
|
312 |
|
313 |
5.7 Thumbnail Options
|
314 |
5.7.1 Number of image columns. Provide the maximum number of image columns to be displayed with Thumbnails view.
|
315 |
-
5.7.2 Images per page. Provide the maximum number of images to be displayed in a single page.
|
316 |
5.7.3 Show image title. Choose whether to always display the image title, have it displayed only when hovered or never display it.
|
317 |
5.7.4 Generated thumbnail dimensions. Provide the dimensions of the thumbnail image which will be generated from the original image.
|
318 |
5.7.5 Frontend thumbnail dimensions. Provide the dimensions of the image, which will be displayed in the front end as a thumbnail. This should be smaller than the generated thumbnail to keep the quality of the image.
|
319 |
-
5.7.6 Thumbnail dimensions. Specify the width and height of the image thumbnails.
|
320 |
5.7.7 Enable image pagination. Choose whether to have image pagination or not.
|
321 |
|
322 |
|
@@ -330,7 +331,7 @@ Advertisement position. Choose the positioning of the advertisement from the ava
|
|
330 |
5.8.7 Enable Pagination for Blog Style view. Choose whether to have pagination for the Blog Style view or not.
|
331 |
|
332 |
Step 6: Creating/Editing Themes for different views of the Photo Gallery.
|
333 |
-
Use one of the default themes or click `Add new` button to create a new theme.
|
334 |
6.1 Thumbnails.
|
335 |
6.1.1 Name. Provide a name for the theme.
|
336 |
6.1.2 Margin. Define the space around the thumbnail in pixels.
|
@@ -351,16 +352,16 @@ Use one of the default themes or click `Add new` button to create a new theme.
|
|
351 |
|
352 |
6.2 Masonry
|
353 |
6.2.1 Name. Provide a name for the theme.
|
354 |
-
6.2.2 Padding. Define the padding of the individual images.
|
355 |
-
6.2.3 Border width. Define the border with for the individual images.
|
356 |
6.2.4 Border style. Select the style of the border from the provided options.
|
357 |
6.2.5 Border color. Select the border color for the border.
|
358 |
-
6.2.6 Border radius. Define the border radius for the individual images using CSS type values.
|
359 |
-
6.2.7 Transparency. Specify the level of transparency for the individual images.
|
360 |
6.2.8 Background color. Select a background color for the overall masonry box.
|
361 |
6.2.9 Background transparency. Specify the background transparency level.
|
362 |
6.2.10 Alignment. Choose the alignment of the masonry box in the page/post.
|
363 |
-
6.2.11 Hover effect. Select the effect of the individual images when hovered or chose to have none.
|
364 |
6.2.12 Hover effect value. Specify the value of the chosen hover effect using CSS type values.
|
365 |
6.2.13 Transition. Choose whether to have a transition with hover effects or not.
|
366 |
|
@@ -667,28 +668,28 @@ Use one of the default themes or click `Add new` button to create a new theme.
|
|
667 |
6.9.19 Button text. Choose whether to have text or navigation arrow set for the page navigation.
|
668 |
|
669 |
Step 7: Editing comments.
|
670 |
-
7.1 Image. Choose the image you want to moderate the comments for.
|
671 |
-
7.2 Name. Choose the author of the comments, if there are multiple comments for the chosen image.
|
672 |
-
7.3 Publish. Click to publish the comment.
|
673 |
-
7.4 Unpublish. Click to unpublish the comment.
|
674 |
-
7.5 Delete. Click to delete the comment.
|
675 |
|
676 |
Step 8: Publishing the Created Photo Gallery.
|
677 |
To insert a gallery into a Page or a Post.
|
678 |
Open the post/page you want to display the gallery. Press the button named Photo Gallery. A camera icon will be inserted into the page/post. Click on the image and select the gallery/album display you want to use for that specific page/post.
|
679 |
-
Each shortcode uses three columns of parameters. The first column shows parameters specific for that view only, the second one shows Lightbox (except Slideshow view) parameters, the third one is referred to the Advertisement.
|
680 |
In addition you can add the shortcode using Shortcode Generator .
|
681 |
8.1 General Parameters (First Column)
|
682 |
8.1.1Thumbnails
|
683 |
-
Theme. Select the theme to be applied to
|
684 |
Gallery. Select the gallery.
|
685 |
-
Sort by. Choose the option to use for image sequence.
|
686 |
Max. number of image columns. Provide the number of image columns in a page.
|
687 |
Images per page. Provide the maximum number of images per page.
|
688 |
Enable pagination. Choose whether to have pagination for the view or not.
|
689 |
Image thumbnail dimensions. Define the thumbnail width and height in pixels.
|
690 |
8.1.2 Masonry
|
691 |
-
Theme. Select the theme to be applied to
|
692 |
Gallery. Select the gallery.
|
693 |
Sort by. Choose the option to use for image sequence.
|
694 |
Max. number of image columns. Provide the number of image columns in a page.
|
@@ -696,7 +697,7 @@ Images per page. Provide the maximum number of images per page.
|
|
696 |
Enable pagination. Choose whether to have pagination for the view or not.
|
697 |
Image thumbnail width. Provide the thumbnail width for the images.
|
698 |
8.1.3 Slideshow
|
699 |
-
Theme. Select the theme to be applied to
|
700 |
Gallery. Select the gallery.
|
701 |
Sort by. Choose the option to use for image sequence.
|
702 |
Slideshow Effect. Select the effect to be applied to the slideshow.
|
@@ -708,14 +709,14 @@ Enable control buttons. Choose whether to display control buttons or not.
|
|
708 |
Enable slideshow filmstrip. Choose whether to have a thumbnail filmstrip with slideshow view or not.
|
709 |
Slideshow Filmstrip height. Specify the height for the filmstrip.
|
710 |
8.1.4 Image Browser
|
711 |
-
Theme. Select the theme to be applied to
|
712 |
Gallery. Select the gallery.
|
713 |
Sort by. Choose the option to use for image sequence.
|
714 |
Image width. Set the width for the image.
|
715 |
Enable image title. Choose whether to have an image title displayed within the view or not.
|
716 |
Enable image description. Choose whether to have an image description displayed within the view or not.
|
717 |
8.1.5 Compact Album.
|
718 |
-
Theme. Select the theme to be applied to
|
719 |
Album. Select the album.
|
720 |
Max. number of album columns. Provide the maximum number of albums to be displayed in a single column.
|
721 |
Albums per page. Provide the number of albums to be displayed in a single page.
|
@@ -726,7 +727,7 @@ Images per page. Set the number of images to be displayed in a single page.
|
|
726 |
Image thumbnail dimensions. Set the image thumbnail width and height for the album images.
|
727 |
Enable pagination. Choose whether to have pagination for the compact album view or not.
|
728 |
8.1.6 Extended Album
|
729 |
-
Theme. Select the theme to be applied to
|
730 |
Album. Select album.
|
731 |
Albums per page. Provide the number of albums to be displayed in a single page.
|
732 |
Album row height. Set the height for the album rows.
|
@@ -737,7 +738,7 @@ Images per page. Define the number of images to be displayed in a single page.
|
|
737 |
Image thumbnail dimensions. Define the image thumbnail width and height for the album images.
|
738 |
Enable pagination. Choose whether to have pagination for the extended albums or not.
|
739 |
8.1.7 Blog Style
|
740 |
-
Theme. Select the theme to be applied to
|
741 |
Gallery. Select the gallery.
|
742 |
Sort by. Choose the option to use for the image sequence.
|
743 |
Image width. Set the image width for the Blog Style view.
|
@@ -821,7 +822,7 @@ Theme. Choose the theme, which will be applied to the gallery/album correspondin
|
|
821 |
9.4.1 Title. Provide a title for the widget.
|
822 |
9.4.2 Choose whether to display an album or gallery.
|
823 |
9.4.3 Select Gallery/Select Album. Select the gallery/album to be displayed with the widget.
|
824 |
-
9.4.4 Choose whether to display random or the last
|
825 |
9.4.5 Number. Provide the number of images to be displayed with the widget.
|
826 |
9.4.6 Dimensions. Specify the width and height of the widget.
|
827 |
9.4.7 Theme. Choose the theme, which will be applied to the gallery/album.
|
4 |
Tags: photo, photo gallery, image gallery, video gallery, gallery, galleries, wordpress gallery plugin, images gallery, album, photo albums, Simple gallery, best gallery plugin, free photo gallery, wp gallery, wordpress gallery, website gallery, gallery shortcode, best gallery, picture, pictures, gallery slider, photo album, photogallery, widget gallery, image, images, photos, gallery lightbox, photoset, wordpress photo gallery plugin, wp gallery plugins, responsive wordpress photo gallery, media, image album, filterable gallery, banner rotator, fullscreen gallery, Fotogalerie, Galleria, galerie, galeri
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.8.1
|
7 |
+
Stable tag: 1.1.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
179 |
2.4 Description. Fill in the information you would like to share with the gallery. The description will be visible with some of the gallery views.
|
180 |
2.5 Author. This indicates the author of the gallery. It automatically includes the name of the logged in user, who has added the gallery.
|
181 |
2.6 Published. Choose whether to publish the gallery or to leave it for the further publication.
|
182 |
+
2.7 Preview image. Indicate the gallery image which will be used to preview the gallery. If you leave it blank, it will automatically pick the first gallery image among the uploaded files.
|
183 |
+
2.8 Images. You can add photos to the gallery by clicking Add Images button.
|
184 |
|
185 |
+
The Photo Gallery plugin is not using standard WordPress Media Manager, instead here you will be redirected to Photo Gallery File Manager. After uploading images you should mark them and press Add button.
|
186 |
Photo Gallery File Manager
|
187 |
2.8.1 Up. This button will allow you to move within the taxonomy of the folder to a higher level folder.
|
188 |
+
2.8.2 Make a directory. You can indicate the location of the directory to get images to be used in the gallery.
|
189 |
+
2.8.3 Rename item. You can rename the chosen gallery images without leaving the uploader.
|
190 |
+
2.8.4 Copy. You can copy images and directories to use in the galleries and albums.
|
191 |
2.8.5 Cut. You can cut images and directories.
|
192 |
2.8.6 Paste. You can paste copied/cut images and directories.
|
193 |
2.8.7 Remove items. You can remove any amount of items from the list.
|
194 |
+
2.8.8 Upload files. You can upload images from your PC and other devices using this feature. Multi-upload is also possible. To upload all images, you should first press Ctrl+A.
|
195 |
+
|
196 |
To add the images to your Gallery, you should press Add the selected images to gallery button.
|
197 |
Important! Before uploading an image, you should provide dimensions for the generated thumbnail at the top of the Media Upload window or leave it to default value set in the Thumbnail options (Options Menu).
|
198 |
2.8.9 View options: View thumbnails. Displays images in Thumbnail view.
|
199 |
View list. Displays images in list view.
|
200 |
+
|
201 |
+
Now let`s explore the individual gallery image options. Refer to the buttons on the right side and below.
|
202 |
+
2.9 Set Watermark. You can apply the created watermark by checking the image you want to add the watermark to and pressing the button. The watermark can be created in Options menu of the product. You can also add the watermark to all gallery images first selecting all gallery images and then pressing Set watermark button.
|
203 |
+
2.10 Reset. You can reset the gallery images to the default by selecting multiple/all images and pressing this button. It will remove all kind of changes, including crop, rotate and watermark.
|
204 |
+
2.11 Show order column. You can either Drag and Drop images to change the positioning of the images in the gallery or prefer order column, where you can provide numbering for the images to be displayed in a gallery. This option is more useful when you have multiple pages of images and it is not convenient to use Drag/Drop.
|
205 |
2.12 Save images. Using this button you can save only the changes made with the images, the changes with the gallery as a whole should be saved with the upper Save button.
|
206 |
+
2.13 Publish. Check the images you want to publish in the gallery and press the button.
|
207 |
+
2.14 Unpublish. Check the images you want to temporary unpublish from the gallery and press the button.
|
208 |
+
2.15 Delete. Check the images you want to remove from the gallery or album and press the button.
|
209 |
2.16 Crop. You can crop the image for creating the Thumbnail for the large image. The thumbnail will be available with some of the gallery views.
|
210 |
+
2.17 Rotate. You can rotate the thumbnail image. The change will also affect the larger image displayed within the gallery.
|
211 |
2.18 Reset. If you want to return to the original image, undo crop and reset, you can use this button.
|
212 |
+
2.19 Alt/Title. Provide a title for each gallery image.
|
213 |
+
2.20 Description. You can additionally have a description for the gallery images to provide detailed information.
|
214 |
+
2.21 Tags. Each gallery image can have a number of tags from the list of created tags.
|
215 |
+
2.22 Published. Choose whether to publish or unpublish the uploaded images within the gallery.
|
216 |
|
217 |
Step 3: Creating/Editing Tags for the Photo Gallery galleries and albums.
|
218 |
3.1 On the left menu select Photo Gallery> Tags.
|
227 |
4.4 Description. Provide a detailed description for the album.
|
228 |
4.5 Author. The author of the album will be automatically set by the logged in user, who creates the album.
|
229 |
4.6 Published. Choose whether to publish the album or not.
|
230 |
+
4.7 Preview Image. Choose the preview image for the album. If you leave it blank it will automatically use the first image used in the album.
|
231 |
+
4.8 Albums and Galleries. Choose the galleries or already created albums to be used in the album. Here you can add multiple galleries and albums. There is no such limitation.
|
232 |
4.9 Drag/Drop. After adding the albums you will be able to use drag/drop option to set the order for the albums to be displayed.
|
233 |
|
234 |
Step 5: Editing Options for Photo Gallery.
|
235 |
+
Here you can change default options for different views of Photo Gallery, as well as general options of the galleries and albums. You can simply navigate here choosing the corresponding tab.
|
236 |
5.1 Global Options of Photo Gallery.
|
237 |
+
5.1.1 Images directory. Provide an image directory location which will host the uploaded gallery images.
|
238 |
+
5.1.2 Gallery role. Choose whether only author can make changes in the gallery or not.
|
239 |
5.1.3 Album role. Choose whether only author can make changes in the albums or not.
|
240 |
+
5.1.4 Image role. Choose whether only author can make changes in the gallery images or not.
|
241 |
|
242 |
+
5.2 Watermark. You can use this option to add different types of watermarks on your gallery images.
|
243 |
5.2.1 Watermark Type. Choose what kind of advertisement you want to use from provided 2 options (text, image) or not to use watermarks in your galleries and albums.
|
244 |
5.2.2 Text
|
245 |
Watermark text. Provide the text which will be displayed over the gallery/album images.
|
253 |
Watermark image size. Define the size (in percentage for the responsive look) of the image used for the watermark.
|
254 |
Watermark position. Choose the positioning of the watermark from the available 9 options.
|
255 |
|
256 |
+
5.3. Advertisement. You can use this option to add advertisement over the gallery or album images.
|
257 |
5.3.1 Advertisement Type. Choose what kind of advertisement you want to use from the provided 2 options (text, image) or not to use ads in your galleries and albums.
|
258 |
5.3.2 Text
|
259 |
Advertisement text. Provide the text which will be displayed over the gallery/album images.
|
271 |
Advertisement position. Choose the positioning of the advertisement from the available 9 options.
|
272 |
|
273 |
5.4 Lightbox
|
274 |
+
5.4.1 Ligthbox dimensions. Define the width and height of the lightbox which will be displayed with some of the gallery and album views.
|
275 |
+
5.4.2 Lightbox effect. Select the effect which will be applied to the slideshow of gallry images in the lightbox.
|
276 |
5.4.3 Interval. Provide the time interval between the display of slideshow images in seconds.
|
277 |
+
5.4.4 Enable filmstrip. Choose whether to include the filmstrip of gallery or album images in the lightbox or not.
|
278 |
5.4.5 Filmstrip height. Define the height of the filmstrip in pixels.
|
279 |
5.4.6 Enable control buttons. Choose whether to display control buttons in the lightbox or not.
|
280 |
5.4.7 Enable fullscreen. Choose whether to have a possibility of entering Fullscreen from the lightbox or not.
|
281 |
+
5.4.8 Enable comments. Choose whether to display comments with the gallery images or not.
|
282 |
5.4.9 Enable Captcha for comments. Choose whether to have Captcha field for the possibility of adding comments as a human verification or not.
|
283 |
5.4.10 Enable original image display button. Choose whether to allow displaying original images upon clicking the button or not.
|
284 |
+
5.4.11 Enable image download. Choose whether to allow downloading the gallery images or not.
|
285 |
+
5.4.12 Enable Facebook button. Choose whether to display Facebook share button with the gallery images or not.
|
286 |
+
5.4.13 Enable Twitter button. Choose whether to display twit button with the gallery images or not.
|
287 |
+
5.4.14 Enable Google+ button. Choose whether to display Google+ share button with the gallery images or not.
|
288 |
|
289 |
5.5 Album Options
|
290 |
5.5.1 Number of album columns. Provide the maximum number of columns to be displayed within a single album.
|
300 |
5.6.2 Interval. Provide the time interval between the slideshow images in seconds.
|
301 |
5.6.3 Slideshow dimensions. Define the width and height of the slideshow.
|
302 |
5.6.4 Enable autoplay. Choose either to have the slideshow auto played or allow the users to change the images with a click.
|
303 |
+
5.6.5 Enable shuffle. Choose whether to have the gallery images randomized in the slideshow or not.
|
304 |
5.6.6 Enable control buttons. Choose whether to display control buttons with image slideshow views or not.
|
305 |
+
5.6.7 Enable slideshow filmstrip. Choose whether to include the filmstrip of gallery images in the slideshow or not.
|
306 |
5.6.8 Slideshow filmstrip height. Define the height for the filmstrip for the slideshow.
|
307 |
5.6.9 Enable image title. Choose whether to display the titles for the slideshow images or not.
|
308 |
5.6.10 Title position. Select the positioning for the image title from the provided options.
|
313 |
|
314 |
5.7 Thumbnail Options
|
315 |
5.7.1 Number of image columns. Provide the maximum number of image columns to be displayed with Thumbnails view.
|
316 |
+
5.7.2 Images per page. Provide the maximum number of gallery images to be displayed in a single page.
|
317 |
5.7.3 Show image title. Choose whether to always display the image title, have it displayed only when hovered or never display it.
|
318 |
5.7.4 Generated thumbnail dimensions. Provide the dimensions of the thumbnail image which will be generated from the original image.
|
319 |
5.7.5 Frontend thumbnail dimensions. Provide the dimensions of the image, which will be displayed in the front end as a thumbnail. This should be smaller than the generated thumbnail to keep the quality of the image.
|
320 |
+
5.7.6 Thumbnail dimensions. Specify the width and height of the gallery image thumbnails.
|
321 |
5.7.7 Enable image pagination. Choose whether to have image pagination or not.
|
322 |
|
323 |
|
331 |
5.8.7 Enable Pagination for Blog Style view. Choose whether to have pagination for the Blog Style view or not.
|
332 |
|
333 |
Step 6: Creating/Editing Themes for different views of the Photo Gallery.
|
334 |
+
Use one of the default Photo Gallery themes or click `Add new` button to create a new theme.
|
335 |
6.1 Thumbnails.
|
336 |
6.1.1 Name. Provide a name for the theme.
|
337 |
6.1.2 Margin. Define the space around the thumbnail in pixels.
|
352 |
|
353 |
6.2 Masonry
|
354 |
6.2.1 Name. Provide a name for the theme.
|
355 |
+
6.2.2 Padding. Define the padding of the individual gallery images.
|
356 |
+
6.2.3 Border width. Define the border with for the individual gallery images.
|
357 |
6.2.4 Border style. Select the style of the border from the provided options.
|
358 |
6.2.5 Border color. Select the border color for the border.
|
359 |
+
6.2.6 Border radius. Define the border radius for the individual gallery images using CSS type values.
|
360 |
+
6.2.7 Transparency. Specify the level of transparency for the individual gallery images.
|
361 |
6.2.8 Background color. Select a background color for the overall masonry box.
|
362 |
6.2.9 Background transparency. Specify the background transparency level.
|
363 |
6.2.10 Alignment. Choose the alignment of the masonry box in the page/post.
|
364 |
+
6.2.11 Hover effect. Select the effect of the individual gallery images when hovered or chose to have none.
|
365 |
6.2.12 Hover effect value. Specify the value of the chosen hover effect using CSS type values.
|
366 |
6.2.13 Transition. Choose whether to have a transition with hover effects or not.
|
367 |
|
668 |
6.9.19 Button text. Choose whether to have text or navigation arrow set for the page navigation.
|
669 |
|
670 |
Step 7: Editing comments.
|
671 |
+
7.1 Image. Choose the gallery image you want to moderate the comments for.
|
672 |
+
7.2 Name. Choose the author of the comments, if there are multiple comments for the chosen gallery image.
|
673 |
+
7.3 Publish. Click to publish the gallery image comment.
|
674 |
+
7.4 Unpublish. Click to unpublish the gallery image comment.
|
675 |
+
7.5 Delete. Click to delete the gallery image comment.
|
676 |
|
677 |
Step 8: Publishing the Created Photo Gallery.
|
678 |
To insert a gallery into a Page or a Post.
|
679 |
Open the post/page you want to display the gallery. Press the button named Photo Gallery. A camera icon will be inserted into the page/post. Click on the image and select the gallery/album display you want to use for that specific page/post.
|
680 |
+
Each Photo Gallery shortcode uses three columns of parameters. The first column shows parameters specific for that Photo Gallery view only, the second one shows Lightbox (except Slideshow view) parameters, the third one is referred to the Advertisement.
|
681 |
In addition you can add the shortcode using Shortcode Generator .
|
682 |
8.1 General Parameters (First Column)
|
683 |
8.1.1Thumbnails
|
684 |
+
Theme. Select the theme to be applied to this Photo Gallery view.
|
685 |
Gallery. Select the gallery.
|
686 |
+
Sort by. Choose the option to use for the gallery image sequence.
|
687 |
Max. number of image columns. Provide the number of image columns in a page.
|
688 |
Images per page. Provide the maximum number of images per page.
|
689 |
Enable pagination. Choose whether to have pagination for the view or not.
|
690 |
Image thumbnail dimensions. Define the thumbnail width and height in pixels.
|
691 |
8.1.2 Masonry
|
692 |
+
Theme. Select the theme to be applied to this Photo Gallery view.
|
693 |
Gallery. Select the gallery.
|
694 |
Sort by. Choose the option to use for image sequence.
|
695 |
Max. number of image columns. Provide the number of image columns in a page.
|
697 |
Enable pagination. Choose whether to have pagination for the view or not.
|
698 |
Image thumbnail width. Provide the thumbnail width for the images.
|
699 |
8.1.3 Slideshow
|
700 |
+
Theme. Select the theme to be applied to this Photo Gallery view.
|
701 |
Gallery. Select the gallery.
|
702 |
Sort by. Choose the option to use for image sequence.
|
703 |
Slideshow Effect. Select the effect to be applied to the slideshow.
|
709 |
Enable slideshow filmstrip. Choose whether to have a thumbnail filmstrip with slideshow view or not.
|
710 |
Slideshow Filmstrip height. Specify the height for the filmstrip.
|
711 |
8.1.4 Image Browser
|
712 |
+
Theme. Select the theme to be applied to this Photo Gallery view.
|
713 |
Gallery. Select the gallery.
|
714 |
Sort by. Choose the option to use for image sequence.
|
715 |
Image width. Set the width for the image.
|
716 |
Enable image title. Choose whether to have an image title displayed within the view or not.
|
717 |
Enable image description. Choose whether to have an image description displayed within the view or not.
|
718 |
8.1.5 Compact Album.
|
719 |
+
Theme. Select the theme to be applied to this Photo Gallery view.
|
720 |
Album. Select the album.
|
721 |
Max. number of album columns. Provide the maximum number of albums to be displayed in a single column.
|
722 |
Albums per page. Provide the number of albums to be displayed in a single page.
|
727 |
Image thumbnail dimensions. Set the image thumbnail width and height for the album images.
|
728 |
Enable pagination. Choose whether to have pagination for the compact album view or not.
|
729 |
8.1.6 Extended Album
|
730 |
+
Theme. Select the theme to be applied to this Photo Gallery view.
|
731 |
Album. Select album.
|
732 |
Albums per page. Provide the number of albums to be displayed in a single page.
|
733 |
Album row height. Set the height for the album rows.
|
738 |
Image thumbnail dimensions. Define the image thumbnail width and height for the album images.
|
739 |
Enable pagination. Choose whether to have pagination for the extended albums or not.
|
740 |
8.1.7 Blog Style
|
741 |
+
Theme. Select the theme to be applied to this Photo Gallery view.
|
742 |
Gallery. Select the gallery.
|
743 |
Sort by. Choose the option to use for the image sequence.
|
744 |
Image width. Set the image width for the Blog Style view.
|
822 |
9.4.1 Title. Provide a title for the widget.
|
823 |
9.4.2 Choose whether to display an album or gallery.
|
824 |
9.4.3 Select Gallery/Select Album. Select the gallery/album to be displayed with the widget.
|
825 |
+
9.4.4 Choose whether to display random or the last few images of the gallery or album.
|
826 |
9.4.5 Number. Provide the number of images to be displayed with the widget.
|
827 |
9.4.6 Dimensions. Specify the width and height of the widget.
|
828 |
9.4.7 Theme. Choose the theme, which will be applied to the gallery/album.
|