Version Description
Released 05 March 2021
- Fix: compatibility issue with YITH WooCommerce Wishlist
Download this release
Release Info
Developer | yithemes |
Plugin | YITH WooCommerce Quick View |
Version | 1.5.1 |
Comparing to | |
See all releases |
Code changes from version 1.5.0 to 1.5.1
- README.txt +7 -6
- includes/class.yith-wcqv-frontend.php +15 -1
- init.php +3 -3
- plugin-fw/assets/css/yith-fields.css +95 -8
- plugin-fw/assets/css/yith-icon-font.css +0 -167
- plugin-fw/assets/css/yith-icon.css +271 -0
- plugin-fw/assets/fonts/yith-icon.eot +0 -0
- plugin-fw/assets/fonts/yith-icon.svg +0 -47
- plugin-fw/assets/fonts/yith-icon.ttf +0 -0
- plugin-fw/assets/fonts/yith-icon.woff +0 -0
- plugin-fw/assets/fonts/yith-icon.woff2 +0 -0
- plugin-fw/assets/js/yith-fields.js +37 -0
- plugin-fw/assets/js/yith-fields.min.js +1 -1
- plugin-fw/includes/class-yit-assets.php +1 -1
- plugin-fw/init.php +2 -2
- plugin-fw/languages/yith-plugin-fw-el.mo +0 -0
- plugin-fw/languages/yith-plugin-fw-el.po +13 -1
- plugin-fw/languages/yith-plugin-fw-es_ES.mo +0 -0
- plugin-fw/languages/yith-plugin-fw-es_ES.po +13 -1
- plugin-fw/languages/yith-plugin-fw-it_IT.mo +0 -0
- plugin-fw/languages/yith-plugin-fw-it_IT.po +15 -3
- plugin-fw/languages/yith-plugin-fw-nl_NL.mo +0 -0
- plugin-fw/languages/yith-plugin-fw-nl_NL.po +23 -3
- plugin-fw/languages/yith-plugin-fw.pot +11 -1
- plugin-fw/templates/fields/copy-to-clipboard.php +47 -0
- plugin-fw/templates/fields/inline-fields.php +1 -1
- plugin-fw/yit-functions.php +25 -0
README.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: yithemes
|
|
3 |
Tags: woocommerce, quick view, woocommerce quick view, products quick view
|
4 |
Requires at least: 5.3
|
5 |
Tested up to: 5.7
|
6 |
-
Stable tag: 1.5.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -40,6 +40,10 @@ Full documentation is available [here](https://docs.yithemes.com/yith-woocommerc
|
|
40 |
|
41 |
== Changelog ==
|
42 |
|
|
|
|
|
|
|
|
|
43 |
= 1.5.0 = Released 02 March 2021
|
44 |
|
45 |
* New: Support for WordPress 5.7
|
@@ -324,9 +328,6 @@ Or, if you have created your own language pack, or have an update for an existin
|
|
324 |
|
325 |
== Upgrade notice ==
|
326 |
|
327 |
-
= 1.5.
|
328 |
|
329 |
-
*
|
330 |
-
* New: support for WooCommerce 5.0
|
331 |
-
* Update: YITH plugin framework
|
332 |
-
* Fix: issue with YITH Proteo and button "add to cart" position on image hover
|
3 |
Tags: woocommerce, quick view, woocommerce quick view, products quick view
|
4 |
Requires at least: 5.3
|
5 |
Tested up to: 5.7
|
6 |
+
Stable tag: 1.5.1
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
40 |
|
41 |
== Changelog ==
|
42 |
|
43 |
+
= 1.5.1 = Released 05 March 2021
|
44 |
+
|
45 |
+
* Fix: compatibility issue with YITH WooCommerce Wishlist
|
46 |
+
|
47 |
= 1.5.0 = Released 02 March 2021
|
48 |
|
49 |
* New: Support for WordPress 5.7
|
328 |
|
329 |
== Upgrade notice ==
|
330 |
|
331 |
+
= 1.5.1 = Released 05 March 2021
|
332 |
|
333 |
+
* Fix: compatibility issue with YITH WooCommerce Wishlist
|
|
|
|
|
|
includes/class.yith-wcqv-frontend.php
CHANGED
@@ -152,7 +152,7 @@ if ( ! class_exists( 'YITH_WCQV_Frontend' ) ) {
|
|
152 |
add_action( 'woocommerce_after_shop_loop_item', array( $this, 'yith_add_quick_view_button' ), 15 );
|
153 |
}
|
154 |
|
155 |
-
add_action( 'yith_wcwl_table_after_product_name', array( $this, '
|
156 |
}
|
157 |
|
158 |
|
@@ -207,6 +207,20 @@ if ( ! class_exists( 'YITH_WCQV_Frontend' ) ) {
|
|
207 |
echo $button; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
208 |
}
|
209 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
/**
|
211 |
* Enqueue scripts and pass variable to js used in quick view
|
212 |
*
|
152 |
add_action( 'woocommerce_after_shop_loop_item', array( $this, 'yith_add_quick_view_button' ), 15 );
|
153 |
}
|
154 |
|
155 |
+
add_action( 'yith_wcwl_table_after_product_name', array( $this, 'add_quick_view_button_wishlist' ), 15 );
|
156 |
}
|
157 |
|
158 |
|
207 |
echo $button; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
208 |
}
|
209 |
|
210 |
+
/**
|
211 |
+
* Add quick view button in wishlist
|
212 |
+
*
|
213 |
+
* @since 1.5.1
|
214 |
+
* @author Francesco Licandro
|
215 |
+
* @param YITH_WCWL_Wishlist_Item $item THe wishlist item.
|
216 |
+
* @return string|void
|
217 |
+
*/
|
218 |
+
public function add_quick_view_button_wishlist( $item ) {
|
219 |
+
if ( $item instanceof YITH_WCWL_Wishlist_Item ) {
|
220 |
+
$this->yith_add_quick_view_button( $item->get_product_id() );
|
221 |
+
}
|
222 |
+
}
|
223 |
+
|
224 |
/**
|
225 |
* Enqueue scripts and pass variable to js used in quick view
|
226 |
*
|
init.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: YITH WooCommerce Quick View
|
4 |
* Plugin URI: https://yithemes.com/themes/plugins/yith-woocommerce-quick-view
|
5 |
* Description: The <code><strong>YITH WooCommerce Quick View</strong></code> plugin allows your customers to have a quick look about products. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce shop on <strong>YITH</strong></a>.
|
6 |
-
* Version: 1.5.
|
7 |
* Author: YITH
|
8 |
* Author URI: https://yithemes.com/
|
9 |
* Text Domain: yith-woocommerce-quick-view
|
@@ -13,7 +13,7 @@
|
|
13 |
*
|
14 |
* @author YITH
|
15 |
* @package YITH WooCommerce Quick View
|
16 |
-
* @version 1.5.
|
17 |
*/
|
18 |
/** Copyright 2015-2021 - YITH (email : plugins@yithemes.com)
|
19 |
*
|
@@ -62,7 +62,7 @@ register_activation_hook( __FILE__, 'yith_plugin_registration_hook' );
|
|
62 |
|
63 |
|
64 |
if ( ! defined( 'YITH_WCQV_VERSION' ) ) {
|
65 |
-
define( 'YITH_WCQV_VERSION', '1.5.
|
66 |
}
|
67 |
|
68 |
if ( ! defined( 'YITH_WCQV_FREE_INIT' ) ) {
|
3 |
* Plugin Name: YITH WooCommerce Quick View
|
4 |
* Plugin URI: https://yithemes.com/themes/plugins/yith-woocommerce-quick-view
|
5 |
* Description: The <code><strong>YITH WooCommerce Quick View</strong></code> plugin allows your customers to have a quick look about products. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce shop on <strong>YITH</strong></a>.
|
6 |
+
* Version: 1.5.1
|
7 |
* Author: YITH
|
8 |
* Author URI: https://yithemes.com/
|
9 |
* Text Domain: yith-woocommerce-quick-view
|
13 |
*
|
14 |
* @author YITH
|
15 |
* @package YITH WooCommerce Quick View
|
16 |
+
* @version 1.5.1
|
17 |
*/
|
18 |
/** Copyright 2015-2021 - YITH (email : plugins@yithemes.com)
|
19 |
*
|
62 |
|
63 |
|
64 |
if ( ! defined( 'YITH_WCQV_VERSION' ) ) {
|
65 |
+
define( 'YITH_WCQV_VERSION', '1.5.1' );
|
66 |
}
|
67 |
|
68 |
if ( ! defined( 'YITH_WCQV_FREE_INIT' ) ) {
|
plugin-fw/assets/css/yith-fields.css
CHANGED
@@ -960,7 +960,7 @@ YITH UI
|
|
960 |
.yith-plugin-ui button.yith-plugin-fw-upload-button:before {
|
961 |
content : "\e90c";
|
962 |
font-family : 'yith-icon';
|
963 |
-
font-size :
|
964 |
font-weight : 400;
|
965 |
margin-right : 10px;
|
966 |
vertical-align : middle;
|
@@ -1301,6 +1301,12 @@ span.select2.select2-container.select2-container--default.yith-plugin-fw-select2
|
|
1301 |
/**
|
1302 |
DATEPICKER
|
1303 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
1304 |
div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
1305 |
border : 0;
|
1306 |
box-shadow : 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
|
@@ -1513,7 +1519,7 @@ div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
|
1513 |
content : "\e91a";
|
1514 |
text-indent : 0;
|
1515 |
font-family : 'yith-icon';
|
1516 |
-
font-size :
|
1517 |
color : #d8d8d8;
|
1518 |
font-weight : normal;
|
1519 |
width : 15px;
|
@@ -2098,6 +2104,84 @@ div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
|
2098 |
border-color : #007694;
|
2099 |
}
|
2100 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2101 |
|
2102 |
/** OVERRIDE WOOCOMMERCE CLASSES FOR 5.3 */
|
2103 |
.branch-5-3 .yith-plugin-fw .select2-container .select2-selection--single .select2-selection__arrow {
|
@@ -2256,11 +2340,14 @@ div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
|
2256 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span {
|
2257 |
width : 48px;
|
2258 |
height : 20px;
|
|
|
2259 |
}
|
2260 |
|
2261 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:before {
|
2262 |
-
top :
|
2263 |
left : 3px;
|
|
|
|
|
2264 |
}
|
2265 |
|
2266 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:before, .yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:before {
|
@@ -2268,15 +2355,15 @@ div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
|
2268 |
}
|
2269 |
|
2270 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:after, .yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:after {
|
2271 |
-
font-size
|
2272 |
-
padding
|
2273 |
-
margin-top :
|
2274 |
}
|
2275 |
|
2276 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:after {
|
2277 |
font-size : 11px;
|
2278 |
-
padding-left
|
2279 |
-
margin-top
|
2280 |
}
|
2281 |
|
2282 |
.yith-plugin-fw .select2-container .select2-selection--single .select2-selection__rendered {
|
960 |
.yith-plugin-ui button.yith-plugin-fw-upload-button:before {
|
961 |
content : "\e90c";
|
962 |
font-family : 'yith-icon';
|
963 |
+
font-size : 17px;
|
964 |
font-weight : 400;
|
965 |
margin-right : 10px;
|
966 |
vertical-align : middle;
|
1301 |
/**
|
1302 |
DATEPICKER
|
1303 |
*/
|
1304 |
+
.yith-plugin-ui .yith-plugin-fw-datepicker + .yith-icon-calendar,
|
1305 |
+
.yith-plugin-fw-datepicker + .yith-icon-calendar {
|
1306 |
+
color : #ccc;
|
1307 |
+
font-size : 18px;
|
1308 |
+
}
|
1309 |
+
|
1310 |
div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
1311 |
border : 0;
|
1312 |
box-shadow : 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
|
1519 |
content : "\e91a";
|
1520 |
text-indent : 0;
|
1521 |
font-family : 'yith-icon';
|
1522 |
+
font-size : 16px;
|
1523 |
color : #d8d8d8;
|
1524 |
font-weight : normal;
|
1525 |
width : 15px;
|
2104 |
border-color : #007694;
|
2105 |
}
|
2106 |
|
2107 |
+
/**
|
2108 |
+
* Copy to clipboard
|
2109 |
+
*/
|
2110 |
+
.yith-plugin-fw-copy-to-clipboard {
|
2111 |
+
background : #ffffff;
|
2112 |
+
border-radius : 8px;
|
2113 |
+
border : 1px solid #d8d8d8;
|
2114 |
+
display : flex;
|
2115 |
+
align-items : center;
|
2116 |
+
padding : 0 12px;
|
2117 |
+
max-width : 400px;
|
2118 |
+
box-sizing : border-box;
|
2119 |
+
}
|
2120 |
+
|
2121 |
+
.yith-plugin-fw-copy-to-clipboard.yith-plugin-fw-copy-to-clipboard--readonly {
|
2122 |
+
background : #f1f1f1;
|
2123 |
+
border : 1px dashed #cccccc;
|
2124 |
+
}
|
2125 |
+
|
2126 |
+
.yith-plugin-fw-copy-to-clipboard__field-wrap {
|
2127 |
+
position : relative;
|
2128 |
+
flex : 1;
|
2129 |
+
}
|
2130 |
+
|
2131 |
+
.yith-plugin-fw-copy-to-clipboard__tip {
|
2132 |
+
display : none;
|
2133 |
+
position : absolute;
|
2134 |
+
background : rgba(30, 30, 30, 0.9);
|
2135 |
+
color : #ffffff;
|
2136 |
+
padding : 7px 10px;
|
2137 |
+
border-radius : 3px;
|
2138 |
+
right : 8px;
|
2139 |
+
top : 50%;
|
2140 |
+
transform : translateY(-50%);
|
2141 |
+
pointer-events : none;
|
2142 |
+
font-size : 12px;
|
2143 |
+
line-height : 1;
|
2144 |
+
}
|
2145 |
+
|
2146 |
+
|
2147 |
+
.yith-plugin-fw-copy-to-clipboard input[type=text].yith-plugin-fw-copy-to-clipboard__field,
|
2148 |
+
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].yith-plugin-fw-copy-to-clipboard__field {
|
2149 |
+
height : 38px;
|
2150 |
+
width : 100%;
|
2151 |
+
background : transparent;
|
2152 |
+
padding : 0;
|
2153 |
+
border : 0;
|
2154 |
+
border-radius : 0;
|
2155 |
+
}
|
2156 |
+
|
2157 |
+
.yith-plugin-fw-copy-to-clipboard.yith-plugin-fw-copy-to-clipboard--readonly input[type=text].yith-plugin-fw-copy-to-clipboard__field,
|
2158 |
+
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table .yith-plugin-fw-copy-to-clipboard--readonly input[type=text].yith-plugin-fw-copy-to-clipboard__field {
|
2159 |
+
color : #999;
|
2160 |
+
cursor : default;
|
2161 |
+
}
|
2162 |
+
|
2163 |
+
.yith-plugin-fw-copy-to-clipboard__copy {
|
2164 |
+
display : flex;
|
2165 |
+
align-items : center;
|
2166 |
+
cursor : pointer;
|
2167 |
+
border-radius : 2px;
|
2168 |
+
padding : 1px;
|
2169 |
+
user-select : none;
|
2170 |
+
}
|
2171 |
+
|
2172 |
+
.yith-plugin-fw-copy-to-clipboard__copy:hover {
|
2173 |
+
box-shadow : 0 0 0 2px #2470ff;
|
2174 |
+
}
|
2175 |
+
|
2176 |
+
.yith-plugin-fw-copy-to-clipboard__copy__text {
|
2177 |
+
font-size : 12px;
|
2178 |
+
font-weight : 600;
|
2179 |
+
}
|
2180 |
+
|
2181 |
+
.yith-plugin-fw-copy-to-clipboard__copy__icon {
|
2182 |
+
margin-right : 4px;
|
2183 |
+
font-size : 14px;
|
2184 |
+
}
|
2185 |
|
2186 |
/** OVERRIDE WOOCOMMERCE CLASSES FOR 5.3 */
|
2187 |
.branch-5-3 .yith-plugin-fw .select2-container .select2-selection--single .select2-selection__arrow {
|
2340 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span {
|
2341 |
width : 48px;
|
2342 |
height : 20px;
|
2343 |
+
padding: 2px;
|
2344 |
}
|
2345 |
|
2346 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:before {
|
2347 |
+
top : 4px;
|
2348 |
left : 3px;
|
2349 |
+
width: 10px;
|
2350 |
+
height: 10px;
|
2351 |
}
|
2352 |
|
2353 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:before, .yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:before {
|
2355 |
}
|
2356 |
|
2357 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:after, .yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:after {
|
2358 |
+
font-size : 11px;
|
2359 |
+
padding-right: 12px;
|
2360 |
+
margin-top : 0;
|
2361 |
}
|
2362 |
|
2363 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:after {
|
2364 |
font-size : 11px;
|
2365 |
+
padding-left: 12px;
|
2366 |
+
margin-top: 0;
|
2367 |
}
|
2368 |
|
2369 |
.yith-plugin-fw .select2-container .select2-selection--single .select2-selection__rendered {
|
plugin-fw/assets/css/yith-icon-font.css
DELETED
@@ -1,167 +0,0 @@
|
|
1 |
-
@font-face {
|
2 |
-
font-family: 'yith-icon';
|
3 |
-
src: url('../fonts/yith-icon.eot?tkn99p');
|
4 |
-
src: url('../fonts/yith-icon.eot?tkn99p#iefix') format('embedded-opentype'),
|
5 |
-
url('../fonts/yith-icon.ttf?tkn99p') format('truetype'),
|
6 |
-
url('../fonts/yith-icon.woff?tkn99p') format('woff'),
|
7 |
-
url('../fonts/yith-icon.svg?tkn99p#yith-icon') format('svg');
|
8 |
-
font-weight: normal;
|
9 |
-
font-style: normal;
|
10 |
-
font-display: block;
|
11 |
-
}
|
12 |
-
|
13 |
-
[class^="yith-icon-"], [class*=" yith-icon-"] {
|
14 |
-
/* use !important to prevent issues with browser extensions that change fonts */
|
15 |
-
font-family: 'yith-icon' !important;
|
16 |
-
speak: never;
|
17 |
-
font-style: normal;
|
18 |
-
font-weight: normal;
|
19 |
-
font-variant: normal;
|
20 |
-
text-transform: none;
|
21 |
-
line-height: 1;
|
22 |
-
|
23 |
-
/* Better Font Rendering =========== */
|
24 |
-
-webkit-font-smoothing: antialiased;
|
25 |
-
-moz-osx-font-smoothing: grayscale;
|
26 |
-
}
|
27 |
-
|
28 |
-
.yith-icon-paypal-svgrepo-com:before {
|
29 |
-
content: "\e91b";
|
30 |
-
}
|
31 |
-
.yith-icon-check-circle:before {
|
32 |
-
content: "\e921";
|
33 |
-
color: #757575;
|
34 |
-
}
|
35 |
-
.yith-icon-info-squared:before {
|
36 |
-
content: "\e922";
|
37 |
-
color: #757575;
|
38 |
-
}
|
39 |
-
.yith-icon-warning-triangle:before {
|
40 |
-
content: "\e923";
|
41 |
-
color: #757575;
|
42 |
-
}
|
43 |
-
.yith-icon-bank:before {
|
44 |
-
content: "\e91c";
|
45 |
-
}
|
46 |
-
.yith-icon-accounting:before {
|
47 |
-
content: "\e91d";
|
48 |
-
}
|
49 |
-
.yith-icon-bank-check:before {
|
50 |
-
content: "\e91e";
|
51 |
-
}
|
52 |
-
.yith-icon-cash:before {
|
53 |
-
content: "\e91f";
|
54 |
-
}
|
55 |
-
.yith-icon-credit-card:before {
|
56 |
-
content: "\e920";
|
57 |
-
}
|
58 |
-
.yith-icon-yith:before {
|
59 |
-
content: "\e924";
|
60 |
-
}
|
61 |
-
.yith-icon-calendar_add:before {
|
62 |
-
content: "\e913";
|
63 |
-
color: #757575;
|
64 |
-
}
|
65 |
-
.yith-icon-calendar_money:before {
|
66 |
-
content: "\e914";
|
67 |
-
color: #757575;
|
68 |
-
}
|
69 |
-
.yith-icon-calendar2:before {
|
70 |
-
content: "\e915";
|
71 |
-
color: #757575;
|
72 |
-
}
|
73 |
-
.yith-icon-people:before {
|
74 |
-
content: "\e916";
|
75 |
-
color: #757575;
|
76 |
-
}
|
77 |
-
.yith-icon-shield_money:before {
|
78 |
-
content: "\e917";
|
79 |
-
color: #757575;
|
80 |
-
}
|
81 |
-
.yith-icon-time_check:before {
|
82 |
-
content: "\e918";
|
83 |
-
color: #757575;
|
84 |
-
}
|
85 |
-
.yith-icon-world_settings:before {
|
86 |
-
content: "\e919";
|
87 |
-
color: #757575;
|
88 |
-
}
|
89 |
-
.yith-icon-arrow_eye_closed:before {
|
90 |
-
content: "\e912";
|
91 |
-
color: #757575;
|
92 |
-
}
|
93 |
-
.yith-icon-arrow_eye:before {
|
94 |
-
content: "\e911";
|
95 |
-
color: #757575;
|
96 |
-
}
|
97 |
-
.yith-icon-reset:before {
|
98 |
-
content: "\e910";
|
99 |
-
color: #757575;
|
100 |
-
}
|
101 |
-
.yith-icon-drag:before {
|
102 |
-
content: "\e90f";
|
103 |
-
color: #757575;
|
104 |
-
}
|
105 |
-
.yith-icon-trash:before {
|
106 |
-
content: "\e90d";
|
107 |
-
color: #757575;
|
108 |
-
}
|
109 |
-
.yith-icon-info:before {
|
110 |
-
content: "\e90e";
|
111 |
-
color: #757575;
|
112 |
-
}
|
113 |
-
.yith-icon-arrow_down:before {
|
114 |
-
content: "\e900";
|
115 |
-
color: #757575;
|
116 |
-
}
|
117 |
-
.yith-icon-arrow_left:before {
|
118 |
-
content: "\e901";
|
119 |
-
color: #757575;
|
120 |
-
}
|
121 |
-
.yith-icon-arrow_right:before {
|
122 |
-
content: "\e902";
|
123 |
-
color: #757575;
|
124 |
-
}
|
125 |
-
.yith-icon-arrow_up:before {
|
126 |
-
content: "\e903";
|
127 |
-
color: #757575;
|
128 |
-
}
|
129 |
-
.yith-icon-calendar:before {
|
130 |
-
content: "\e904";
|
131 |
-
color: #757575;
|
132 |
-
}
|
133 |
-
.yith-icon-check:before {
|
134 |
-
content: "\e905";
|
135 |
-
color: #757575;
|
136 |
-
}
|
137 |
-
.yith-icon-close:before {
|
138 |
-
content: "\e906";
|
139 |
-
color: #757575;
|
140 |
-
}
|
141 |
-
.yith-icon-edit:before {
|
142 |
-
content: "\e907";
|
143 |
-
color: #757575;
|
144 |
-
}
|
145 |
-
.yith-icon-magnifier:before {
|
146 |
-
content: "\e908";
|
147 |
-
color: #757575;
|
148 |
-
}
|
149 |
-
.yith-icon-pencil:before {
|
150 |
-
content: "\e909";
|
151 |
-
color: #757575;
|
152 |
-
}
|
153 |
-
.yith-icon-plus:before {
|
154 |
-
content: "\e90a";
|
155 |
-
color: #757575;
|
156 |
-
}
|
157 |
-
.yith-icon-update:before {
|
158 |
-
content: "\e90b";
|
159 |
-
color: #757575;
|
160 |
-
}
|
161 |
-
.yith-icon-upload:before {
|
162 |
-
content: "\e90c";
|
163 |
-
color: #757575;
|
164 |
-
}
|
165 |
-
.yith-icon-reply:before {
|
166 |
-
content: "\e91a";
|
167 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
plugin-fw/assets/css/yith-icon.css
ADDED
@@ -0,0 +1,271 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* DO NOT EDIT THIS FILE DIRECTLY
|
3 |
+
* This file is automatically built using a build process
|
4 |
+
*/
|
5 |
+
|
6 |
+
/* stylelint-disable function-url-quotes, declaration-colon-newline-after */
|
7 |
+
@font-face {
|
8 |
+
font-family: yith-icon;
|
9 |
+
src: url("../fonts/yith-icon.eot?c433269285442943176e8d23fe8a0d79");
|
10 |
+
src: url("../fonts/yith-icon.eot?c433269285442943176e8d23fe8a0d79#iefix") format("embedded-opentype"),
|
11 |
+
url("data:application/x-font-woff;charset=utf-8;base64,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") format("woff"),
|
12 |
+
url("../fonts/yith-icon.ttf?c433269285442943176e8d23fe8a0d79") format("truetype");
|
13 |
+
font-weight: 400;
|
14 |
+
font-style: normal;
|
15 |
+
}
|
16 |
+
/* stylelint-enable */
|
17 |
+
|
18 |
+
|
19 |
+
[class^="yith-icon-"], [class*=" yith-icon-"] {
|
20 |
+
font-family: yith-icon !important;
|
21 |
+
speak: never;
|
22 |
+
font-style: normal;
|
23 |
+
font-weight: normal;
|
24 |
+
font-variant: normal;
|
25 |
+
text-transform: none;
|
26 |
+
line-height: 1;
|
27 |
+
|
28 |
+
-webkit-font-smoothing: antialiased;
|
29 |
+
-moz-osx-font-smoothing: grayscale;
|
30 |
+
|
31 |
+
width: 1em;
|
32 |
+
height: 1em;
|
33 |
+
font-size: 20px;
|
34 |
+
}
|
35 |
+
|
36 |
+
/* Icons */
|
37 |
+
|
38 |
+
.yith-icon-accounting:before {
|
39 |
+
content: "\e91d";
|
40 |
+
}
|
41 |
+
|
42 |
+
.yith-icon-arrow-down:before {
|
43 |
+
content: "\e900";
|
44 |
+
}
|
45 |
+
|
46 |
+
.yith-icon-arrow-left:before {
|
47 |
+
content: "\e901";
|
48 |
+
}
|
49 |
+
|
50 |
+
.yith-icon-arrow-right:before {
|
51 |
+
content: "\e902";
|
52 |
+
}
|
53 |
+
|
54 |
+
.yith-icon-arrow-up:before {
|
55 |
+
content: "\e903";
|
56 |
+
}
|
57 |
+
|
58 |
+
.yith-icon-bank-check:before {
|
59 |
+
content: "\e91e";
|
60 |
+
}
|
61 |
+
|
62 |
+
.yith-icon-bank:before {
|
63 |
+
content: "\e91c";
|
64 |
+
}
|
65 |
+
|
66 |
+
.yith-icon-calendar-add:before {
|
67 |
+
content: "\e913";
|
68 |
+
}
|
69 |
+
|
70 |
+
.yith-icon-calendar-money:before {
|
71 |
+
content: "\e914";
|
72 |
+
}
|
73 |
+
|
74 |
+
.yith-icon-calendar:before {
|
75 |
+
content: "\e904";
|
76 |
+
}
|
77 |
+
|
78 |
+
.yith-icon-calendar2:before {
|
79 |
+
content: "\e915";
|
80 |
+
}
|
81 |
+
|
82 |
+
.yith-icon-cash:before {
|
83 |
+
content: "\e91f";
|
84 |
+
}
|
85 |
+
|
86 |
+
.yith-icon-check-circle:before {
|
87 |
+
content: "\e921";
|
88 |
+
}
|
89 |
+
|
90 |
+
.yith-icon-check:before {
|
91 |
+
content: "\e905";
|
92 |
+
}
|
93 |
+
|
94 |
+
.yith-icon-close:before {
|
95 |
+
content: "\e906";
|
96 |
+
}
|
97 |
+
|
98 |
+
.yith-icon-copy:before {
|
99 |
+
content: "\f101";
|
100 |
+
}
|
101 |
+
|
102 |
+
.yith-icon-credit-card:before {
|
103 |
+
content: "\e920";
|
104 |
+
}
|
105 |
+
|
106 |
+
.yith-icon-drag:before {
|
107 |
+
content: "\e90f";
|
108 |
+
}
|
109 |
+
|
110 |
+
.yith-icon-edit:before {
|
111 |
+
content: "\e907";
|
112 |
+
}
|
113 |
+
|
114 |
+
.yith-icon-eye-closed:before {
|
115 |
+
content: "\e912";
|
116 |
+
}
|
117 |
+
|
118 |
+
.yith-icon-eye:before {
|
119 |
+
content: "\e911";
|
120 |
+
}
|
121 |
+
|
122 |
+
.yith-icon-info-squared:before {
|
123 |
+
content: "\e922";
|
124 |
+
}
|
125 |
+
|
126 |
+
.yith-icon-info:before {
|
127 |
+
content: "\e90e";
|
128 |
+
}
|
129 |
+
|
130 |
+
.yith-icon-magnifier:before {
|
131 |
+
content: "\e908";
|
132 |
+
}
|
133 |
+
|
134 |
+
.yith-icon-more:before {
|
135 |
+
content: "\f102";
|
136 |
+
}
|
137 |
+
|
138 |
+
.yith-icon-paypal:before {
|
139 |
+
content: "\e91b";
|
140 |
+
}
|
141 |
+
|
142 |
+
.yith-icon-pencil:before {
|
143 |
+
content: "\e909";
|
144 |
+
}
|
145 |
+
|
146 |
+
.yith-icon-people:before {
|
147 |
+
content: "\e916";
|
148 |
+
}
|
149 |
+
|
150 |
+
.yith-icon-plus:before {
|
151 |
+
content: "\e90a";
|
152 |
+
}
|
153 |
+
|
154 |
+
.yith-icon-reply:before {
|
155 |
+
content: "\e91a";
|
156 |
+
}
|
157 |
+
|
158 |
+
.yith-icon-reset:before {
|
159 |
+
content: "\e910";
|
160 |
+
}
|
161 |
+
|
162 |
+
.yith-icon-shield-money:before {
|
163 |
+
content: "\e917";
|
164 |
+
}
|
165 |
+
|
166 |
+
.yith-icon-time-check:before {
|
167 |
+
content: "\e918";
|
168 |
+
}
|
169 |
+
|
170 |
+
.yith-icon-trash:before {
|
171 |
+
content: "\e90d";
|
172 |
+
}
|
173 |
+
|
174 |
+
.yith-icon-update:before {
|
175 |
+
content: "\e90b";
|
176 |
+
}
|
177 |
+
|
178 |
+
.yith-icon-upload:before {
|
179 |
+
content: "\e90c";
|
180 |
+
}
|
181 |
+
|
182 |
+
.yith-icon-warning-triangle:before {
|
183 |
+
content: "\e923";
|
184 |
+
}
|
185 |
+
|
186 |
+
.yith-icon-world-settings:before {
|
187 |
+
content: "\e919";
|
188 |
+
}
|
189 |
+
|
190 |
+
.yith-icon-yith:before {
|
191 |
+
content: "\e924";
|
192 |
+
}
|
193 |
+
|
194 |
+
/** -------------------------------------------
|
195 |
+
* Deprecated icons
|
196 |
+
*/
|
197 |
+
|
198 |
+
/** Deprecated: use yith-icon-paypal instead */
|
199 |
+
.yith-icon-paypal-svgrepo-com:before {
|
200 |
+
content: "\e91b";
|
201 |
+
}
|
202 |
+
|
203 |
+
/** Deprecated: use yith-icon-arrow-down instead */
|
204 |
+
.yith-icon-arrow_down:before {
|
205 |
+
content: "\e900";
|
206 |
+
}
|
207 |
+
|
208 |
+
/** Deprecated: use yith-icon-eye instead */
|
209 |
+
.yith-icon-arrow_eye:before {
|
210 |
+
content: "\e911";
|
211 |
+
}
|
212 |
+
|
213 |
+
/** Deprecated: use yith-icon-eye-closed instead */
|
214 |
+
.yith-icon-arrow_eye_closed:before {
|
215 |
+
content: "\e912";
|
216 |
+
}
|
217 |
+
|
218 |
+
/** Deprecated: use yith-icon-arrow-left instead */
|
219 |
+
.yith-icon-arrow_left:before {
|
220 |
+
content: "\e901";
|
221 |
+
}
|
222 |
+
|
223 |
+
/** Deprecated: use yith-icon-arrow-right instead */
|
224 |
+
.yith-icon-arrow_right:before {
|
225 |
+
content: "\e902";
|
226 |
+
}
|
227 |
+
|
228 |
+
/** Deprecated: use yith-icon-arrow-up instead */
|
229 |
+
.yith-icon-arrow_up:before {
|
230 |
+
content: "\e903";
|
231 |
+
}
|
232 |
+
|
233 |
+
/** Deprecated: use yith-icon-calendar instead */
|
234 |
+
.yith-icon-calendar2:before {
|
235 |
+
content: "\e904";
|
236 |
+
}
|
237 |
+
|
238 |
+
/** Deprecated: use yith-icon-calendar-add instead */
|
239 |
+
.yith-icon-calendar_add:before {
|
240 |
+
content: "\e913";
|
241 |
+
}
|
242 |
+
|
243 |
+
/** Deprecated: use yith-icon-calendar-money instead */
|
244 |
+
.yith-icon-calendar_money:before {
|
245 |
+
content: "\e914";
|
246 |
+
}
|
247 |
+
|
248 |
+
/** Deprecated: use yith-icon-shield-money instead */
|
249 |
+
.yith-icon-shield_money:before {
|
250 |
+
content: "\e917";
|
251 |
+
}
|
252 |
+
|
253 |
+
/** Deprecated: use yith-icon-time-check instead */
|
254 |
+
.yith-icon-time_check:before {
|
255 |
+
content: "\e918";
|
256 |
+
}
|
257 |
+
|
258 |
+
/** Deprecated: use yith-icon-world-settings instead */
|
259 |
+
.yith-icon-world_settings:before {
|
260 |
+
content: "\e919";
|
261 |
+
}
|
262 |
+
|
263 |
+
/** Deprecated: use yith-icon-edit instead */
|
264 |
+
.yith-icon-pencil:before {
|
265 |
+
content: "\e907";
|
266 |
+
}
|
267 |
+
|
268 |
+
/** Deprecated: use yith-icon-reset instead */
|
269 |
+
.yith-icon-update:before {
|
270 |
+
content: "\e910";
|
271 |
+
}
|
plugin-fw/assets/fonts/yith-icon.eot
CHANGED
Binary file
|
plugin-fw/assets/fonts/yith-icon.svg
DELETED
@@ -1,47 +0,0 @@
|
|
1 |
-
<?xml version="1.0" standalone="no"?>
|
2 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
-
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
-
<metadata>Generated by IcoMoon</metadata>
|
5 |
-
<defs>
|
6 |
-
<font id="yith-icon" horiz-adv-x="1024">
|
7 |
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
8 |
-
<missing-glyph horiz-adv-x="1024" />
|
9 |
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
10 |
-
<glyph unicode="" glyph-name="arrow_down" d="M85.333 618.667l426.684-426.65 426.65 426.65-85.35 85.316-341.299-341.299-341.367 341.299z" />
|
11 |
-
<glyph unicode="" glyph-name="arrow_left" d="M767.966 106.684l-341.316 341.367 341.316 341.265-85.35 85.35-426.581-426.615 426.581-426.718z" />
|
12 |
-
<glyph unicode="" glyph-name="arrow_right" d="M341.385 21.333l426.581 426.718-426.581 426.615-85.35-85.35 341.316-341.265-341.316-341.367z" />
|
13 |
-
<glyph unicode="" glyph-name="arrow_up" d="M938.667 277.333l-426.684 426.65-426.65-426.65 85.316-85.316 341.333 341.299 341.333-341.299z" />
|
14 |
-
<glyph unicode="" glyph-name="calendar" d="M263.1 341.385h71.083v-71.083h-71.083v71.083zM369.766 341.385h71.083v-71.083h-71.083v71.083zM476.416 341.385h71.083v-71.083h-71.083v71.083zM583.083 341.385h71.083v-71.083h-71.083v71.083zM369.766 448.034h71.083v-71.083h-71.083v71.083zM476.416 448.034h71.083v-71.083h-71.083v71.083zM583.083 448.034h71.083v-71.083h-71.083v71.083zM263.1 234.718h71.083v-71.083h-71.083v71.083zM369.766 234.718h71.083v-71.083h-71.083v71.083zM476.416 234.718h71.083v-71.083h-71.083v71.083zM583.083 234.718h71.083v-71.083h-71.083v71.083zM689.818 341.385h71.083v-71.083h-71.083v71.083zM689.818 448.034h71.083v-71.083h-71.083v71.083zM903.134 803.584h-142.234v71.083h-71.083v-71.083h-355.55v71.083h-71.083v-71.083h-142.319v-782.251h782.251v782.251zM263.1 732.501v-71.083h71.083v71.083h355.55v-71.083h71.083v71.083h71.083v-142.234h-640.017v142.234h71.219zM191.949 92.484v426.701h640.017v-426.701h-640.017z" />
|
15 |
-
<glyph unicode="" glyph-name="check" d="M938.667 734.191l-56.371 56.371-566.391-566.391-168.875 207.258-61.696-50.295 224.58-275.695z" />
|
16 |
-
<glyph unicode="" glyph-name="close" d="M158.857 21.333l353.143 353.143 353.143-353.143 73.523 73.523-353.143 353.143 353.143 353.143-73.523 73.523-353.143-353.143-353.143 353.143-73.523-73.523 353.143-353.143-353.143-353.143z" />
|
17 |
-
<glyph unicode="" glyph-name="edit" d="M868.847 357.239l-517.427 517.427-193.178-193.178 517.427-517.427h193.178v193.178zM705.178 235.435l92.297 92.297v-92.297h-92.297zM654.729 285.884l-306.398 306.398 92.297 92.297 306.398-306.398-92.297-92.297zM351.42 773.786l38.775-38.775-92.297-92.297-38.775 38.775 92.297 92.297zM155.153 92.706h713.677v-71.373h-713.677v71.373z" />
|
18 |
-
<glyph unicode="" glyph-name="magnifier" d="M694.528 570.095c0 167.953-136.619 304.572-304.572 304.572s-304.589-136.619-304.589-304.572 136.619-304.572 304.572-304.572c70.229 0 134.895 24.115 186.419 64.239l26.18-26.18-38.076-38.076 244.19-244.173 129.963 129.963-244.173 244.19-38.076-38.076-26.18 26.18c40.124 51.695 64.341 116.258 64.341 186.505zM830.976 151.296l-22.323-22.323-136.533 136.533 22.323 22.323 136.533-136.533zM389.956 341.658c-125.952 0-228.437 102.485-228.437 228.437s102.485 228.42 228.437 228.42 228.437-102.485 228.437-228.437c-0.017-125.935-102.502-228.42-228.437-228.42z" />
|
19 |
-
<glyph unicode="" glyph-name="pencil" d="M669.542 874.701l-584.209-584.192 2.628-266.581 266.496-2.628 584.209 584.192-269.124 269.21zM831.010 605.577l-25.515-25.515-161.485 161.553 25.532 25.532 161.468-161.57zM323.277 97.758l-159.915 1.553-1.553 160 428.39 428.476 53.828-53.914-412.894-412.791 53.828-53.828 412.877 412.809 53.828-53.828-428.39-428.476z" />
|
20 |
-
<glyph unicode="" glyph-name="plus" d="M475.409 21.333h78.029v385.229h385.229v78.029h-385.229v390.076h-78.029v-390.076h-390.076v-78.029h390.076z" />
|
21 |
-
<glyph unicode="" glyph-name="update" d="M188.075 400.162c23.313-158.703 159.932-281.139 325.035-281.139 118.903 0 228.949 64.495 287.13 168.38l-63.761 35.703c-45.295-80.828-130.884-131.055-223.369-131.055-120.798 0-222.14 84.275-248.73 197.018l40.209-40.124 51.695 51.695-135.475 135.475-135.475-135.458 51.695-51.695 51.046 51.2zM513.109 703.863c121.941 0 224.017-85.828 249.549-200.141l-43.247 43.247-51.695-51.695 135.475-135.475 135.475 135.475-51.695 51.695-49.152-49.152c-24.132 157.713-160.341 279.159-324.71 279.159-117.009 0-226.236-62.942-284.911-164.369l63.266-36.591c45.705 78.78 130.56 127.846 221.645 127.846z" />
|
22 |
-
<glyph unicode="" glyph-name="upload" d="M937.728 139.315v619.247c0 64-52.105 116.105-116.105 116.105h-619.247c-64 0-116.105-52.105-116.105-116.105v-619.247c0-64 52.105-116.105 116.105-116.105h190.276v77.38h-190.276c-21.333 0-38.724 17.306-38.724 38.724v619.247c0 21.333 17.306 38.724 38.724 38.724h619.247c21.333 0 38.724-17.306 38.724-38.724v-619.247c0-21.333-17.391-38.724-38.724-38.724h-193.485v-77.38h193.485c64 0.017 116.105 52.105 116.105 116.105zM550.69 21.333v412.553l88.61-89.515 54.972 54.391-180.429 182.323-183.876-181.982 54.409-55.057 88.934 87.945v-410.658z" />
|
23 |
-
<glyph unicode="" glyph-name="trash" d="M734.591 132.655c0-20.48-16.696-37.101-37.101-37.101h-371.014c-20.406 0-37.101 16.621-37.101 37.101v519.42h-74.203v-519.42c0-61.403 50.087-111.304 111.304-111.304h371.014c61.217 0 111.304 49.901 111.304 111.304v519.42h-74.203v-519.42zM400.679 800.48h222.608v-37.101h-222.608v37.101zM697.49 800.48c0 40.923-33.391 74.203-74.203 74.203h-222.608c-40.812 0-74.203-33.28-74.203-74.203v-37.101h-185.507v-74.203h742.028v74.203h-185.507v37.101zM474.882 614.973h74.203v-445.217h-74.203v445.217zM363.577 614.973h74.203v-445.217h-74.203v445.217zM586.186 614.973h74.203v-445.217h-74.203v445.217z" />
|
24 |
-
<glyph unicode="" glyph-name="info" d="M511.957 92.471c-196.017 0-355.555 159.466-355.555 355.555 0 196.053 159.538 355.555 355.555 355.555 196.053 0 355.555-159.502 355.555-355.555 0-196.089-159.502-355.555-355.555-355.555zM511.957 874.692c-235.271 0-426.666-191.431-426.666-426.666 0-235.271 191.395-426.666 426.666-426.666 235.306 0 426.666 191.395 426.666 426.666 0 235.235-191.36 426.666-426.666 426.666zM476.402 270.248v177.777h35.555v-177.777h-35.555zM583.068 448.026v71.111h-213.333v-71.111h35.555v-248.888h213.333v71.111h-35.555v177.777zM494.179 661.359c9.813 0 17.778-8 17.778-17.778 0-9.813-7.964-17.778-17.778-17.778-9.778 0-17.778 7.964-17.778 17.778 0 9.778 8 17.778 17.778 17.778zM494.179 554.692c49.031 0 88.889 39.858 88.889 88.889 0 48.995-39.858 88.889-88.889 88.889-48.995 0-88.889-39.893-88.889-88.889 0-49.031 39.893-88.889 88.889-88.889z" />
|
25 |
-
<glyph unicode="" glyph-name="drag" d="M241.835 409.259h232.277v-232.277h-116.053l156.501-154.795 156.501 154.795h-119.467v232.277h233.813v-116.224l154.965 156.672-154.965 156.501v-119.467h-233.813v232.277h119.467l-156.501 154.795-156.501-154.795h116.053v-232.277h-232.277v119.467l-154.795-156.501 154.795-156.672z" />
|
26 |
-
<glyph unicode="" glyph-name="reset" d="M188.928 400.384c23.211-158.379 159.573-280.405 324.267-280.405 118.613 0 228.352 64.341 286.379 167.936l-63.488 35.499c-45.227-80.555-130.56-130.731-222.891-130.731-120.491 0-221.525 84.139-248.149 196.608l40.107-40.107 51.541 51.541-135.168 135.168-135.168-135.168 51.541-51.541 51.029 51.2zM513.195 703.317c121.685 0 223.573-85.675 249.003-199.68l-43.179 43.179-51.541-51.541 135.168-135.168 135.168 135.168-51.541 51.541-48.981-48.981c-24.064 157.355-159.915 278.528-323.925 278.528-116.736 0-225.621-62.805-284.16-164.011l63.147-36.523c45.227 78.507 129.877 127.488 220.843 127.488z" />
|
27 |
-
<glyph unicode="" glyph-name="arrow_eye" d="M512 184.32c147.797 0 288.939 82.603 408.235 238.933l17.408 22.869-17.408 22.869c-119.296 156.501-260.437 239.104-408.235 239.104s-289.109-82.603-408.235-239.104l-17.408-22.869 17.408-22.869c119.125-156.331 260.437-238.933 408.235-238.933zM512 632.661c116.395 0 230.059-64.341 330.411-186.539-100.352-122.027-214.187-186.368-330.411-186.368-116.395 0-230.059 64.341-330.411 186.539 100.181 122.027 214.016 186.368 330.411 186.368zM510.293 293.717c83.115 0 150.699 67.584 150.699 150.699s-67.584 150.699-150.699 150.699c-83.115 0-150.699-67.584-150.699-150.699s67.584-150.699 150.699-150.699zM510.293 519.68c41.472 0 75.264-33.792 75.264-75.264s-33.792-75.264-75.264-75.264c-41.472 0-75.264 33.792-75.264 75.264-0.171 41.472 33.621 75.264 75.264 75.264z" />
|
28 |
-
<glyph unicode="" glyph-name="arrow_eye_closed" d="M920.235 468.992c-119.296 156.501-260.437 239.104-408.235 239.104-57.296 0-113.616-12.423-168.047-36.743l70.881-53.755c32.024 9.991 64.493 15.065 97.166 15.065 116.395 0 230.059-64.341 330.411-186.54-27.682-33.661-56.393-62.906-85.893-87.648l61.426-46.583c35.519 31.508 69.722 68.681 102.292 111.363l17.408 22.868-17.41 22.869zM510.293 595.115c-18.676 0-36.564-3.422-53.081-9.656l203.208-154.107c0.37 4.306 0.572 8.661 0.572 13.063 0 83.116-67.584 150.7-150.699 150.7zM873.18 226.28l-713.387 541.013c-21.289 16.145-51.633 11.974-67.779-9.315s-11.976-51.633 9.315-67.779l123.489-93.652c-42.291-34.717-82.818-77.322-121.054-127.556l-17.408-22.869 17.408-22.869c119.125-156.332 260.437-238.933 408.235-238.933 65.911 0 130.495 16.445 192.411 48.517l110.302-83.651c8.743-6.63 19.011-9.834 29.196-9.834 14.619 0 29.068 6.6 38.583 19.147 16.147 21.291 11.977 51.635-9.312 67.78zM523.187 370.273c-4.192-0.73-8.497-1.121-12.894-1.121-38.915 0-71.067 29.756-74.882 67.688l87.776-66.567zM512 259.755c-116.395 0-230.059 64.34-330.411 186.539 33.684 41.028 68.92 75.481 105.271 103.204l79.536-60.319c-4.41-14.148-6.799-29.181-6.799-44.764 0-83.113 67.584-150.699 150.699-150.699 30.172 0 58.289 8.917 81.877 24.241l44.037-33.396c-40.75-16.406-82.321-24.806-124.209-24.806z" />
|
29 |
-
<glyph unicode="" glyph-name="calendar_add" d="M547.499 483.499h-70.997v-106.496h-106.325v-70.827h106.325v-106.496h70.997v106.496h106.325v70.827h-106.325zM902.315 802.816h-141.824v70.827h-70.997v-70.997h-354.816v70.997h-70.997v-70.997h-141.995v-780.459h780.459v780.629zM263.68 731.819v-70.997h70.997v70.997h354.816v-70.997h70.997v70.997h70.997v-106.496h-638.805v106.496h70.997zM192.683 93.184v461.312h638.635v-461.141h-638.635z" />
|
30 |
-
<glyph unicode="" glyph-name="calendar_money" d="M474.965 133.291h74.069v37.035c40.96 0 74.069 33.109 74.069 74.069v37.035c0 40.96-33.109 74.069-74.069 74.069h-74.069v37.035h148.139v74.069h-74.069v37.035h-74.069v-37.035c-40.96 0-74.069-33.109-74.069-74.069v-37.035c0-40.96 33.109-74.069 74.069-74.069h74.069v-37.035h-148.139v-74.069h74.069v-37.035zM252.928 873.643v-222.037h73.899v74.069h333.312v74.069h-333.312v73.899zM919.211 540.501v259.243h-148.139v73.899h-74.069v-222.037h74.069v74.069h74.069v-111.104h-666.283v111.104h37.035v74.069h-111.104v-777.387h814.421v518.144zM845.141 96.256h-666.283v444.245h666.283v-444.245z" />
|
31 |
-
<glyph unicode="" glyph-name="calendar2" d="M937.643 796.331h-154.795v77.312h-77.312v-232.107h77.312v77.312h77.483v-619.179h-696.661v619.179h38.741v77.483h-116.053v-773.973h851.285zM318.464 873.643h-77.312v-232.107h77.312v77.312h348.331v77.483h-348.331zM395.947 564.053h77.483v-77.483h-77.483v77.483zM550.741 564.053h77.483v-77.483h-77.483v77.483zM705.536 564.053h77.483v-77.483h-77.483v77.483zM241.152 409.259h77.483v-77.483h-77.483v77.483zM395.947 409.259h77.483v-77.483h-77.483v77.483zM550.741 409.259h77.483v-77.483h-77.483v77.483zM705.536 409.259h77.483v-77.483h-77.483v77.483zM241.152 254.464h77.483v-77.483h-77.483v77.483zM395.947 254.464h77.483v-77.483h-77.483v77.483zM550.741 254.464h77.483v-77.483h-77.483v77.483zM705.536 254.464h77.483v-77.483h-77.483v77.483z" />
|
32 |
-
<glyph unicode="" glyph-name="people" d="M263.68 696.32c0-39.211-31.787-70.997-70.997-70.997s-70.997 31.787-70.997 70.997c0 39.211 31.787 70.997 70.997 70.997s70.997-31.787 70.997-70.997zM121.685 128.683h70.997v212.821h35.499v-212.821h70.997v390.315h70.997v70.997h-212.992c-39.253 0-70.997-31.744-70.997-70.997v-177.323h35.499v-212.992zM902.315 696.32c0-39.211-31.787-70.997-70.997-70.997s-70.997 31.787-70.997 70.997c0 39.211 31.787 70.997 70.997 70.997s70.997-31.787 70.997-70.997zM866.816 589.824h-212.992v-70.997h70.997v-390.315h70.997v212.992h35.499v-212.821h70.997v212.821h35.499v177.493c-0.171 39.083-31.915 70.827-70.997 70.827zM582.997 696.32c0-39.211-31.787-70.997-70.997-70.997s-70.997 31.787-70.997 70.997c0 39.211 31.787 70.997 70.997 70.997s70.997-31.787 70.997-70.997zM405.504 518.997v-141.824h35.499v-248.32h141.824v248.149h35.499v141.824c0 39.253-31.744 70.997-70.997 70.997h-70.997c-38.912 0-70.827-31.744-70.827-70.827z" />
|
33 |
-
<glyph unicode="" glyph-name="shield_money" d="M146.091 837.12v-530.261l365.909-284.501 365.909 284.672v530.091h-219.477v-73.216h-36.523v109.739h-219.648v-109.739h-36.523v73.216h-219.648zM475.477 690.859v109.739h73.216v-109.739h182.955v73.216h73.216v-421.205l-292.864-227.669-292.693 227.669v421.035h73.216v-73.216h182.955zM548.523 324.949h-73.216c-20.139 0-36.523 16.384-36.523 36.523h-73.216c0-60.587 49.152-109.739 109.739-109.739v-36.523h73.216v36.523c60.587 0 109.739 49.152 109.739 109.739s-49.152 109.739-109.739 109.739h-73.216c-20.139 0-36.523 16.384-36.523 36.523s16.384 36.523 36.523 36.523h73.216c20.139 0 36.523-16.384 36.523-36.523h73.216c0 60.587-49.152 109.739-109.739 109.739v36.523h-73.216v-36.523c-60.587 0-109.739-49.152-109.739-109.739s49.152-109.739 109.739-109.739h73.216c20.139 0 36.523-16.384 36.523-36.523s-16.213-36.523-36.523-36.523z" />
|
34 |
-
<glyph unicode="" glyph-name="time_check" d="M86.528 448.341c-0.341-235.008 189.952-425.643 424.96-425.984s425.643 189.952 425.984 424.96c0.171 83.968-24.576 166.059-71.168 236.032l-60.075-63.488c22.528-39.765 37.035-83.627 42.325-129.195h-80.384v-84.651h80.384c-19.627-154.795-141.483-276.651-296.277-296.277v84.651h-84.651v-84.651c-154.795 19.456-276.821 141.483-296.277 296.277h84.651v84.651h-84.651c18.432 155.307 140.971 277.845 296.277 296.277v-82.603h84.651v81.749c46.251-5.803 90.795-21.163 130.731-44.885l61.44 61.44c-68.779 46.080-149.675 70.827-232.448 71.168-234.837-0.341-425.301-190.635-425.472-425.472zM414.549 605.355l-59.563-59.733 157.013-157.013 410.624 410.965-59.733 59.733-350.891-350.891z" />
|
35 |
-
<glyph unicode="" glyph-name="world_settings" d="M833.707 597.333l48.981 81.92-139.435 139.435-81.92-48.981c-8.875 4.267-18.091 7.851-27.648 11.435l-23.040 92.672h-98.645c-235.179-0.171-425.643-190.635-425.643-425.813s190.464-425.643 425.643-425.643h98.645l23.040 92.672c9.557 3.584 18.773 7.168 27.648 11.435l81.92-48.981 139.435 139.435-48.981 81.92c3.925 8.875 7.851 18.091 11.435 27.648l92.672 23.040v197.12l-92.672 23.040c-3.584 9.557-7.168 20.139-11.435 27.648zM319.659 448c0.171 35.669 3.243 71.339 9.216 106.496h147.627v-212.821h-147.627c-5.973 34.987-9.045 70.656-9.216 106.325zM476.501 795.989v-170.667h-129.877c28.16 86.699 75.264 150.869 129.877 170.667zM476.501 270.677v-171.008c-54.613 19.797-101.888 84.139-129.877 171.008h129.877zM547.499 547.669c55.125-20.309 83.456-81.579 63.147-136.704-10.752-29.184-33.792-52.224-63.147-63.147v199.851zM323.925 748.203c-22.869-38.4-40.277-79.701-51.712-122.709h-67.072c29.013 49.835 69.803 91.989 118.784 122.709zM173.568 554.496h83.797c-11.435-70.485-11.435-142.336 0-212.821h-83.797c-21.845 69.12-21.845 143.531 0 212.821zM205.141 270.677h67.072c11.435-43.179 29.013-84.651 51.712-123.051-48.981 30.72-89.771 73.045-118.784 123.051zM866.816 404.651l-77.312-19.456-5.632-19.115c-5.632-18.091-12.8-35.669-21.675-52.565l-9.557-17.749 40.789-68.096-61.099-61.44-68.437 41.301-17.749-9.557c-16.725-8.875-34.133-16.043-52.224-21.675l-19.456-5.632-19.115-77.312h-7.851v180.907c96.085 19.456 158.037 113.152 138.581 209.067-14.165 69.803-68.779 124.416-138.581 138.581v180.907h7.851l19.115-77.312 19.456-5.632c18.091-5.973 35.669-13.824 52.224-23.381l17.749-9.557 68.437 40.789 61.099-61.099-40.96-66.731 9.557-17.749c8.875-16.555 16.213-34.133 21.675-52.224l5.632-19.456 77.312-19.115 0.171-86.699z" />
|
36 |
-
<glyph unicode="" glyph-name="reply" d="M426 554.667q208-30 321-159t149-311q-154 218-470 218v-174l-298 298 298 298v-170z" />
|
37 |
-
<glyph unicode="" glyph-name="paypal-svgrepo-com" d="M948.695 781.407c41.592-76.275 27.867-166.22 11.486-219.376-88.641-289.544-488.607-273.795-546.47-273.795-57.795 0-71.254-53.893-71.254-53.893l-43.213-188.526c-11.779-66.175-71.793-62.877-71.793-62.877s-78.009 0-130.188 0c-3.273 0-6.328 0.225-9.134 0.631-0.645-12.117 1.079-47.541 44.401-47.541 52.139 0 130.147 0 130.147 0s60.013-3.366 71.834 62.806l43.165 188.519c0 0 13.507 53.897 71.301 53.897 57.767 0 457.829-15.746 546.514 273.808 19.787 64.717 35.874 183.635-46.797 266.347zM259.046 86.911l43.206 188.533c0 0 13.421 53.801 71.301 53.801 57.747 0 457.781-15.664 546.429 273.819 32.437 105.838 54.958 356.92-348.956 356.92h-291.749c0 0-60.641 2.816-75.606-61.659l-190.628-822.715c0 0-8.185-51.555 43.974-51.555 52.207 0 130.233 0 130.233 0s60.013-3.393 71.796 62.857zM369 565.482l38.741 167.179c0 0 12.339 45.462 52.207 52.193 39.827 6.755 107.667-1.201 125.12-4.495 113.299-21.279 89.201-128.478 89.201-128.478-22.433-165.476-280.007-142.514-280.007-142.514-40.383 14.602-25.262 56.115-25.262 56.115z" />
|
38 |
-
<glyph unicode="" glyph-name="bank" d="M511.488 599.723c-8.875 0-16.213 7.168-16.213 16.213 0 4.608-3.755 8.363-8.363 8.363s-8.363-3.755-8.363-8.363c0-15.189 10.411-27.989 24.576-31.744v-6.315c0-4.608 3.755-8.363 8.363-8.363s8.363 3.755 8.363 8.363v6.315c14.165 3.755 24.576 16.384 24.576 31.744 0 18.091-14.848 32.939-32.939 32.939-8.875 0-16.213 7.168-16.213 16.213 0 8.875 7.168 16.213 16.213 16.213 8.533 0 15.531-6.656 16.213-15.019 0.341-4.608 4.437-8.021 8.875-7.851 4.608 0.341 8.192 4.267 7.851 8.875-1.024 14.336-11.093 25.941-24.576 29.525v6.315c0 4.608-3.755 8.363-8.363 8.363s-8.363-3.755-8.363-8.363v-6.315c-13.995-3.755-24.576-16.555-24.576-31.744 0-18.091 14.848-32.939 32.939-32.939 8.875 0 16.213-7.168 16.213-16.213s-7.339-16.213-16.213-16.213zM862.72 508.587c0 0.512-0.171 1.195-0.341 1.707s-0.171 1.024-0.341 1.365c-0.171 0.512-0.512 0.853-0.853 1.195-0.341 0.512-0.683 1.024-1.024 1.365-0.171 0.171-0.171 0.171-0.171 0.341l-342.699 283.648c-3.072 2.56-7.68 2.56-10.752 0l-342.187-283.477c-0.171-0.171-0.171-0.171-0.171-0.341-0.512-0.341-0.683-0.853-1.024-1.365-0.341-0.341-0.683-0.853-0.853-1.195-0.171-0.512-0.341-1.024-0.341-1.365-0.171-0.512-0.341-1.195-0.341-1.707 0-0.171 0-0.171 0-0.341v-66.56c0-4.608 3.755-8.363 8.363-8.363h85.504v-258.048h-85.845c-4.608 0-8.363-3.755-8.363-8.363v-55.467c0-1.365 0.341-2.56 0.853-3.584-0.512-1.024-0.853-2.219-0.853-3.584 0-4.608 3.755-8.363 8.363-8.363h678.571c4.608 0 8.363 3.755 8.363 8.363v62.635c0 4.608-3.755 8.363-8.363 8.363h-79.872v257.877h86.016c4.608 0 8.363 3.755 8.363 8.363v66.56c0 0.171 0 0.171 0 0.341zM178.005 450.048v49.835h667.989v-49.835h-667.989zM839.851 158.549v-45.909h-661.845v45.909h661.845zM482.816 175.275v258.048h62.123v-258.048h-62.123zM512 780.971l319.147-264.363h-638.293l319.147 264.363zM271.872 433.323h194.048v-258.048h-115.029v228.352c0 4.608-3.755 8.363-8.363 8.363s-8.363-3.755-8.363-8.363v-228.352h-62.123v258.048zM751.616 175.275h-189.952v258.048h110.933v-227.499c0-4.608 3.755-8.363 8.363-8.363s8.363 3.755 8.363 8.363v227.499h62.123v-258.048z" />
|
39 |
-
<glyph unicode="" glyph-name="accounting" d="M862.72 432.128c0 0.512-0.171 1.024-0.341 1.536s-0.171 0.853-0.512 1.365c-0.171 0.341-0.512 0.853-0.853 1.195s-0.683 0.853-1.024 1.195c-0.171 0.171-0.171 0.171-0.341 0.341l-30.891 23.893c-2.56 2.048-6.315 2.219-9.045 0.341l-31.061-21.163-33.792 21.163c0 0 0 0 0 0h-0.171c-0.171 0.171-0.512 0.171-0.853 0.341-0.683 0.341-1.195 0.683-2.048 0.683-0.512 0-1.024 0-1.365 0-0.512 0-1.024 0-1.536 0-0.683-0.171-1.365-0.512-1.877-0.853-0.171-0.171-0.512-0.171-0.683-0.341v0c0 0 0 0 0 0l-5.973-4.096-29.184-19.797c-3.413-2.389-4.437-7.168-2.048-10.581 1.536-2.219 3.925-3.413 6.315-3.413 1.536 0 2.901 0.512 4.267 1.365l31.232 21.163 33.963-21.333c2.56-1.707 5.803-1.536 8.363 0.171l30.549 20.821 23.552-18.261v-152.747c0-43.861-35.669-79.701-79.701-79.701-43.861 0-79.701 35.669-79.701 79.701v407.723c0 47.957-35.84 87.723-82.261 94.037-1.024 0.512-2.219 1.024-3.584 1.024h-297.813c-52.395 0-94.891-42.667-94.891-94.891v-27.819h-13.995c-18.773 0-33.963-15.189-33.963-33.963v-468.821c0-18.773 15.189-33.963 33.963-33.963h341.504c18.773 0 33.963 15.189 33.963 33.963v468.651c0 18.773-15.189 33.963-33.963 33.963h-13.995v27.819c0 42.325 33.28 76.971 75.093 79.36 41.813-2.389 75.093-37.035 75.093-79.36v-407.723c0-33.28 17.408-62.635 43.52-79.701h-114.517c-4.267 0-7.68-3.413-7.68-7.68s3.413-7.68 7.68-7.68h166.059c52.395 0 94.891 42.667 94.891 94.891v156.501c-0.341 0.341-0.341 0.512-0.341 0.683zM507.563 682.837v-81.749c0-4.267 3.413-7.68 7.68-7.68s7.68 3.413 7.68 7.68v38.571h13.995c10.411 0 18.773-8.363 18.773-18.773v-468.821c0-10.24-8.363-18.773-18.773-18.773h-341.675c-10.24 0-18.773 8.363-18.773 18.773v468.992c0 10.24 8.363 18.773 18.773 18.773h13.995v-38.571c0-4.267 3.413-7.68 7.68-7.68h248.832c4.267 0 7.68 3.413 7.68 7.68s-3.413 7.68-7.68 7.68h-241.152v74.069c0 43.861 35.669 79.701 79.701 79.701h246.784c-26.283-17.237-43.52-46.421-43.52-79.872zM209.237 558.251v-85.333c0-4.267 3.413-7.68 7.68-7.68h298.155c4.267 0 7.68 3.413 7.68 7.68v85.333c0 4.267-3.413 7.68-7.68 7.68h-298.155c-4.096 0-7.68-3.413-7.68-7.68zM224.597 550.571h282.965v-70.144h-282.965v70.144zM290.304 416.597h-73.387c-4.267 0-7.68-3.413-7.68-7.68s3.413-7.68 7.68-7.68h73.387c4.267 0 7.68 3.413 7.68 7.68s-3.413 7.68-7.68 7.68zM402.773 416.597h-73.387c-4.267 0-7.68-3.413-7.68-7.68s3.413-7.68 7.68-7.68h73.387c4.267 0 7.68 3.413 7.68 7.68s-3.413 7.68-7.68 7.68zM515.243 416.597h-73.387c-4.267 0-7.68-3.413-7.68-7.68s3.413-7.68 7.68-7.68h73.387c4.267 0 7.68 3.413 7.68 7.68-0.171 4.267-3.584 7.68-7.68 7.68zM290.304 334.507h-73.387c-4.267 0-7.68-3.413-7.68-7.68s3.413-7.68 7.68-7.68h73.387c4.267 0 7.68 3.413 7.68 7.68s-3.413 7.68-7.68 7.68zM402.773 334.507h-73.387c-4.267 0-7.68-3.413-7.68-7.68s3.413-7.68 7.68-7.68h73.387c4.267 0 7.68 3.413 7.68 7.68s-3.413 7.68-7.68 7.68zM515.243 334.507h-73.387c-4.267 0-7.68-3.413-7.68-7.68s3.413-7.68 7.68-7.68h73.387c4.267 0 7.68 3.413 7.68 7.68s-3.584 7.68-7.68 7.68zM290.304 252.245h-73.387c-4.267 0-7.68-3.413-7.68-7.68s3.413-7.68 7.68-7.68h73.387c4.267 0 7.68 3.413 7.68 7.68s-3.413 7.68-7.68 7.68zM402.773 252.245h-73.387c-4.267 0-7.68-3.413-7.68-7.68s3.413-7.68 7.68-7.68h73.387c4.267 0 7.68 3.413 7.68 7.68s-3.413 7.68-7.68 7.68zM515.243 252.245h-73.387c-4.267 0-7.68-3.413-7.68-7.68s3.413-7.68 7.68-7.68h73.387c4.267 0 7.68 3.413 7.68 7.68-0.171 4.267-3.584 7.68-7.68 7.68z" />
|
40 |
-
<glyph unicode="" glyph-name="bank-check" d="M862.72 645.803c-0.171 1.877-1.195 3.755-2.731 4.949l-96.768 75.776c-3.243 2.56-7.851 1.877-10.411-1.195l-274.091-349.184c-0.853-1.024-1.365-2.389-1.536-3.584l-14.677-118.955c-0.341-2.56 0.683-5.12 2.731-6.656 1.365-1.024 2.901-1.536 4.608-1.536 0.853 0 1.707 0.171 2.731 0.512l111.445 43.008c1.195 0.512 2.389 1.195 3.072 2.389l153.259 195.243v-303.957h-564.395l0.512 337.408 347.989-1.536c0 0 0 0 0 0 4.096 0 7.339 3.243 7.339 7.339s-3.243 7.339-7.339 7.339l-355.328 1.536c-2.219-0.341-3.755-0.683-5.291-2.219-1.365-1.365-2.219-3.243-2.219-5.291l-0.512-351.915c0-3.584 2.56-6.315 5.973-6.997 0.853-0.341 1.877-0.683 2.901-0.683h577.707c4.096 0 7.339 3.243 7.339 7.339v330.24l106.155 135.168c1.195 1.536 1.707 3.584 1.536 5.461zM587.776 315.904l-56.491 44.203c-3.243 2.56-7.851 1.877-10.411-1.195-2.56-3.243-1.877-7.851 1.195-10.411l56.491-44.203-1.877-2.389-98.133-37.888 12.971 104.619 222.208 283.136 61.099-47.957c1.365-1.024 2.901-1.536 4.608-1.536 2.219 0 4.267 1.024 5.803 2.901 2.56 3.243 1.877 7.851-1.195 10.411l-61.099 47.787 37.035 47.104 85.163-66.731-257.365-327.851zM466.261 443.051c0 4.096-3.243 7.339-7.339 7.339h-206.507c-4.096 0-7.339-3.243-7.339-7.339s3.243-7.339 7.339-7.339h206.507c3.925 0 7.339 3.243 7.339 7.339zM395.605 351.403c0 4.096-3.243 7.339-7.339 7.339h-136.021c-4.096 0-7.339-3.243-7.339-7.339s3.243-7.339 7.339-7.339h136.021c4.096 0 7.339 3.243 7.339 7.339zM252.245 267.264c-4.096 0-7.339-3.243-7.339-7.339s3.243-7.339 7.339-7.339h81.92c4.096 0 7.339 3.243 7.339 7.339s-3.243 7.339-7.339 7.339h-81.92z" />
|
41 |
-
<glyph unicode="" glyph-name="cash" d="M387.072 268.629c1.024-0.853 2.389-1.195 3.755-1.195 0.853 0 1.707 0.171 2.56 0.512l138.752 59.733c3.243 1.365 4.779 5.291 3.413 8.533s-5.291 4.779-8.533 3.413l-135.339-58.368-218.795 151.552c-2.901 2.048-6.997 1.365-9.045-1.707-2.048-2.901-1.365-6.997 1.707-9.045l221.525-153.429zM852.48 474.453l-131.584-55.125c-3.243-1.365-4.949-5.12-3.413-8.533 1.024-2.56 3.413-3.925 5.973-3.925 0.853 0 1.707 0.171 2.56 0.512l131.584 55.125c3.243 1.365 4.949 5.12 3.413 8.533-1.365 3.243-5.291 4.779-8.533 3.413zM851.285 425.643l-153.771-64.341 2.219 83.285 0.683 0.341c0.341 0.171 0.512 0.171 0.853 0.341l157.696 66.048c2.219 0.853 3.755 2.901 3.925 5.291s-0.853 4.608-2.731 5.973l-221.696 153.6c-1.877 1.195-4.096 1.536-6.144 0.683l-464.213-194.389c-0.171 0-0.341-0.171-0.512-0.341-0.341-0.171-0.683-0.512-1.024-0.683-0.341-0.341-0.683-0.512-1.024-0.853-0.171-0.171-0.341-0.171-0.341-0.341-0.171-0.171-0.171-0.341-0.341-0.683s-0.341-0.853-0.512-1.195c-0.171-0.341-0.171-0.853-0.171-1.195s0-0.853 0-1.195c0-0.512 0.171-0.853 0.341-1.365 0-0.171 0-0.512 0.171-0.683 0-0.171 0.171-0.341 0.341-0.512 0.171-0.341 0.512-0.683 0.683-1.024 0.341-0.341 0.512-0.683 0.853-1.024 0.171-0.171 0.171-0.341 0.341-0.341l221.696-153.6c0 0 0 0 0 0 0.341-0.341 0.853-0.512 1.195-0.683 0.171 0 0.341-0.171 0.512-0.171 0.512-0.171 1.024-0.171 1.365-0.171 0.171 0 0.341 0 0.341 0v0c0 0 0 0 0 0 0.853 0 1.707 0.171 2.56 0.512l158.379 66.389-2.219-83.285-160.427-67.243-218.795 151.723c-2.901 2.048-6.997 1.365-9.045-1.707-2.048-2.901-1.365-6.997 1.707-9.045l221.696-153.6c1.195-0.853 2.389-1.195 3.755-1.195 0.853 0 1.707 0.171 2.56 0.512l464.213 194.389c3.243 1.365 4.949 5.12 3.413 8.533-1.536 3.072-5.291 4.608-8.533 3.243zM633.685 663.381l209.067-144.896-144.213-60.416-209.067 144.896 144.213 60.416zM392.704 330.069l-209.067 144.896 155.819 65.195 209.067-144.896-155.819-65.195zM566.101 395.264c0 0.171-0.171 0.341-0.171 0.683 0 0.512-0.171 0.853-0.171 1.365-0.171 0.341-0.171 0.853-0.512 1.195-0.171 0.341-0.341 0.683-0.683 1.024s-0.512 0.683-0.853 1.024c-0.171 0.171-0.341 0.341-0.512 0.512l-209.749 145.408 121.515 50.859 211.456-146.603-2.389-94.891-120.32-50.347 2.389 89.771zM391.168 437.76c-1.877 4.779-7.339 7.168-12.117 5.291s-7.168-7.339-5.291-12.117c1.877-4.779 7.339-7.168 12.117-5.291s7.168 7.339 5.291 12.117zM674.133 551.083c4.779 1.877 7.168 7.339 5.291 12.117s-7.339 7.168-12.117 5.291c-4.779-1.877-7.168-7.339-5.291-12.117 1.877-4.949 7.339-7.168 12.117-5.291z" />
|
42 |
-
<glyph unicode="" glyph-name="credit-card" d="M813.909 620.544h-645.12c-4.096 0-7.509-3.413-7.509-7.509v-376.832c0-4.096 3.413-7.509 7.509-7.509h645.12c4.096 0 7.509 3.413 7.509 7.509v376.832c0 4.096-3.243 7.509-7.509 7.509zM806.4 243.712h-630.101v361.813h630.101v-361.813zM717.141 378.197c-10.24 0-19.627-3.243-27.477-8.533-8.021 5.461-17.408 8.533-27.307 8.533-26.795 0-48.811-21.845-48.811-48.811s21.845-48.811 48.811-48.811c9.899 0 19.285 3.072 27.307 8.533 7.851-5.461 17.237-8.533 27.477-8.533 26.795 0 48.811 21.845 48.811 48.811s-22.016 48.811-48.811 48.811zM628.736 329.557c0 18.603 15.019 33.621 33.621 33.621 5.803 0 11.264-1.536 16.213-4.267-6.315-8.192-10.069-18.261-10.069-29.355s3.925-21.163 10.069-29.355c-4.949-2.731-10.411-4.267-16.213-4.267-18.603 0-33.621 15.019-33.621 33.621zM717.141 295.936c-18.603 0-33.621 15.019-33.621 33.621s15.019 33.621 33.621 33.621c18.603 0 33.621-15.019 33.621-33.621s-15.019-33.621-33.621-33.621zM224.427 472.064h117.589c4.096 0 7.509 3.413 7.509 7.509v80.555c0 4.096-3.413 7.509-7.509 7.509h-117.589c-4.096 0-7.509-3.413-7.509-7.509v-80.555c0-4.096 3.243-7.509 7.509-7.509zM231.936 552.619h102.571v-65.365h-102.571v65.365zM224.427 417.109h533.845c4.096 0 7.509 3.413 7.509 7.509s-3.413 7.509-7.509 7.509h-533.845c-4.096 0-7.509-3.413-7.509-7.509s3.243-7.509 7.509-7.509zM855.211 667.307h-628.736c-4.096 0-7.509-3.413-7.509-7.509s3.413-7.509 7.509-7.509h621.227v-359.765c0-4.096 3.413-7.509 7.509-7.509s7.509 3.413 7.509 7.509v367.275c0 4.096-3.413 7.509-7.509 7.509z" />
|
43 |
-
<glyph unicode="" glyph-name="check-circle" d="M483.499 298.667c-7.509 0-14.848 3.072-20.139 8.363l-99.499 99.669c-11.093 11.093-11.093 29.184 0 40.277s29.184 11.093 40.277 0l77.141-77.141 179.2 224.085c9.728 12.288 27.648 14.336 39.936 4.437 12.288-9.728 14.336-27.648 4.437-39.936l-199.168-249.173c-5.12-6.315-12.629-10.24-20.651-10.581-0.512 0-1.024 0-1.536 0zM512 35.499c-227.499 0-412.501 185.003-412.501 412.501s185.003 412.501 412.501 412.501 412.501-185.003 412.501-412.501-185.003-412.501-412.501-412.501zM512 803.499c-196.096 0-355.499-159.403-355.499-355.499s159.403-355.499 355.499-355.499 355.499 159.573 355.499 355.499-159.403 355.499-355.499 355.499z" />
|
44 |
-
<glyph unicode="" glyph-name="info-squared" d="M853.333 35.499h-682.667c-39.253 0-71.168 31.915-71.168 71.168v682.667c0 39.253 31.915 71.168 71.168 71.168h682.667c39.253 0 71.168-31.915 71.168-71.168v-682.667c0-39.253-31.915-71.168-71.168-71.168zM170.667 803.499c-7.851 0-14.165-6.315-14.165-14.165v-682.667c0-7.851 6.315-14.165 14.165-14.165h682.667c7.851 0 14.165 6.315 14.165 14.165v682.667c0 7.851-6.315 14.165-14.165 14.165h-682.667zM504.832 561.835c-19.627 0-35.499 15.872-35.499 35.499s15.872 35.499 35.499 35.499 35.499-15.872 35.499-35.499-15.872-35.499-35.499-35.499zM568.832 291.499h-28.501v199.168c0 15.701-12.8 28.501-28.501 28.501h-28.501c-15.701 0-28.501-12.8-28.501-28.501s12.8-28.501 28.501-28.501v-170.667h-28.501c-15.701 0-28.501-12.8-28.501-28.501s12.8-28.501 28.501-28.501h113.835c15.701 0 28.501 12.8 28.501 28.501s-12.629 28.501-28.331 28.501z" />
|
45 |
-
<glyph unicode="" glyph-name="warning-triangle" d="M504.832 789.333l384-682.667h-768l384 682.667zM504.832 846.165v0c-20.48 0-39.424-11.093-49.664-29.013l-384-682.667c-9.899-17.579-9.728-39.083 0.512-56.661 10.24-17.408 28.843-28.16 49.152-28.16h768c20.139 0 38.912 10.752 49.152 28.16s10.411 39.083 0.512 56.661l-384 682.667c-10.069 17.92-29.013 29.013-49.664 29.013v0zM504.832 276.48c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM497.835 334.165c-15.701 0-28.501 12.8-28.501 28.501v227.499c0 15.701 12.8 28.501 28.501 28.501s28.501-12.8 28.501-28.501v-227.499c-0.171-15.701-12.8-28.501-28.501-28.501z" />
|
46 |
-
<glyph unicode="" glyph-name="yith" horiz-adv-x="1025" d="M912.045 578.581c-47.452-32.802-108.205-67.153-182.659-103.005 37.852 125.106 58.903 241.862 63.103 350.217 3.15 87.254-35.802 131.956-116.756 134.057-97.805 3.15-161.958-51.503-192.459-164.058 17.101 7.35 34.702 11.051 52.903 11.051 14.901 0 27.201-6.050 36.802-18.151s13.851-26.051 12.801-41.802c-1-41.002-21.951-84.954-62.753-131.706-40.802-46.852-77.104-70.203-108.905-70.203-22.251 0-32.852 18.901-31.802 56.753 1.050 20.001 7.9 60.503 20.501 121.506 11.551 57.803 17.351 96.705 17.351 116.706 0 34.702-8.95 62.853-26.801 84.404-17.901 21.551-43.652 30.752-77.304 27.601-23.151-2.1-57.303-23.151-102.555-63.053-33.702-30.651-67.353-61.103-101.005-91.604l36.302-42.602c29.401 22.101 47.302 33.152 53.603 33.152 20.001 0 29.451-13.701 28.451-41.002 0-2.15-9.5-35.252-28.401-99.405s-28.901-112.005-30.001-143.557c-2.1-43.152 5.8-76.254 23.751-99.355 22.151-28.401 59.103-40.502 110.905-36.302 61.203 4.2 122.456 26.851 183.709 67.803 25.351 16.851 49.602 36.302 72.854 58.403-8.4-42.102-18.401-77.854-30.001-107.305-113.556-51.503-195.56-95.655-246.062-132.506-71.553-51.503-109.905-106.705-115.156-165.608-9.5-102.005 42.052-153.007 154.608-153.007 75.704 0 148.807 46.252 219.261 138.807 59.953 78.854 112.005 184.059 156.158 315.465 76.454 37.952 141.057 75.104 193.959 111.505-1.7-12.251 19.551 92.805 15.601 76.804zM369.668 155.211c-16.851 0-24.751 7.4-23.701 22.101 2.1 27.351 49.452 63.653 142.007 108.855-48.402-87.254-87.854-130.956-118.306-130.956z" />
|
47 |
-
</font></defs></svg>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
plugin-fw/assets/fonts/yith-icon.ttf
CHANGED
Binary file
|
plugin-fw/assets/fonts/yith-icon.woff
DELETED
Binary file
|
plugin-fw/assets/fonts/yith-icon.woff2
ADDED
Binary file
|
plugin-fw/assets/js/yith-fields.js
CHANGED
@@ -814,4 +814,41 @@
|
|
814 |
};
|
815 |
fw_dimensions.init();
|
816 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
817 |
} )( jQuery );
|
814 |
};
|
815 |
fw_dimensions.init();
|
816 |
|
817 |
+
/**
|
818 |
+
* Copy to clip-board
|
819 |
+
*/
|
820 |
+
var clearSelection = function () {
|
821 |
+
var selection = 'getSelection' in window ? window.getSelection() : false;
|
822 |
+
if ( selection ) {
|
823 |
+
if ( 'empty' in selection ) { // Chrome.
|
824 |
+
selection.empty();
|
825 |
+
} else if ( 'removeAllRanges' in selection ) { // Firefox.
|
826 |
+
selection.removeAllRanges();
|
827 |
+
}
|
828 |
+
} else if ( 'selection' in document ) { // IE.
|
829 |
+
document.selection.empty();
|
830 |
+
}
|
831 |
+
}
|
832 |
+
|
833 |
+
$( document ).on( 'click', '.yith-plugin-fw-copy-to-clipboard__copy', function () {
|
834 |
+
var wrap = $( this ).closest( '.yith-plugin-fw-copy-to-clipboard' ),
|
835 |
+
input = wrap.find( '.yith-plugin-fw-copy-to-clipboard__field' ),
|
836 |
+
tip = wrap.find( '.yith-plugin-fw-copy-to-clipboard__tip' ),
|
837 |
+
timeout = wrap.data( 'tip-timeout' );
|
838 |
+
|
839 |
+
timeout && clearTimeout( timeout );
|
840 |
+
|
841 |
+
input.select();
|
842 |
+
document.execCommand( 'copy' );
|
843 |
+
clearSelection();
|
844 |
+
|
845 |
+
tip.fadeIn( 400 );
|
846 |
+
|
847 |
+
// Use timeout instead of delay to prevent issues with multiple clicks.
|
848 |
+
timeout = setTimeout( function () {
|
849 |
+
tip.fadeOut( 400 );
|
850 |
+
}, 1500 );
|
851 |
+
wrap.data( 'tip-timeout', timeout );
|
852 |
+
} )
|
853 |
+
|
854 |
} )( jQuery );
|
plugin-fw/assets/js/yith-fields.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){e(document).on("yith_fields_init",function(){var t=e(".yith-plugin-fw-datepicker"),i=e(".yith-plugin-fw-colorpicker"),n={imgPreviewHandler:".yith-plugin-fw-upload-img-preview",uploadButtonHandler:".yith-plugin-fw-upload-button",imgUrlHandler:".yith-plugin-fw-upload-img-url",resetButtonHandler:".yith-plugin-fw-upload-button-reset",imgUrl:e(".yith-plugin-fw-upload-img-url")},a=e(".add_media"),l={rootSelector:".yith-plugin-fw-image-gallery",buttonSelector:".yith-plugin-fw-image-gallery .image-gallery-button",sliderWrapper:e(".yith-plugin-fw-image-gallery ul.slides-wrapper")},o=e(".yith-plugin-fw-sidebar-layout"),s=e(".yith-plugin-fw .yith-plugin-fw-slider-container .ui-slider-horizontal"),r=e(".yit-icons-manager-wrapper");e(".yith-plugin-ui td.forminp-checkbox");t.each(function(){var t=e(this).data();t.showAnim=!1,t.beforeShow=function(e,t){t.dpDiv.addClass("yith-plugin-fw-datepicker-div")},t.onClose=function(e,t){t.dpDiv.removeClass("yith-plugin-fw-datepicker-div")},e(this).datepicker(t)}),i.wpColorPicker({palettes:!1,width:200,mode:"hsl",clear:function(){var t=e(this);t.val(t.data("default-color")),t.change()}}),i.each(function(){var t=e(this).data("variations-label"),i=e(this).closest(".yith-plugin-fw-colorpicker-field-wrapper"),n=e(this).closest(".yith-single-colorpicker"),a=i.find(".wp-picker-input-wrap"),l=n.find(".wp-picker-input-wrap");if(a.length&&i.find("a.wp-color-result").attr("title",t),n.length&&n.find("a.wp-color-result").attr("title",t),!a.find(".wp-picker-default-custom").length){var o=e("<span/>").attr({"class":"wp-picker-default-custom"});a.find(".wp-picker-default").wrap(o)}l.find(".wp-picker-default-custom").length||(o=e("<span/>").attr({"class":"wp-picker-default-custom"}),l.find(".wp-picker-default").wrap(o))}),"undefined"!=typeof wp&&"undefined"!=typeof wp.media&&(n.imgUrl.change(function(){var t=e(this).val(),i=new RegExp("(http|ftp|https)://[a-zA-Z0-9@?^=%&:/~+#-_.]*.(gif|jpg|jpeg|png|ico|svg)"),a=e(this).parent().find(n.imgPreviewHandler).first();a.length<1&&(a=e(this).parent().parent().find(n.imgPreviewHandler).first()),i.test(t)?a.html('<img src="'+t+'" style="max-width:100px; max-height:100px;" />'):a.html("")}).trigger("change"),e(document).on("click",n.uploadButtonHandler,function(t){t.preventDefault();var i,a=e(this).attr("id").replace(/-button$/,"").replace(/(\[|\])/g,"\\$1");if(i)i.open();else{var l=[new wp.media.controller.Library({library:wp.media.query(),multiple:!1,title:"Choose Image",priority:20,filterable:"uploaded"})];(i=wp.media.frames.downloadable_file=wp.media({title:"Choose Image",library:{type:""},button:{text:"Choose Image"},multiple:!1,states:l})).on("select",function(){var t=i.state().get("selection").first().toJSON();e("#"+a).val(t.url),e("#"+a+"-yith-attachment-id")&&e("#"+a+"-yith-attachment-id").val(t.id),n.imgUrl.trigger("change")}),i.open()}}),e(document).on("click",n.resetButtonHandler,function(t){var i=e(this),a=i.attr("id").replace(/(\[|\])/g,"\\$1"),l=i.attr("id").replace(/-button-reset$/,"").replace(/(\[|\])/g,"\\$1"),o=e("#"+a).data("default");e("#"+l).val(o),n.imgUrl.trigger("change")}));a.on("click",function(){}),"undefined"!=typeof wp&&"undefined"!=typeof wp.media&&(e(document).on("click",l.buttonSelector,function(t){var i=e(this),n=i.closest(l.rootSelector),a=n.find(".image_gallery_ids"),o=a.val(),s=n.find("ul.slides-wrapper"),r=wp.media.frames.image_gallery=wp.media({title:i.data("choose"),button:{text:i.data("update")},states:[new wp.media.controller.Library({title:i.data("choose"),filterable:"all",multiple:!0})]});r.on("select",function(){r.state().get("selection").map(function(e){(e=e.toJSON()).id&&(o=o?o+","+e.id:e.id,s.append('<li class="image" data-attachment_id="'+e.id+'"><img src="'+e.sizes.thumbnail.url+'"/><ul class="actions"><li><a href="#" class="delete" title="'+i.data("delete")+'">x</a></li></ul></li>'))}),a.val(o),a.trigger("change")}),r.open()}),l.sliderWrapper.each(function(){var t=e(this);t.sortable({items:"li.image",cursor:"move",scrollSensitivity:40,forcePlaceholderSize:!0,forceHelperSize:!1,helper:"clone",opacity:.65,start:function(e,t){t.item.css("background-color","#f6f6f6")},stop:function(e,t){t.item.removeAttr("style")},update:function(i,n){var a="";t.find("li.image").css("cursor","default").each(function(){var t=e(this).attr("data-attachment_id");a=a+t+","}),t.closest(l.rootSelector).find(".image_gallery_ids").val(a)}})}),l.sliderWrapper.on("click","a.delete",function(t){t.preventDefault();var i=e(this).closest(l.rootSelector),n=i.find("ul.slides-wrapper"),a=i.find(".image_gallery_ids"),o="";e(this).closest("li.image").remove(),n.find("li.image").css("cursor","default").each(function(){var t=e(this).attr("data-attachment_id");o=o+t+","}),a.val(o)})),o.each(function(){e(this).find("img").on("click",function(){var t=e(this).closest(".yith-plugin-fw-sidebar-layout"),i=t.find(".yith-plugin-fw-sidebar-layout-sidebar-left-container"),n=t.find(".yith-plugin-fw-sidebar-layout-sidebar-right-container"),a=e(this).data("type");if(e(this).parent().children(":radio").attr("checked",!1),e(this).prev(":radio").attr("checked",!0),void 0!==a)switch(a){case"left":i.show(),n.hide();break;case"right":n.show(),i.hide();break;case"double":i.show(),n.show();break;default:i.hide(),n.hide()}})}),s.each(function(){var t=e(this).data("val"),i=e(this).data("min"),n=e(this).data("max"),a=e(this).data("step"),l=e(this).data("labels");e(this).slider({value:t,min:i,max:n,range:"min",step:a,create:function(){e(this).find(".ui-slider-handle").text(e(this).slider("value"))},slide:function(t,i){e(this).find("input").val(i.value),e(this).find(".ui-slider-handle").text(i.value),e(this).siblings(".feedback").find("strong").text(i.value+l)}})}),e(function(){e(document).on("yith-plugin-fw-codemirror-init",function(){"undefined"!=typeof wp&&"undefined"!=typeof wp.codeEditor&&e(".codemirror:not(.codemirror--initialized)").each(function(){var t=e(this).data("settings"),i=wp.codeEditor.initialize(e(this),t);e(this).addClass("codemirror--initialized"),e(this).data("codemirrorInstance",i)})}).trigger("yith-plugin-fw-codemirror-init")}),e(document).on("click",".yith-plugin-fw-select-all",function(){e("#"+e(this).data("select-id")).find("option").prop("selected",!0).trigger("change")}),e(document).on("click",".yith-plugin-fw-deselect-all",function(){e("#"+e(this).data("select-id")).find("option").prop("selected",!1).trigger("change")}),r.each(function(){var t=e(this),i=t.find(".yit-icons-manager-icon-preview").first(),n=t.find(".yit-icons-manager-icon-text");t.on("click",".yit-icons-manager-list li",function(a){var l=e(a.target).closest("li"),o=l.data("font"),s=l.data("icon"),r=l.data("key"),d=l.data("name");i.attr("data-font",o),i.attr("data-icon",s),i.attr("data-key",r),i.attr("data-name",d),n.val(o+":"+d),t.find(".yit-icons-manager-list li").removeClass("active"),l.addClass("active")}),t.on("click",".yit-icons-manager-action-set-default",function(){t.find(".yit-icons-manager-list li.default").trigger("click")})}),e(document).on("click",".yith-plugin-fw-select-images__item",function(){var t=e(this),i=t.data("key"),n=t.closest(".yith-plugin-fw-select-images__wrapper"),a=n.find(".yith-plugin-fw-select-images__item"),l=n.find("select").first();l.length&&(l.val(i).trigger("yith_select_images_value_changed"),a.removeClass("yith-plugin-fw-select-images__item--selected"),t.addClass("yith-plugin-fw-select-images__item--selected"))}),e(document.body).trigger("wc-enhanced-select-init"),e(document).find(".ui-sortable .yith-toggle-elements").sortable({cursor:"move",axis:"y",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",stop:function(t,i){var n=jQuery(".ui-sortable-handle"),a=0,l=new Array;for(a=0;a<n.length;a++)l[a]=e(n[a]).data("item_key");l.length>0&&e(this).closest(".toggle-element").saveToggleElement(null,l)}}),e(document.body).trigger("yith-framework-enhanced-select-init")}).trigger("yith_fields_init"),e(document).on("click",".yith-plugin-fw-onoff-container span",function(){var t=e(this).prev("input"),i=t.prop("checked");t.prop("disabled")||(i?t.prop("checked",!1).attr("value","no").removeClass("onoffchecked"):t.prop("checked",!0).attr("value","yes").addClass("onoffchecked"),t.change())}),e.fn.saveToggleElement=function(t,i){var n=e(this),a="yith_plugin_fw_save_toggle_element",l=n.serializeToggleElement(),o=n.find(".yith-toggle_wrapper"),s=o.attr("id"),r=e.urlParam("tab");l.append("security",o.data("nonce")),void 0!==i&&i.length>0&&l.append("yith_toggle_elements_order_keys",i),n.closest(".metaboxes-tab.yith-plugin-ui").length?(a="yith_plugin_fw_save_toggle_element_metabox",post_id=e(this).closest("form#post").find("#post_ID").val(),yit_metaboxes_nonce=e(this).closest("form#post").find("#yit_metaboxes_nonce").val(),metabox_tab=e(this).closest(".tabs-panel").attr("id"),url=yith_framework_fw_fields.ajax_url+"?action="+a+"&post_ID="+post_id+"&yit_metaboxes_nonce="+yit_metaboxes_nonce+"&toggle_id="+s+"&metabox_tab="+metabox_tab):url=yith_framework_fw_fields.admin_url+"?action="+a+"&tab="+r+"&toggle_id="+s,e.ajax({type:"POST",url:url,data:l,contentType:!1,processData:!1,success:function(i){t&&t.removeClass("show"),e(document).trigger("yith_save_toggle_element_done",[i,n])}})},e.fn.serializeToggleElement=function(){var t=e(this),i=new FormData,n=e(t).find(":input").serializeArray();return e.each(n,function(e,t){el_name=t.name,i.append(t.name,t.value)}),i},e.fn.formatToggleTitle=function(){var t=e(this),i=t.find(":input"),n=t.find("span.title").data("title_format"),a=t.find(".subtitle").data("subtitle_format"),l=new RegExp("[^%%]+(?=[%%])","g");if(void 0!==n)var o=n.match(l);if(void 0!==a)var s=a.match(l);e.each(i,function(t,i){void 0!==e(i).attr("id")&&($field_id=e(i).attr("id"),$field_array=$field_id.split("_"),$field_array.pop(),$field_id=$field_array.join("_"),$field_val=e(i).val(),null!=o&&void 0!==o&&-1!==o.indexOf($field_id)&&(n=n.replace("%%"+$field_id+"%%",$field_val)),null!=s&&void 0!==s&&-1!==s.indexOf($field_id)&&(a=a.replace("%%"+$field_id+"%%",$field_val)))}),""!==n&&t.find("span.title").html(n),""!==a&&t.find(".subtitle").html(a),e(document).trigger("yith-toggle-element-item-title",[t])},e.urlParam=function(e){var t=new RegExp("[?&]"+e+"=([^&#]*)").exec(window.location.search);return null!==t&&(t[1]||0)},e(document).on("click",".yith-toggle-title",function(t){var i=e(t.target),n=i.closest(".yith-toggle-row"),a=n.find(".yith-toggle-content");if(i.hasClass("yith-plugin-fw-onoff")||i.hasClass("yith-icon-drag"))return!1;n.is(".yith-toggle-row-opened")?a.slideUp(400):a.slideDown(400),n.toggleClass("yith-toggle-row-opened")}),e(document).on("click",".yith-add-box-button",function(t){t.preventDefault();var i=e(this),n=i.data("box_id"),a=i.data("closed_label"),l=i.data("opened_label"),o=i.closest(".yith-toggle_wrapper").attr("id"),s=wp.template("yith-toggle-element-add-box-content-"+o);""!==n&&(e("#"+n).html(s({index:"box_id"})).slideToggle(),""!==a&&(i.html()===a?i.html(l).removeClass("closed"):i.html(a).addClass("closed")),e(document).trigger("yith_fields_init"),e(document).trigger("yith-add-box-button-toggle",[i]))}),e(document).on("click",".yith-add-box-buttons .yith-save-button",function(t){t.preventDefault();var i=e(this).parents(".yith-add-box"),n=e(this).closest(".yith-toggle_wrapper").attr("id"),a=i.find(".spinner"),l=e(this).parents(".toggle-element"),o=i.find(":input"),s=0,r=e('<input type="hidden">');l.find(".yith-toggle-row").each(function(){var t=parseInt(e(this).data("item_key"));s<=t&&(s=t+1)}),r.val(s),e(document).trigger("yith-toggle-change-counter",[r,i]),s=r.val();var d=wp.template("yith-toggle-element-item-"+n),c=e(d({index:s}));a.addClass("show"),e.each(o,function(t,i){if(void 0!==e(i).attr("id")){var n=e(i).attr("id"),a=e(i).val();n="radio"===e(i).attr("type")?(n=(n=e(i).closest(".yith-plugin-fw-radio").attr("id")).replace("new_","")+"_"+s)+"-"+a:n.replace("new_","")+"_"+s,e(i).is(":checked")&&e(c).find("#"+n).prop("checked",!0),(e(i).hasClass("yith-post-search")||e(i).hasClass("yith-term-search"))&&e(c).find("#"+n).html(e("#"+e(i).attr("id")).html()),e(c).find("#"+n).val(a)}}),e(c).formatToggleTitle();var u=e('<input type="hidden">').val("yes");e(document).trigger("yith-toggle-element-item-before-add",[i,c,u]);setTimeout(function(){if("yes"===u.val()){e(l).find(".yith-toggle-elements").append(c),e(i).find(".yith-plugin-fw-datepicker").datepicker("destroy"),e(i).html(""),e(i).prev(".yith-add-box-button").trigger("click"),l.saveToggleElement();setTimeout(function(){e(l).find(".highlight").removeClass("highlight")},2e3),e(document).trigger("yith_fields_init")}},1e3)}),e(document).on("click",".yith-toggle-row .yith-save-button",function(t){t.preventDefault();var i=e(this).closest(".toggle-element"),n=e(this).closest(".yith-toggle-row"),a=n.find(".spinner");n.formatToggleTitle();var l=e('<input type="hidden">').val("yes");e(document).trigger("yith-toggle-element-item-before-update",[i,n,l]),"yes"===l.val()&&(a.addClass("show"),i.saveToggleElement(a))}),e(document).on("click",".yith-toggle-row .yith-delete-button",function(t){t.preventDefault();var i=e(this).closest(".toggle-element");e(this).closest(".yith-toggle-row").remove(),i.saveToggleElement()}),e(document).on("click",".yith-toggle-onoff",function(t){t.preventDefault(),e(this).closest(".toggle-element").saveToggleElement()}),e(document).on("click",".yith-plugin-fw-radio input[type=radio]",function(){var t=e(this).closest(".yith-plugin-fw-radio"),i=e(this).val();t.val(i).data("value",i).trigger("change")}),e(document.body).on("yith-plugin-fw-init-radio",function(){e(".yith-plugin-fw-radio:not(.yith-plugin-fw-radio--initialized)").each(function(){e(this).val(e(this).data("value")),e(this).addClass("yith-plugin-fw-radio--initialized")})}).trigger("yith-plugin-fw-init-radio"),e(document).on("click",".yith-password-eye",function(){var t=e(this),i=e(this).closest(".yith-password-wrapper").find("input");"password"===i.attr("type")?(i.attr("type","text"),t.addClass("yith-password-eye-closed")):(i.attr("type","password"),t.removeClass("yith-password-eye-closed"))}),e(document).on("select2:open",function(t){e(t.target).closest(".yith-plugin-ui").length&&e(".select2-results").closest(".select2-container").addClass("yith-plugin-fw-select2-container")});var t={selectors:{wrapper:".yith-plugin-fw-dimensions",units:{wrapper:".yith-plugin-fw-dimensions__units",single:".yith-plugin-fw-dimensions__unit",value:".yith-plugin-fw-dimensions__unit__value",selectedClass:"yith-plugin-fw-dimensions__unit--selected"},linked:{button:".yith-plugin-fw-dimensions__linked",value:".yith-plugin-fw-dimensions__linked__value",wrapperActiveClass:"yith-plugin-fw-dimensions--linked-active"},dimensions:{number:".yith-plugin-fw-dimensions__dimension__number"}},init:function(){var i=t;e(document).on("click",i.selectors.units.single,i.unitChange),e(document).on("click",i.selectors.linked.button,i.linkedChange),e(document).on("change keyup",i.selectors.dimensions.number,i.numberChange)},unitChange:function(i){var n=e(this).closest(t.selectors.units.single),a=n.closest(t.selectors.units.wrapper),l=a.find(t.selectors.units.single),o=a.find(t.selectors.units.value).first(),s=n.data("value");l.removeClass(t.selectors.units.selectedClass),n.addClass(t.selectors.units.selectedClass),o.val(s)},linkedChange:function(){var i=e(this).closest(t.selectors.linked.button),n=i.closest(t.selectors.wrapper),a=i.find(t.selectors.linked.value);"yes"===a.val()?(n.removeClass(t.selectors.linked.wrapperActiveClass),a.val("no")):(n.addClass(t.selectors.linked.wrapperActiveClass),a.val("yes"),n.find(t.selectors.dimensions.number).first().trigger("change"))},numberChange:function(i){var n=e(this).closest(t.selectors.dimensions.number),a=n.closest(t.selectors.wrapper);a.hasClass(t.selectors.linked.wrapperActiveClass)&&a.find(t.selectors.dimensions.number).val(n.val())}};t.init()}(jQuery);
|
1 |
+
!function(e){e(document).on("yith_fields_init",function(){var t=e(".yith-plugin-fw-datepicker"),i=e(".yith-plugin-fw-colorpicker"),n={imgPreviewHandler:".yith-plugin-fw-upload-img-preview",uploadButtonHandler:".yith-plugin-fw-upload-button",imgUrlHandler:".yith-plugin-fw-upload-img-url",resetButtonHandler:".yith-plugin-fw-upload-button-reset",imgUrl:e(".yith-plugin-fw-upload-img-url")},a=e(".add_media"),l={rootSelector:".yith-plugin-fw-image-gallery",buttonSelector:".yith-plugin-fw-image-gallery .image-gallery-button",sliderWrapper:e(".yith-plugin-fw-image-gallery ul.slides-wrapper")},o=e(".yith-plugin-fw-sidebar-layout"),s=e(".yith-plugin-fw .yith-plugin-fw-slider-container .ui-slider-horizontal"),r=e(".yit-icons-manager-wrapper");e(".yith-plugin-ui td.forminp-checkbox");t.each(function(){var t=e(this).data();t.showAnim=!1,t.beforeShow=function(e,t){t.dpDiv.addClass("yith-plugin-fw-datepicker-div")},t.onClose=function(e,t){t.dpDiv.removeClass("yith-plugin-fw-datepicker-div")},e(this).datepicker(t)}),i.wpColorPicker({palettes:!1,width:200,mode:"hsl",clear:function(){var t=e(this);t.val(t.data("default-color")),t.change()}}),i.each(function(){var t=e(this).data("variations-label"),i=e(this).closest(".yith-plugin-fw-colorpicker-field-wrapper"),n=e(this).closest(".yith-single-colorpicker"),a=i.find(".wp-picker-input-wrap"),l=n.find(".wp-picker-input-wrap");if(a.length&&i.find("a.wp-color-result").attr("title",t),n.length&&n.find("a.wp-color-result").attr("title",t),!a.find(".wp-picker-default-custom").length){var o=e("<span/>").attr({"class":"wp-picker-default-custom"});a.find(".wp-picker-default").wrap(o)}l.find(".wp-picker-default-custom").length||(o=e("<span/>").attr({"class":"wp-picker-default-custom"}),l.find(".wp-picker-default").wrap(o))}),"undefined"!=typeof wp&&"undefined"!=typeof wp.media&&(n.imgUrl.change(function(){var t=e(this).val(),i=new RegExp("(http|ftp|https)://[a-zA-Z0-9@?^=%&:/~+#-_.]*.(gif|jpg|jpeg|png|ico|svg)"),a=e(this).parent().find(n.imgPreviewHandler).first();a.length<1&&(a=e(this).parent().parent().find(n.imgPreviewHandler).first()),i.test(t)?a.html('<img src="'+t+'" style="max-width:100px; max-height:100px;" />'):a.html("")}).trigger("change"),e(document).on("click",n.uploadButtonHandler,function(t){t.preventDefault();var i,a=e(this).attr("id").replace(/-button$/,"").replace(/(\[|\])/g,"\\$1");if(i)i.open();else{var l=[new wp.media.controller.Library({library:wp.media.query(),multiple:!1,title:"Choose Image",priority:20,filterable:"uploaded"})];(i=wp.media.frames.downloadable_file=wp.media({title:"Choose Image",library:{type:""},button:{text:"Choose Image"},multiple:!1,states:l})).on("select",function(){var t=i.state().get("selection").first().toJSON();e("#"+a).val(t.url),e("#"+a+"-yith-attachment-id")&&e("#"+a+"-yith-attachment-id").val(t.id),n.imgUrl.trigger("change")}),i.open()}}),e(document).on("click",n.resetButtonHandler,function(t){var i=e(this),a=i.attr("id").replace(/(\[|\])/g,"\\$1"),l=i.attr("id").replace(/-button-reset$/,"").replace(/(\[|\])/g,"\\$1"),o=e("#"+a).data("default");e("#"+l).val(o),n.imgUrl.trigger("change")}));a.on("click",function(){}),"undefined"!=typeof wp&&"undefined"!=typeof wp.media&&(e(document).on("click",l.buttonSelector,function(t){var i=e(this),n=i.closest(l.rootSelector),a=n.find(".image_gallery_ids"),o=a.val(),s=n.find("ul.slides-wrapper"),r=wp.media.frames.image_gallery=wp.media({title:i.data("choose"),button:{text:i.data("update")},states:[new wp.media.controller.Library({title:i.data("choose"),filterable:"all",multiple:!0})]});r.on("select",function(){r.state().get("selection").map(function(e){(e=e.toJSON()).id&&(o=o?o+","+e.id:e.id,s.append('<li class="image" data-attachment_id="'+e.id+'"><img src="'+e.sizes.thumbnail.url+'"/><ul class="actions"><li><a href="#" class="delete" title="'+i.data("delete")+'">x</a></li></ul></li>'))}),a.val(o),a.trigger("change")}),r.open()}),l.sliderWrapper.each(function(){var t=e(this);t.sortable({items:"li.image",cursor:"move",scrollSensitivity:40,forcePlaceholderSize:!0,forceHelperSize:!1,helper:"clone",opacity:.65,start:function(e,t){t.item.css("background-color","#f6f6f6")},stop:function(e,t){t.item.removeAttr("style")},update:function(i,n){var a="";t.find("li.image").css("cursor","default").each(function(){var t=e(this).attr("data-attachment_id");a=a+t+","}),t.closest(l.rootSelector).find(".image_gallery_ids").val(a)}})}),l.sliderWrapper.on("click","a.delete",function(t){t.preventDefault();var i=e(this).closest(l.rootSelector),n=i.find("ul.slides-wrapper"),a=i.find(".image_gallery_ids"),o="";e(this).closest("li.image").remove(),n.find("li.image").css("cursor","default").each(function(){var t=e(this).attr("data-attachment_id");o=o+t+","}),a.val(o)})),o.each(function(){e(this).find("img").on("click",function(){var t=e(this).closest(".yith-plugin-fw-sidebar-layout"),i=t.find(".yith-plugin-fw-sidebar-layout-sidebar-left-container"),n=t.find(".yith-plugin-fw-sidebar-layout-sidebar-right-container"),a=e(this).data("type");if(e(this).parent().children(":radio").attr("checked",!1),e(this).prev(":radio").attr("checked",!0),void 0!==a)switch(a){case"left":i.show(),n.hide();break;case"right":n.show(),i.hide();break;case"double":i.show(),n.show();break;default:i.hide(),n.hide()}})}),s.each(function(){var t=e(this).data("val"),i=e(this).data("min"),n=e(this).data("max"),a=e(this).data("step"),l=e(this).data("labels");e(this).slider({value:t,min:i,max:n,range:"min",step:a,create:function(){e(this).find(".ui-slider-handle").text(e(this).slider("value"))},slide:function(t,i){e(this).find("input").val(i.value),e(this).find(".ui-slider-handle").text(i.value),e(this).siblings(".feedback").find("strong").text(i.value+l)}})}),e(function(){e(document).on("yith-plugin-fw-codemirror-init",function(){"undefined"!=typeof wp&&"undefined"!=typeof wp.codeEditor&&e(".codemirror:not(.codemirror--initialized)").each(function(){var t=e(this).data("settings"),i=wp.codeEditor.initialize(e(this),t);e(this).addClass("codemirror--initialized"),e(this).data("codemirrorInstance",i)})}).trigger("yith-plugin-fw-codemirror-init")}),e(document).on("click",".yith-plugin-fw-select-all",function(){e("#"+e(this).data("select-id")).find("option").prop("selected",!0).trigger("change")}),e(document).on("click",".yith-plugin-fw-deselect-all",function(){e("#"+e(this).data("select-id")).find("option").prop("selected",!1).trigger("change")}),r.each(function(){var t=e(this),i=t.find(".yit-icons-manager-icon-preview").first(),n=t.find(".yit-icons-manager-icon-text");t.on("click",".yit-icons-manager-list li",function(a){var l=e(a.target).closest("li"),o=l.data("font"),s=l.data("icon"),r=l.data("key"),d=l.data("name");i.attr("data-font",o),i.attr("data-icon",s),i.attr("data-key",r),i.attr("data-name",d),n.val(o+":"+d),t.find(".yit-icons-manager-list li").removeClass("active"),l.addClass("active")}),t.on("click",".yit-icons-manager-action-set-default",function(){t.find(".yit-icons-manager-list li.default").trigger("click")})}),e(document).on("click",".yith-plugin-fw-select-images__item",function(){var t=e(this),i=t.data("key"),n=t.closest(".yith-plugin-fw-select-images__wrapper"),a=n.find(".yith-plugin-fw-select-images__item"),l=n.find("select").first();l.length&&(l.val(i).trigger("yith_select_images_value_changed"),a.removeClass("yith-plugin-fw-select-images__item--selected"),t.addClass("yith-plugin-fw-select-images__item--selected"))}),e(document.body).trigger("wc-enhanced-select-init"),e(document).find(".ui-sortable .yith-toggle-elements").sortable({cursor:"move",axis:"y",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",stop:function(t,i){var n=jQuery(".ui-sortable-handle"),a=0,l=new Array;for(a=0;a<n.length;a++)l[a]=e(n[a]).data("item_key");l.length>0&&e(this).closest(".toggle-element").saveToggleElement(null,l)}}),e(document.body).trigger("yith-framework-enhanced-select-init")}).trigger("yith_fields_init"),e(document).on("click",".yith-plugin-fw-onoff-container span",function(){var t=e(this).prev("input"),i=t.prop("checked");t.prop("disabled")||(i?t.prop("checked",!1).attr("value","no").removeClass("onoffchecked"):t.prop("checked",!0).attr("value","yes").addClass("onoffchecked"),t.change())}),e.fn.saveToggleElement=function(t,i){var n=e(this),a="yith_plugin_fw_save_toggle_element",l=n.serializeToggleElement(),o=n.find(".yith-toggle_wrapper"),s=o.attr("id"),r=e.urlParam("tab");l.append("security",o.data("nonce")),void 0!==i&&i.length>0&&l.append("yith_toggle_elements_order_keys",i),n.closest(".metaboxes-tab.yith-plugin-ui").length?(a="yith_plugin_fw_save_toggle_element_metabox",post_id=e(this).closest("form#post").find("#post_ID").val(),yit_metaboxes_nonce=e(this).closest("form#post").find("#yit_metaboxes_nonce").val(),metabox_tab=e(this).closest(".tabs-panel").attr("id"),url=yith_framework_fw_fields.ajax_url+"?action="+a+"&post_ID="+post_id+"&yit_metaboxes_nonce="+yit_metaboxes_nonce+"&toggle_id="+s+"&metabox_tab="+metabox_tab):url=yith_framework_fw_fields.admin_url+"?action="+a+"&tab="+r+"&toggle_id="+s,e.ajax({type:"POST",url:url,data:l,contentType:!1,processData:!1,success:function(i){t&&t.removeClass("show"),e(document).trigger("yith_save_toggle_element_done",[i,n])}})},e.fn.serializeToggleElement=function(){var t=e(this),i=new FormData,n=e(t).find(":input").serializeArray();return e.each(n,function(e,t){el_name=t.name,i.append(t.name,t.value)}),i},e.fn.formatToggleTitle=function(){var t=e(this),i=t.find(":input"),n=t.find("span.title").data("title_format"),a=t.find(".subtitle").data("subtitle_format"),l=new RegExp("[^%%]+(?=[%%])","g");if(void 0!==n)var o=n.match(l);if(void 0!==a)var s=a.match(l);e.each(i,function(t,i){void 0!==e(i).attr("id")&&($field_id=e(i).attr("id"),$field_array=$field_id.split("_"),$field_array.pop(),$field_id=$field_array.join("_"),$field_val=e(i).val(),null!=o&&void 0!==o&&-1!==o.indexOf($field_id)&&(n=n.replace("%%"+$field_id+"%%",$field_val)),null!=s&&void 0!==s&&-1!==s.indexOf($field_id)&&(a=a.replace("%%"+$field_id+"%%",$field_val)))}),""!==n&&t.find("span.title").html(n),""!==a&&t.find(".subtitle").html(a),e(document).trigger("yith-toggle-element-item-title",[t])},e.urlParam=function(e){var t=new RegExp("[?&]"+e+"=([^&#]*)").exec(window.location.search);return null!==t&&(t[1]||0)},e(document).on("click",".yith-toggle-title",function(t){var i=e(t.target),n=i.closest(".yith-toggle-row"),a=n.find(".yith-toggle-content");if(i.hasClass("yith-plugin-fw-onoff")||i.hasClass("yith-icon-drag"))return!1;n.is(".yith-toggle-row-opened")?a.slideUp(400):a.slideDown(400),n.toggleClass("yith-toggle-row-opened")}),e(document).on("click",".yith-add-box-button",function(t){t.preventDefault();var i=e(this),n=i.data("box_id"),a=i.data("closed_label"),l=i.data("opened_label"),o=i.closest(".yith-toggle_wrapper").attr("id"),s=wp.template("yith-toggle-element-add-box-content-"+o);""!==n&&(e("#"+n).html(s({index:"box_id"})).slideToggle(),""!==a&&(i.html()===a?i.html(l).removeClass("closed"):i.html(a).addClass("closed")),e(document).trigger("yith_fields_init"),e(document).trigger("yith-add-box-button-toggle",[i]))}),e(document).on("click",".yith-add-box-buttons .yith-save-button",function(t){t.preventDefault();var i=e(this).parents(".yith-add-box"),n=e(this).closest(".yith-toggle_wrapper").attr("id"),a=i.find(".spinner"),l=e(this).parents(".toggle-element"),o=i.find(":input"),s=0,r=e('<input type="hidden">');l.find(".yith-toggle-row").each(function(){var t=parseInt(e(this).data("item_key"));s<=t&&(s=t+1)}),r.val(s),e(document).trigger("yith-toggle-change-counter",[r,i]),s=r.val();var d=wp.template("yith-toggle-element-item-"+n),c=e(d({index:s}));a.addClass("show"),e.each(o,function(t,i){if(void 0!==e(i).attr("id")){var n=e(i).attr("id"),a=e(i).val();n="radio"===e(i).attr("type")?(n=(n=e(i).closest(".yith-plugin-fw-radio").attr("id")).replace("new_","")+"_"+s)+"-"+a:n.replace("new_","")+"_"+s,e(i).is(":checked")&&e(c).find("#"+n).prop("checked",!0),(e(i).hasClass("yith-post-search")||e(i).hasClass("yith-term-search"))&&e(c).find("#"+n).html(e("#"+e(i).attr("id")).html()),e(c).find("#"+n).val(a)}}),e(c).formatToggleTitle();var u=e('<input type="hidden">').val("yes");e(document).trigger("yith-toggle-element-item-before-add",[i,c,u]);setTimeout(function(){if("yes"===u.val()){e(l).find(".yith-toggle-elements").append(c),e(i).find(".yith-plugin-fw-datepicker").datepicker("destroy"),e(i).html(""),e(i).prev(".yith-add-box-button").trigger("click"),l.saveToggleElement();setTimeout(function(){e(l).find(".highlight").removeClass("highlight")},2e3),e(document).trigger("yith_fields_init")}},1e3)}),e(document).on("click",".yith-toggle-row .yith-save-button",function(t){t.preventDefault();var i=e(this).closest(".toggle-element"),n=e(this).closest(".yith-toggle-row"),a=n.find(".spinner");n.formatToggleTitle();var l=e('<input type="hidden">').val("yes");e(document).trigger("yith-toggle-element-item-before-update",[i,n,l]),"yes"===l.val()&&(a.addClass("show"),i.saveToggleElement(a))}),e(document).on("click",".yith-toggle-row .yith-delete-button",function(t){t.preventDefault();var i=e(this).closest(".toggle-element");e(this).closest(".yith-toggle-row").remove(),i.saveToggleElement()}),e(document).on("click",".yith-toggle-onoff",function(t){t.preventDefault(),e(this).closest(".toggle-element").saveToggleElement()}),e(document).on("click",".yith-plugin-fw-radio input[type=radio]",function(){var t=e(this).closest(".yith-plugin-fw-radio"),i=e(this).val();t.val(i).data("value",i).trigger("change")}),e(document.body).on("yith-plugin-fw-init-radio",function(){e(".yith-plugin-fw-radio:not(.yith-plugin-fw-radio--initialized)").each(function(){e(this).val(e(this).data("value")),e(this).addClass("yith-plugin-fw-radio--initialized")})}).trigger("yith-plugin-fw-init-radio"),e(document).on("click",".yith-password-eye",function(){var t=e(this),i=e(this).closest(".yith-password-wrapper").find("input");"password"===i.attr("type")?(i.attr("type","text"),t.addClass("yith-password-eye-closed")):(i.attr("type","password"),t.removeClass("yith-password-eye-closed"))}),e(document).on("select2:open",function(t){e(t.target).closest(".yith-plugin-ui").length&&e(".select2-results").closest(".select2-container").addClass("yith-plugin-fw-select2-container")});var t={selectors:{wrapper:".yith-plugin-fw-dimensions",units:{wrapper:".yith-plugin-fw-dimensions__units",single:".yith-plugin-fw-dimensions__unit",value:".yith-plugin-fw-dimensions__unit__value",selectedClass:"yith-plugin-fw-dimensions__unit--selected"},linked:{button:".yith-plugin-fw-dimensions__linked",value:".yith-plugin-fw-dimensions__linked__value",wrapperActiveClass:"yith-plugin-fw-dimensions--linked-active"},dimensions:{number:".yith-plugin-fw-dimensions__dimension__number"}},init:function(){var i=t;e(document).on("click",i.selectors.units.single,i.unitChange),e(document).on("click",i.selectors.linked.button,i.linkedChange),e(document).on("change keyup",i.selectors.dimensions.number,i.numberChange)},unitChange:function(i){var n=e(this).closest(t.selectors.units.single),a=n.closest(t.selectors.units.wrapper),l=a.find(t.selectors.units.single),o=a.find(t.selectors.units.value).first(),s=n.data("value");l.removeClass(t.selectors.units.selectedClass),n.addClass(t.selectors.units.selectedClass),o.val(s)},linkedChange:function(){var i=e(this).closest(t.selectors.linked.button),n=i.closest(t.selectors.wrapper),a=i.find(t.selectors.linked.value);"yes"===a.val()?(n.removeClass(t.selectors.linked.wrapperActiveClass),a.val("no")):(n.addClass(t.selectors.linked.wrapperActiveClass),a.val("yes"),n.find(t.selectors.dimensions.number).first().trigger("change"))},numberChange:function(i){var n=e(this).closest(t.selectors.dimensions.number),a=n.closest(t.selectors.wrapper);a.hasClass(t.selectors.linked.wrapperActiveClass)&&a.find(t.selectors.dimensions.number).val(n.val())}};t.init();e(document).on("click",".yith-plugin-fw-copy-to-clipboard__copy",function(){var t,i=e(this).closest(".yith-plugin-fw-copy-to-clipboard"),n=i.find(".yith-plugin-fw-copy-to-clipboard__field"),a=i.find(".yith-plugin-fw-copy-to-clipboard__tip"),l=i.data("tip-timeout");l&&clearTimeout(l),n.select(),document.execCommand("copy"),(t="getSelection"in window&&window.getSelection())?"empty"in t?t.empty():"removeAllRanges"in t&&t.removeAllRanges():"selection"in document&&document.selection.empty(),a.fadeIn(400),l=setTimeout(function(){a.fadeOut(400)},1500),i.data("tip-timeout",l)})}(jQuery);
|
plugin-fw/includes/class-yit-assets.php
CHANGED
@@ -55,7 +55,7 @@ if ( ! class_exists( 'YIT_Assets' ) ) {
|
|
55 |
* Register common scripts
|
56 |
*/
|
57 |
public function register_common_scripts() {
|
58 |
-
wp_register_style( 'yith-plugin-fw-icon-font', YIT_CORE_PLUGIN_URL . '/assets/css/yith-icon
|
59 |
wp_register_style( 'yith-plugin-fw-elementor', YIT_CORE_PLUGIN_URL . '/assets/css/elementor.css', array(), $this->version );
|
60 |
}
|
61 |
|
55 |
* Register common scripts
|
56 |
*/
|
57 |
public function register_common_scripts() {
|
58 |
+
wp_register_style( 'yith-plugin-fw-icon-font', YIT_CORE_PLUGIN_URL . '/assets/css/yith-icon.css', array(), $this->version );
|
59 |
wp_register_style( 'yith-plugin-fw-elementor', YIT_CORE_PLUGIN_URL . '/assets/css/elementor.css', array(), $this->version );
|
60 |
}
|
61 |
|
plugin-fw/init.php
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Framework Name: YIT Plugin Framework
|
4 |
-
* Version: 3.6.
|
5 |
* Author: YITH
|
6 |
* Text Domain: yith-plugin-fw
|
7 |
* Domain Path: /languages/
|
8 |
*
|
9 |
* @author YITH
|
10 |
-
* @version 3.6.
|
11 |
* @package YITH\PluginFramework
|
12 |
*/
|
13 |
|
1 |
<?php
|
2 |
/**
|
3 |
* Framework Name: YIT Plugin Framework
|
4 |
+
* Version: 3.6.2
|
5 |
* Author: YITH
|
6 |
* Text Domain: yith-plugin-fw
|
7 |
* Domain Path: /languages/
|
8 |
*
|
9 |
* @author YITH
|
10 |
+
* @version 3.6.2
|
11 |
* @package YITH\PluginFramework
|
12 |
*/
|
13 |
|
plugin-fw/languages/yith-plugin-fw-el.mo
CHANGED
Binary file
|
plugin-fw/languages/yith-plugin-fw-el.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
"PO-Revision-Date: 2021-02-11 18:07:46+0000\n"
|
9 |
"Language: el_GR\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -647,6 +647,18 @@ msgctxt "Privacy Policy Content"
|
|
647 |
msgid "Payments"
|
648 |
msgstr "Πληρωμές"
|
649 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
650 |
#: templates/fields/dimensions.php:13
|
651 |
msgctxt "Position in the \"Dimensions\" field"
|
652 |
msgid "Top"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-03-05 09:22:31+00:00\n"
|
8 |
"PO-Revision-Date: 2021-02-11 18:07:46+0000\n"
|
9 |
"Language: el_GR\n"
|
10 |
"MIME-Version: 1.0\n"
|
647 |
msgid "Payments"
|
648 |
msgstr "Πληρωμές"
|
649 |
|
650 |
+
#: templates/fields/copy-to-clipboard.php:41
|
651 |
+
#, fuzzy
|
652 |
+
msgctxt "Copy-to-clipboard message"
|
653 |
+
msgid "Copied!"
|
654 |
+
msgstr "Έγινε αντιγραφή!"
|
655 |
+
|
656 |
+
#: templates/fields/copy-to-clipboard.php:45
|
657 |
+
#, fuzzy
|
658 |
+
msgctxt "Copy-to-clipboard button text"
|
659 |
+
msgid "Copy"
|
660 |
+
msgstr "Αντιγραφή Κώδικα"
|
661 |
+
|
662 |
#: templates/fields/dimensions.php:13
|
663 |
msgctxt "Position in the \"Dimensions\" field"
|
664 |
msgid "Top"
|
plugin-fw/languages/yith-plugin-fw-es_ES.mo
CHANGED
Binary file
|
plugin-fw/languages/yith-plugin-fw-es_ES.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
"PO-Revision-Date: 2021-02-15 20:26:24+0000\n"
|
9 |
"Language: es\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -651,6 +651,18 @@ msgctxt "Privacy Policy Content"
|
|
651 |
msgid "Payments"
|
652 |
msgstr "Pagos"
|
653 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
654 |
#: templates/fields/dimensions.php:13
|
655 |
msgctxt "Position in the \"Dimensions\" field"
|
656 |
msgid "Top"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-03-05 09:22:31+00:00\n"
|
8 |
"PO-Revision-Date: 2021-02-15 20:26:24+0000\n"
|
9 |
"Language: es\n"
|
10 |
"MIME-Version: 1.0\n"
|
651 |
msgid "Payments"
|
652 |
msgstr "Pagos"
|
653 |
|
654 |
+
#: templates/fields/copy-to-clipboard.php:41
|
655 |
+
#, fuzzy
|
656 |
+
msgctxt "Copy-to-clipboard message"
|
657 |
+
msgid "Copied!"
|
658 |
+
msgstr "¡Copiado!"
|
659 |
+
|
660 |
+
#: templates/fields/copy-to-clipboard.php:45
|
661 |
+
#, fuzzy
|
662 |
+
msgctxt "Copy-to-clipboard button text"
|
663 |
+
msgid "Copy"
|
664 |
+
msgstr "Copiar código"
|
665 |
+
|
666 |
#: templates/fields/dimensions.php:13
|
667 |
msgctxt "Position in the \"Dimensions\" field"
|
668 |
msgid "Top"
|
plugin-fw/languages/yith-plugin-fw-it_IT.mo
CHANGED
Binary file
|
plugin-fw/languages/yith-plugin-fw-it_IT.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
-
"PO-Revision-Date: 2021-
|
9 |
"Language: it\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -587,7 +587,7 @@ msgstr "YITH"
|
|
587 |
#: includes/builders/elementor/class-yith-elementor-widget.php:252
|
588 |
msgctxt "Elementor Widget - section title"
|
589 |
msgid "%s - Options"
|
590 |
-
msgstr ""
|
591 |
|
592 |
#: includes/builders/gutenberg/class-yith-gutenberg.php:147
|
593 |
msgctxt "[gutenberg]: Category Name"
|
@@ -652,6 +652,18 @@ msgctxt "Privacy Policy Content"
|
|
652 |
msgid "Payments"
|
653 |
msgstr "Pagamenti"
|
654 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
655 |
#: templates/fields/dimensions.php:13
|
656 |
msgctxt "Position in the \"Dimensions\" field"
|
657 |
msgid "Top"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-03-05 09:22:31+00:00\n"
|
8 |
+
"PO-Revision-Date: 2021-03-01 21:20:50+0000\n"
|
9 |
"Language: it\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
587 |
#: includes/builders/elementor/class-yith-elementor-widget.php:252
|
588 |
msgctxt "Elementor Widget - section title"
|
589 |
msgid "%s - Options"
|
590 |
+
msgstr "%s - Opzioni"
|
591 |
|
592 |
#: includes/builders/gutenberg/class-yith-gutenberg.php:147
|
593 |
msgctxt "[gutenberg]: Category Name"
|
652 |
msgid "Payments"
|
653 |
msgstr "Pagamenti"
|
654 |
|
655 |
+
#: templates/fields/copy-to-clipboard.php:41
|
656 |
+
#, fuzzy
|
657 |
+
msgctxt "Copy-to-clipboard message"
|
658 |
+
msgid "Copied!"
|
659 |
+
msgstr "Copiato!"
|
660 |
+
|
661 |
+
#: templates/fields/copy-to-clipboard.php:45
|
662 |
+
#, fuzzy
|
663 |
+
msgctxt "Copy-to-clipboard button text"
|
664 |
+
msgid "Copy"
|
665 |
+
msgstr "Copia codice"
|
666 |
+
|
667 |
#: templates/fields/dimensions.php:13
|
668 |
msgctxt "Position in the \"Dimensions\" field"
|
669 |
msgid "Top"
|
plugin-fw/languages/yith-plugin-fw-nl_NL.mo
CHANGED
Binary file
|
plugin-fw/languages/yith-plugin-fw-nl_NL.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
-
"PO-Revision-Date: 2021-02
|
9 |
"Language: nl\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -146,6 +146,9 @@ msgid ""
|
|
146 |
"From now on, you can find all plugin options in YITH menu. Plugin "
|
147 |
"customization settings will be available as a new entry in YITH menu."
|
148 |
msgstr ""
|
|
|
|
|
|
|
149 |
|
150 |
#. translators: 1. YITH site link; 2. WordPress site link.
|
151 |
#: includes/class-yit-pointers.php:84 includes/class-yit-pointers.php:100
|
@@ -164,6 +167,11 @@ msgid ""
|
|
164 |
"WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) will be moved from "
|
165 |
"previous location to YITH menu."
|
166 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
167 |
|
168 |
#: includes/class-yith-dashboard.php:35
|
169 |
msgid "YITH Latest Updates"
|
@@ -576,7 +584,7 @@ msgstr "YITH"
|
|
576 |
#: includes/builders/elementor/class-yith-elementor-widget.php:252
|
577 |
msgctxt "Elementor Widget - section title"
|
578 |
msgid "%s - Options"
|
579 |
-
msgstr ""
|
580 |
|
581 |
#: includes/builders/gutenberg/class-yith-gutenberg.php:147
|
582 |
msgctxt "[gutenberg]: Category Name"
|
@@ -640,6 +648,18 @@ msgctxt "Privacy Policy Content"
|
|
640 |
msgid "Payments"
|
641 |
msgstr "Betalingen"
|
642 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
643 |
#: templates/fields/dimensions.php:13
|
644 |
msgctxt "Position in the \"Dimensions\" field"
|
645 |
msgid "Top"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-03-05 09:22:31+00:00\n"
|
8 |
+
"PO-Revision-Date: 2021-03-02 10:41:26+0000\n"
|
9 |
"Language: nl\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
146 |
"From now on, you can find all plugin options in YITH menu. Plugin "
|
147 |
"customization settings will be available as a new entry in YITH menu."
|
148 |
msgstr ""
|
149 |
+
"Vanaf nu kun je alle plugin opties vinden in het YITH Plugins menu. Plugin "
|
150 |
+
"aanpassingen instellingen zullen beschikbaar zijn als nieuwe toegang in het "
|
151 |
+
"YITH menu."
|
152 |
|
153 |
#. translators: 1. YITH site link; 2. WordPress site link.
|
154 |
#: includes/class-yit-pointers.php:84 includes/class-yit-pointers.php:100
|
167 |
"WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) will be moved from "
|
168 |
"previous location to YITH menu."
|
169 |
msgstr ""
|
170 |
+
"Vanaf nu kun je het optiepaneel van YITH plugins vinden in het YITH menu. "
|
171 |
+
"Elke keer dat een van onze plugins wordt toegevoegd, wordt er een nieuw item "
|
172 |
+
"aan dit menu toegevoegd. Bijvoorbeeld na de update worden plugin opties "
|
173 |
+
"(zoals voor YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, enz.) "
|
174 |
+
"verplaatst van de vorige locatie naar het YITH menu."
|
175 |
|
176 |
#: includes/class-yith-dashboard.php:35
|
177 |
msgid "YITH Latest Updates"
|
584 |
#: includes/builders/elementor/class-yith-elementor-widget.php:252
|
585 |
msgctxt "Elementor Widget - section title"
|
586 |
msgid "%s - Options"
|
587 |
+
msgstr "%s - Opties"
|
588 |
|
589 |
#: includes/builders/gutenberg/class-yith-gutenberg.php:147
|
590 |
msgctxt "[gutenberg]: Category Name"
|
648 |
msgid "Payments"
|
649 |
msgstr "Betalingen"
|
650 |
|
651 |
+
#: templates/fields/copy-to-clipboard.php:41
|
652 |
+
#, fuzzy
|
653 |
+
msgctxt "Copy-to-clipboard message"
|
654 |
+
msgid "Copied!"
|
655 |
+
msgstr "Gekopieerd!"
|
656 |
+
|
657 |
+
#: templates/fields/copy-to-clipboard.php:45
|
658 |
+
#, fuzzy
|
659 |
+
msgctxt "Copy-to-clipboard button text"
|
660 |
+
msgid "Copy"
|
661 |
+
msgstr "Code kopiëren"
|
662 |
+
|
663 |
#: templates/fields/dimensions.php:13
|
664 |
msgctxt "Position in the \"Dimensions\" field"
|
665 |
msgid "Top"
|
plugin-fw/languages/yith-plugin-fw.pot
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -625,6 +625,16 @@ msgctxt "Privacy Policy Content"
|
|
625 |
msgid "Payments"
|
626 |
msgstr ""
|
627 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
628 |
#: templates/fields/dimensions.php:13
|
629 |
msgctxt "Position in the \"Dimensions\" field"
|
630 |
msgid "Top"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-03-05 09:22:31+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
625 |
msgid "Payments"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: templates/fields/copy-to-clipboard.php:41
|
629 |
+
msgctxt "Copy-to-clipboard message"
|
630 |
+
msgid "Copied!"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: templates/fields/copy-to-clipboard.php:45
|
634 |
+
msgctxt "Copy-to-clipboard button text"
|
635 |
+
msgid "Copy"
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
#: templates/fields/dimensions.php:13
|
639 |
msgctxt "Position in the \"Dimensions\" field"
|
640 |
msgid "Top"
|
plugin-fw/templates/fields/copy-to-clipboard.php
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* The Template for displaying the 'copy-to-clipboard'
|
4 |
+
*
|
5 |
+
* @var array $field The field.
|
6 |
+
*
|
7 |
+
* @package YITH\PluginFramework\Templates\Fields\Resources
|
8 |
+
* @since 3.6.2
|
9 |
+
*/
|
10 |
+
|
11 |
+
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
|
12 |
+
|
13 |
+
list ( $field_id, $class, $name, $value, $force_value, $readonly, $std, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'force_value', 'readonly', 'std', 'custom_attributes', 'data' );
|
14 |
+
|
15 |
+
$readonly = isset( $readonly ) ? ! ! $readonly : true;
|
16 |
+
$wrapper_id = ! ! $field_id ? $field_id . '-wrapper' : '';
|
17 |
+
$wrapper_class = 'yith-plugin-fw-copy-to-clipboard';
|
18 |
+
if ( $readonly ) {
|
19 |
+
$wrapper_class .= ' yith-plugin-fw-copy-to-clipboard--readonly';
|
20 |
+
}
|
21 |
+
if ( isset( $force_value ) ) {
|
22 |
+
$value = $force_value;
|
23 |
+
}
|
24 |
+
?>
|
25 |
+
<div id="<?php echo esc_attr( $wrapper_id ); ?>" class="<?php echo esc_attr( $wrapper_class ); ?>">
|
26 |
+
|
27 |
+
<div class="yith-plugin-fw-copy-to-clipboard__field-wrap">
|
28 |
+
<input type="text"
|
29 |
+
id="<?php echo esc_attr( $field_id ); ?>"
|
30 |
+
name="<?php echo esc_attr( $name ); ?>"
|
31 |
+
class="yith-plugin-fw-copy-to-clipboard__field <?php echo esc_attr( $class ); ?>"
|
32 |
+
value="<?php echo esc_attr( $value ); ?>"
|
33 |
+
|
34 |
+
<?php if ( $readonly ) : ?>
|
35 |
+
readonly
|
36 |
+
<?php endif; ?>
|
37 |
+
|
38 |
+
<?php echo $custom_attributes; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
|
39 |
+
<?php echo isset( $data ) ? yith_plugin_fw_html_data_to_string( $data ) : ''; ?>
|
40 |
+
>
|
41 |
+
<div class="yith-plugin-fw-copy-to-clipboard__tip"><?php echo esc_html_x( 'Copied!', 'Copy-to-clipboard message', 'yith-plugin-fw' ); ?></div>
|
42 |
+
</div>
|
43 |
+
<div class="yith-plugin-fw-copy-to-clipboard__copy">
|
44 |
+
<i class="yith-plugin-fw-copy-to-clipboard__copy__icon yith-icon yith-icon-copy"></i>
|
45 |
+
<span class="yith-plugin-fw-copy-to-clipboard__copy__text"><?php echo esc_html_x( 'Copy', 'Copy-to-clipboard button text', 'yith-plugin-fw' ); ?></span>
|
46 |
+
</div>
|
47 |
+
</div>
|
plugin-fw/templates/fields/inline-fields.php
CHANGED
@@ -12,7 +12,7 @@ list ( $field_id, $name, $class, $fields, $value ) = yith_plugin_fw_extract( $fi
|
|
12 |
|
13 |
$class = ! ! $class ? $class : '';
|
14 |
$value = maybe_unserialize( $value );
|
15 |
-
$allowed_types = array( 'select', 'select-buttons', 'number', 'text', 'slider', 'hidden', 'html' );
|
16 |
$default_args = array( 'type' => 'select' );
|
17 |
?>
|
18 |
<?php if ( ! empty( $fields ) && is_array( $fields ) ) : ?>
|
12 |
|
13 |
$class = ! ! $class ? $class : '';
|
14 |
$value = maybe_unserialize( $value );
|
15 |
+
$allowed_types = array( 'select', 'select-buttons', 'number', 'text', 'slider', 'hidden', 'html', 'datepicker' );
|
16 |
$default_args = array( 'type' => 'select' );
|
17 |
?>
|
18 |
<?php if ( ! empty( $fields ) && is_array( $fields ) ) : ?>
|
plugin-fw/yit-functions.php
CHANGED
@@ -1634,3 +1634,28 @@ if ( ! function_exists( 'yith_plugin_fw_register_elementor_widgets' ) ) {
|
|
1634 |
}
|
1635 |
}
|
1636 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1634 |
}
|
1635 |
}
|
1636 |
}
|
1637 |
+
|
1638 |
+
if ( ! function_exists( 'yith_plugin_fw_copy_to_clipboard' ) ) {
|
1639 |
+
/**
|
1640 |
+
* Print a field with a button to copy its content to clipboard
|
1641 |
+
*
|
1642 |
+
* @param string $value The text to be shown.
|
1643 |
+
* @param array $field The field attributes.
|
1644 |
+
*
|
1645 |
+
* @since 3.6.2
|
1646 |
+
*/
|
1647 |
+
function yith_plugin_fw_copy_to_clipboard( $value, $field = array() ) {
|
1648 |
+
$defaults = array(
|
1649 |
+
'id' => '',
|
1650 |
+
'value' => $value,
|
1651 |
+
);
|
1652 |
+
$field = wp_parse_args( $field, $defaults );
|
1653 |
+
$field['type'] = 'copy-to-clipboard';
|
1654 |
+
|
1655 |
+
// Enqueue style and script if not enqueued.
|
1656 |
+
wp_enqueue_style( 'yith-plugin-fw-fields' );
|
1657 |
+
wp_enqueue_script( 'yith-plugin-fw-fields' );
|
1658 |
+
|
1659 |
+
yith_plugin_fw_get_field( $field, true, false );
|
1660 |
+
}
|
1661 |
+
}
|