Version Description
- [Bug fix] [Banner widget] Added due to missing URL input field
Download this release
Release Info
Developer | kurudrive |
Plugin | VK All in One Expansion Unit |
Version | 9.64.4.0 |
Comparing to | |
See all releases |
Code changes from version 9.64.3.3 to 9.64.4.0
- .node-version +1 -1
- inc/other-widget/widget-banner.php +70 -32
- readme.txt +3 -1
- vkExUnit.php +1 -1
.node-version
CHANGED
@@ -1 +1 @@
|
|
1 |
-
14.
|
1 |
+
14.16.1
|
inc/other-widget/widget-banner.php
CHANGED
@@ -83,43 +83,81 @@ class WidgetBanner extends WP_Widget {
|
|
83 |
$image = wp_get_attachment_image_src( $instance['id'], 'large' );
|
84 |
}
|
85 |
?>
|
|
|
86 |
|
87 |
-
|
|
|
88 |
|
|
|
|
|
|
|
|
|
|
|
89 |
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
<label><input type="checkbox" name="<?php echo $this->get_field_name( 'blank' ); ?>" value="true"
|
115 |
-
<?php
|
116 |
-
if ( $instance['blank'] ) {
|
117 |
-
echo 'checked';}
|
118 |
-
?>
|
119 |
-
/> <?php _e( 'Open link new tab.', 'vk-all-in-one-expansion-unit' ); ?></label>
|
120 |
-
|
121 |
</div>
|
122 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
<?php
|
124 |
return $instance;
|
125 |
}
|
83 |
$image = wp_get_attachment_image_src( $instance['id'], 'large' );
|
84 |
}
|
85 |
?>
|
86 |
+
<div class="vkExUnit_banner_area" style="padding: 2em 0;">
|
87 |
|
88 |
+
<!-- [ .media_image_section ] -->
|
89 |
+
<div class="media_image_section">
|
90 |
|
91 |
+
<div class="_display admin-custom-thumb-outer" style="height:auto">
|
92 |
+
<?php if ( ! empty( $image ) ) : ?>
|
93 |
+
<img src="<?php echo esc_url( $image[0] ); ?>" class="admin-custom-thumb" />
|
94 |
+
<?php endif; ?>
|
95 |
+
</div>
|
96 |
|
97 |
+
<button
|
98 |
+
class="button button-default widget_media_btn_select"
|
99 |
+
style="text-align: center; margin:4px 0;"
|
100 |
+
onclick="javascript:vk_widget_image_add(this);return false;"
|
101 |
+
>
|
102 |
+
<?php _e( 'Select image', 'vk-all-in-one-expansion-unit' ); ?>
|
103 |
+
</button>
|
104 |
+
|
105 |
+
<button
|
106 |
+
class="button button-default widget_media_btn_reset"
|
107 |
+
style="text-align: center; margin:4px 0;"
|
108 |
+
onclick="javascript:vk_widget_image_del(this);return false;"
|
109 |
+
>
|
110 |
+
<?php _e( 'Clear image', 'vk-all-in-one-expansion-unit' ); ?>
|
111 |
+
</button>
|
112 |
+
|
113 |
+
<div class="_form" style="line-height: 2em">
|
114 |
+
<input
|
115 |
+
type="hidden"
|
116 |
+
class="_id"
|
117 |
+
name="<?php echo $this->get_field_name( 'id' ); ?>"
|
118 |
+
value="<?php echo esc_attr( $instance['id'] ); ?>"
|
119 |
+
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
</div>
|
121 |
|
122 |
+
</div><!-- [ /.media_image_section ] -->
|
123 |
+
|
124 |
+
<label>
|
125 |
+
<?php _e( 'Alternative text', 'vk-all-in-one-expansion-unit' ); ?> :
|
126 |
+
<input
|
127 |
+
class="_alt"
|
128 |
+
type="text"
|
129 |
+
id="<?php echo $this->get_field_id( 'title' ); ?>"
|
130 |
+
name="<?php echo $this->get_field_name( 'title' ); ?>"
|
131 |
+
style="width: 100%"
|
132 |
+
value="<?php echo esc_attr( $instance['title'] ); ?>"
|
133 |
+
/>
|
134 |
+
</label>
|
135 |
+
<br/>
|
136 |
+
<label>
|
137 |
+
URL :
|
138 |
+
<input
|
139 |
+
type="text"
|
140 |
+
name="<?php echo $this->get_field_name( 'href' ); ?>"
|
141 |
+
style="width: 100%"
|
142 |
+
value="<?php echo esc_attr( $instance['href'] ); ?>"
|
143 |
+
/>
|
144 |
+
</label>
|
145 |
+
<br/>
|
146 |
+
<label>
|
147 |
+
<input
|
148 |
+
type="checkbox"
|
149 |
+
name="<?php echo $this->get_field_name( 'blank' ); ?>"
|
150 |
+
value="true"
|
151 |
+
<?php
|
152 |
+
if ( $instance['blank'] ) {
|
153 |
+
echo 'checked';
|
154 |
+
}
|
155 |
+
?>
|
156 |
+
/>
|
157 |
+
<?php _e( 'Open link new tab.', 'vk-all-in-one-expansion-unit' ); ?>
|
158 |
+
</label>
|
159 |
+
|
160 |
+
</div>
|
161 |
<?php
|
162 |
return $instance;
|
163 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
|
5 |
Requires at least: 5.3.0
|
6 |
Tested up to: 5.8.0
|
7 |
-
Stable tag: 9.64.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -80,6 +80,8 @@ e.g.
|
|
80 |
2. This is an example of SNS cooperation setting screen.
|
81 |
|
82 |
== Changelog ==
|
|
|
|
|
83 |
|
84 |
= 9.64.3.0 =
|
85 |
* [ Bug fix ][ Call To Action ] Fix global $post pollution it's bring to bug for child page list and so on.
|
4 |
Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
|
5 |
Requires at least: 5.3.0
|
6 |
Tested up to: 5.8.0
|
7 |
+
Stable tag: 9.64.4.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
80 |
2. This is an example of SNS cooperation setting screen.
|
81 |
|
82 |
== Changelog ==
|
83 |
+
= 9.64.4.0 =
|
84 |
+
* [Bug fix] [Banner widget] Added due to missing URL input field
|
85 |
|
86 |
= 9.64.3.0 =
|
87 |
* [ Bug fix ][ Call To Action ] Fix global $post pollution it's bring to bug for child page list and so on.
|
vkExUnit.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: VK All in One Expansion Unit
|
4 |
* Plugin URI: https://ex-unit.nagoya
|
5 |
* Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
|
6 |
-
* Version: 9.64.
|
7 |
* Author: Vektor,Inc.
|
8 |
* Text Domain: vk-all-in-one-expansion-unit
|
9 |
* Domain Path: /languages
|
3 |
* Plugin Name: VK All in One Expansion Unit
|
4 |
* Plugin URI: https://ex-unit.nagoya
|
5 |
* Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
|
6 |
+
* Version: 9.64.4.0
|
7 |
* Author: Vektor,Inc.
|
8 |
* Text Domain: vk-all-in-one-expansion-unit
|
9 |
* Domain Path: /languages
|