Version Description
- Fixed: Minor bugs
Download this release
Release Info
Developer | yithemes |
Plugin | YITH WooCommerce Catalog Mode |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.1
- assets/images/01-bg.png +0 -0
- assets/images/01-icon.png +0 -0
- assets/images/01.png +0 -0
- assets/images/02-bg.png +0 -0
- assets/images/02-icon.png +0 -0
- assets/images/02.png +0 -0
- assets/images/03-bg.png +0 -0
- assets/images/03-icon.png +0 -0
- assets/images/03.png +0 -0
- assets/images/04-bg.png +0 -0
- assets/images/04-icon.png +0 -0
- assets/images/04.png +0 -0
- assets/images/05-bg.png +0 -0
- assets/images/05-icon.png +0 -0
- assets/images/05.png +0 -0
- assets/images/upgrade.png +0 -0
- assets/images/yith-woocommerce-catalog-mode.jpg +0 -0
- class.yith-woocommerce-catalog-mode.php +42 -45
- init.php +2 -2
- languages/default.po +134 -111
- languages/ywctm.pot +136 -111
- plugin-fw/assets/css/yit-plugin-panel.css +17 -1
- plugin-fw/lib/yit-cpt-unlimited.php +3 -3
- plugin-fw/lib/yit-metabox.php +1 -1
- plugin-fw/lib/yit-plugin-panel-wc.php +44 -2
- plugin-fw/lib/yit-plugin-panel.php +9 -4
- plugin-fw/lib/yit-plugin-subpanel.php +2 -2
- plugin-fw/lib/yit-pointers.php +2 -2
- plugin-fw/lib/yit-upgrade.php +3 -3
- plugin-fw/licence/lib/yit-licence.php +2 -2
- plugin-fw/templates/metaboxes/types/contactform.php +12 -12
- plugin-fw/templates/metaboxes/types/sidebar-layout.php +1 -1
- plugin-fw/templates/panel/woocommerce/woocommerce-form.php +2 -2
- plugin-fw/yit-functions.php +1 -1
- plugin-options/settings-options.php +4 -4
- readme.txt +4 -4
- templates/admin/premium.php +296 -0
assets/images/01-bg.png
ADDED
Binary file
|
assets/images/01-icon.png
ADDED
Binary file
|
assets/images/01.png
ADDED
Binary file
|
assets/images/02-bg.png
ADDED
Binary file
|
assets/images/02-icon.png
ADDED
Binary file
|
assets/images/02.png
ADDED
Binary file
|
assets/images/03-bg.png
ADDED
Binary file
|
assets/images/03-icon.png
ADDED
Binary file
|
assets/images/03.png
ADDED
Binary file
|
assets/images/04-bg.png
ADDED
Binary file
|
assets/images/04-icon.png
ADDED
Binary file
|
assets/images/04.png
ADDED
Binary file
|
assets/images/05-bg.png
ADDED
Binary file
|
assets/images/05-icon.png
ADDED
Binary file
|
assets/images/05.png
ADDED
Binary file
|
assets/images/upgrade.png
ADDED
Binary file
|
assets/images/yith-woocommerce-catalog-mode.jpg
ADDED
Binary file
|
class.yith-woocommerce-catalog-mode.php
CHANGED
@@ -75,23 +75,18 @@ class YITH_WC_Catalog_Mode {
|
|
75 |
|
76 |
if ( ! is_admin() ) {
|
77 |
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
|
82 |
-
if ( get_option( 'ywctm_hide_add_to_cart_loop' ) == 'yes' ) {
|
83 |
-
add_action( 'woocommerce_after_shop_loop_item',array( $this, 'hide_add_to_cart_loop' ), 5 );
|
84 |
-
}
|
85 |
-
|
86 |
-
if ( get_option( 'ywctm_hide_cart_header' ) == 'yes' ) {
|
87 |
-
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles' ) );
|
88 |
-
}
|
89 |
}
|
90 |
|
91 |
}
|
92 |
-
|
93 |
-
else {
|
|
|
94 |
self::reactivate_hidden_pages();
|
|
|
95 |
}
|
96 |
|
97 |
}
|
@@ -99,26 +94,26 @@ class YITH_WC_Catalog_Mode {
|
|
99 |
/**
|
100 |
* Hides "Add to cart" button, if not excluded, from single product page
|
101 |
*
|
102 |
-
* @since 1.0
|
103 |
* @author Alberto Ruggiero
|
104 |
* @return void
|
105 |
*/
|
106 |
-
public function hide_add_to_cart_single(){
|
107 |
-
global $post;
|
108 |
-
|
109 |
-
$exclude_catalog = get_post_meta( $post->ID, '_ywctm_exclude_catalog_mode', true );
|
110 |
-
$enable_exclusion = get_option( 'ywctm_exclude_hide_add_to_cart' );
|
111 |
|
112 |
-
if (
|
113 |
|
114 |
-
|
115 |
|
116 |
-
|
|
|
117 |
|
118 |
-
if ( $
|
119 |
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
|
|
|
|
|
|
|
|
|
120 |
}
|
121 |
-
|
122 |
}
|
123 |
|
124 |
}
|
@@ -126,27 +121,27 @@ class YITH_WC_Catalog_Mode {
|
|
126 |
/**
|
127 |
* Hides "Add to cart" button, if not excluded, from loop page
|
128 |
*
|
129 |
-
* @since 1.0
|
130 |
* @author Alberto Ruggiero
|
131 |
* @return void
|
132 |
*/
|
133 |
-
public function hide_add_to_cart_loop(){
|
134 |
-
global $post;
|
135 |
-
|
136 |
-
$exclude_catalog = get_post_meta( $post->ID, '_ywctm_exclude_catalog_mode', true );
|
137 |
-
$enable_exclusion = get_option( 'ywctm_exclude_hide_add_to_cart' );
|
138 |
|
139 |
-
if (
|
140 |
|
141 |
-
|
142 |
|
143 |
-
|
|
|
144 |
|
145 |
-
if ( $
|
146 |
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
|
147 |
-
}
|
148 |
-
|
149 |
-
|
|
|
|
|
|
|
150 |
}
|
151 |
}
|
152 |
|
@@ -155,22 +150,24 @@ class YITH_WC_Catalog_Mode {
|
|
155 |
/**
|
156 |
* Enqueue css file
|
157 |
*
|
158 |
-
* @since 1.0
|
159 |
* @author Alberto Ruggiero
|
160 |
* @return void
|
161 |
*/
|
162 |
public function enqueue_styles() {
|
163 |
-
|
|
|
|
|
164 |
}
|
165 |
|
166 |
/**
|
167 |
* Hides Cart and Checkout pages if option selected, otherwise shows them
|
168 |
*
|
169 |
-
* @since 1.0
|
170 |
* @author Alberto Ruggiero
|
171 |
* @return void
|
172 |
*/
|
173 |
-
public function check_pages_status(){
|
174 |
|
175 |
$pages_to_check = array(
|
176 |
get_option( 'woocommerce_cart_page_id' ),
|
@@ -241,9 +238,9 @@ class YITH_WC_Catalog_Mode {
|
|
241 |
|
242 |
if ( defined( 'YWCTM_PREMIUM' ) ) {
|
243 |
$admin_tabs['premium'] = __( 'Premium Settings', 'ywctm' );
|
244 |
-
$admin_tabs['exclusions'] = __( '
|
245 |
} else {
|
246 |
-
|
247 |
}
|
248 |
|
249 |
$args = array(
|
@@ -267,7 +264,7 @@ class YITH_WC_Catalog_Mode {
|
|
267 |
*
|
268 |
* Load the premium tab template on admin page
|
269 |
*
|
270 |
-
* @since 1.0
|
271 |
* @author Andrea Grillo <andrea.grillo@yithemes.com>
|
272 |
* @return void
|
273 |
*/
|
@@ -296,7 +293,7 @@ class YITH_WC_Catalog_Mode {
|
|
296 |
$links[] = '<a href="' . admin_url( "admin.php?page={$this->_panel_page}" ) . '">' . __( 'Settings', 'ywctm' ) . '</a>';
|
297 |
|
298 |
if ( defined( 'YWCTM_FREE_INIT' ) ) {
|
299 |
-
|
300 |
}
|
301 |
|
302 |
return $links;
|
@@ -345,7 +342,7 @@ class YITH_WC_Catalog_Mode {
|
|
345 |
'target' => '#toplevel_page_yit_plugin_panel',
|
346 |
'content' => sprintf( '<h3> %s </h3> <p> %s </p>',
|
347 |
__( 'YITH WooCommerce Catalog Mode', 'ywctm' ),
|
348 |
-
__( 'In
|
349 |
),
|
350 |
'position' => array( 'edge' => 'left', 'align' => 'center' ),
|
351 |
'init' => defined( 'YWCTM_PREMIUM' ) ? YWCTM_INIT : YWCTM_FREE_INIT
|
75 |
|
76 |
if ( ! is_admin() ) {
|
77 |
|
78 |
+
add_action( 'woocommerce_single_product_summary', array( $this, 'hide_add_to_cart_single' ), 10 );
|
79 |
+
add_action( 'woocommerce_after_shop_loop_item', array( $this, 'hide_add_to_cart_loop' ), 5 );
|
80 |
+
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles' ) );
|
81 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
}
|
83 |
|
84 |
}
|
85 |
+
|
86 |
+
} else {
|
87 |
+
|
88 |
self::reactivate_hidden_pages();
|
89 |
+
|
90 |
}
|
91 |
|
92 |
}
|
94 |
/**
|
95 |
* Hides "Add to cart" button, if not excluded, from single product page
|
96 |
*
|
97 |
+
* @since 1.0.0
|
98 |
* @author Alberto Ruggiero
|
99 |
* @return void
|
100 |
*/
|
101 |
+
public function hide_add_to_cart_single() {
|
|
|
|
|
|
|
|
|
102 |
|
103 |
+
if ( get_option( 'ywctm_hide_add_to_cart_single' ) == 'yes' ) {
|
104 |
|
105 |
+
global $post;
|
106 |
|
107 |
+
$exclude_catalog = get_post_meta( $post->ID, '_ywctm_exclude_catalog_mode', true );
|
108 |
+
$enable_exclusion = get_option( 'ywctm_exclude_hide_add_to_cart' );
|
109 |
|
110 |
+
if ( $enable_exclusion == '' || $enable_exclusion == 'no' ) {
|
111 |
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
|
112 |
+
} else {
|
113 |
+
if ( $exclude_catalog == '' || $exclude_catalog == 'no' ) {
|
114 |
+
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
|
115 |
+
}
|
116 |
}
|
|
|
117 |
}
|
118 |
|
119 |
}
|
121 |
/**
|
122 |
* Hides "Add to cart" button, if not excluded, from loop page
|
123 |
*
|
124 |
+
* @since 1.0.0
|
125 |
* @author Alberto Ruggiero
|
126 |
* @return void
|
127 |
*/
|
128 |
+
public function hide_add_to_cart_loop() {
|
|
|
|
|
|
|
|
|
129 |
|
130 |
+
if ( get_option( 'ywctm_hide_add_to_cart_loop' ) == 'yes' ) {
|
131 |
|
132 |
+
global $post;
|
133 |
|
134 |
+
$exclude_catalog = get_post_meta( $post->ID, '_ywctm_exclude_catalog_mode', true );
|
135 |
+
$enable_exclusion = get_option( 'ywctm_exclude_hide_add_to_cart' );
|
136 |
|
137 |
+
if ( $enable_exclusion == '' || $enable_exclusion == 'no' ) {
|
138 |
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
|
139 |
+
} else {
|
140 |
+
if ( $exclude_catalog == '' || $exclude_catalog == 'no' ) {
|
141 |
+
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
|
142 |
+
} else {
|
143 |
+
add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
|
144 |
+
}
|
145 |
}
|
146 |
}
|
147 |
|
150 |
/**
|
151 |
* Enqueue css file
|
152 |
*
|
153 |
+
* @since 1.0.0
|
154 |
* @author Alberto Ruggiero
|
155 |
* @return void
|
156 |
*/
|
157 |
public function enqueue_styles() {
|
158 |
+
if ( get_option( 'ywctm_hide_cart_header' ) == 'yes' ) {
|
159 |
+
wp_enqueue_style( 'ywctm-style', YWCTM_ASSETS_URL . '/css/yith-catalog-mode.css' );
|
160 |
+
}
|
161 |
}
|
162 |
|
163 |
/**
|
164 |
* Hides Cart and Checkout pages if option selected, otherwise shows them
|
165 |
*
|
166 |
+
* @since 1.0.0
|
167 |
* @author Alberto Ruggiero
|
168 |
* @return void
|
169 |
*/
|
170 |
+
public function check_pages_status() {
|
171 |
|
172 |
$pages_to_check = array(
|
173 |
get_option( 'woocommerce_cart_page_id' ),
|
238 |
|
239 |
if ( defined( 'YWCTM_PREMIUM' ) ) {
|
240 |
$admin_tabs['premium'] = __( 'Premium Settings', 'ywctm' );
|
241 |
+
$admin_tabs['exclusions'] = __( 'Exclusion List', 'ywctm' );
|
242 |
} else {
|
243 |
+
$admin_tabs['premium-landing'] = __( 'Premium Version', 'ywctm' );
|
244 |
}
|
245 |
|
246 |
$args = array(
|
264 |
*
|
265 |
* Load the premium tab template on admin page
|
266 |
*
|
267 |
+
* @since 1.0.0
|
268 |
* @author Andrea Grillo <andrea.grillo@yithemes.com>
|
269 |
* @return void
|
270 |
*/
|
293 |
$links[] = '<a href="' . admin_url( "admin.php?page={$this->_panel_page}" ) . '">' . __( 'Settings', 'ywctm' ) . '</a>';
|
294 |
|
295 |
if ( defined( 'YWCTM_FREE_INIT' ) ) {
|
296 |
+
$links[] = '<a href="' . $this->_premium_landing . '" target="_blank">' . __( 'Premium Version', 'ywctm' ) . '</a>';
|
297 |
}
|
298 |
|
299 |
return $links;
|
342 |
'target' => '#toplevel_page_yit_plugin_panel',
|
343 |
'content' => sprintf( '<h3> %s </h3> <p> %s </p>',
|
344 |
__( 'YITH WooCommerce Catalog Mode', 'ywctm' ),
|
345 |
+
__( 'In YIT Plugins tab you can find YITH WooCommerce Catalog Mode options. From this menu you can access all settings of YITH plugins activated.', 'ywctm' ) . '<br>' . $premium_message
|
346 |
),
|
347 |
'position' => array( 'edge' => 'left', 'align' => 'center' ),
|
348 |
'init' => defined( 'YWCTM_PREMIUM' ) ? YWCTM_INIT : YWCTM_FREE_INIT
|
init.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://yithemes.com/themes/plugins/yith-woocommerce-catalog-mode/
|
|
5 |
Description: YITH Woocommerce Catalog Mode allows you to disable shop functions.
|
6 |
Author: Yithemes
|
7 |
Text Domain: ywctm
|
8 |
-
Version: 1.0.
|
9 |
Author URI: http://yithemes.com/
|
10 |
*/
|
11 |
|
@@ -34,7 +34,7 @@ function ywctm_install_free_admin_notice() {
|
|
34 |
}
|
35 |
|
36 |
if ( ! defined( 'YWCTM_VERSION' ) ) {
|
37 |
-
define( 'YWCTM_VERSION', '1.0.
|
38 |
}
|
39 |
|
40 |
if ( ! defined( 'YWCTM_FREE_INIT' ) ) {
|
5 |
Description: YITH Woocommerce Catalog Mode allows you to disable shop functions.
|
6 |
Author: Yithemes
|
7 |
Text Domain: ywctm
|
8 |
+
Version: 1.0.1
|
9 |
Author URI: http://yithemes.com/
|
10 |
*/
|
11 |
|
34 |
}
|
35 |
|
36 |
if ( ! defined( 'YWCTM_VERSION' ) ) {
|
37 |
+
define( 'YWCTM_VERSION', '1.0.1' );
|
38 |
}
|
39 |
|
40 |
if ( ! defined( 'YWCTM_FREE_INIT' ) ) {
|
languages/default.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YIT WooCommerce Catalog Mode\n"
|
4 |
-
"POT-Creation-Date: 2015-02
|
5 |
-
"PO-Revision-Date: 2015-02
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
14 |
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
15 |
"_nx_noop:4c,1,2\n"
|
@@ -18,63 +18,66 @@ msgstr ""
|
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
|
21 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
22 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
23 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1048
|
24 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1196
|
25 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1202
|
26 |
#: ../plugin-fw/lib/yit-plugin-panel.php:62
|
27 |
-
#: ../plugin-options/settings-options.php:41
|
28 |
msgid "Settings"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
32 |
msgid "Premium Settings"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
36 |
-
|
37 |
-
msgid "Catalog Mode"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
|
|
41 |
msgid "Premium Version"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
|
|
|
|
|
|
|
|
|
|
45 |
msgid "Plugin Documentation"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
49 |
msgid ""
|
50 |
"YITH WooCommerce Catalog Mode is available in an outstanding PREMIUM version "
|
51 |
"with many new options, discover it now."
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
55 |
msgid "Premium version"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
59 |
#: ../plugin-options/settings-options.php:19
|
60 |
#: ../plugin-options/settings-options.php:25
|
61 |
msgid "YITH WooCommerce Catalog Mode"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
65 |
msgid ""
|
66 |
-
"In
|
67 |
-
"
|
68 |
-
"that you have activated."
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: ../init.php:
|
72 |
msgid ""
|
73 |
"YITH WooCommerce Catalog Mode is enabled but not effective. It requires "
|
74 |
"Woocommerce in order to work."
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: ../init.php:
|
78 |
msgid ""
|
79 |
"You can't activate the free version of YITH WooCommerce Catalog Mode while "
|
80 |
"you are using the premium one."
|
@@ -201,7 +204,7 @@ msgid "Type"
|
|
201 |
msgstr ""
|
202 |
|
203 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1052
|
204 |
-
msgid "
|
205 |
msgstr ""
|
206 |
|
207 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1058
|
@@ -209,27 +212,25 @@ msgid "Rewrite"
|
|
209 |
msgstr ""
|
210 |
|
211 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1059
|
212 |
-
msgid "
|
|
|
|
|
213 |
msgstr ""
|
214 |
|
215 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1064
|
216 |
-
msgid "Label Singular"
|
217 |
msgstr ""
|
218 |
|
219 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1065
|
220 |
-
msgid ""
|
221 |
-
"Set the label in singular to use for each label (the title of portfolio if "
|
222 |
-
"empty)"
|
223 |
msgstr ""
|
224 |
|
225 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1070
|
226 |
-
msgid "Label Plural"
|
227 |
msgstr ""
|
228 |
|
229 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1071
|
230 |
-
msgid ""
|
231 |
-
"Set the label in plural to use for each label (the title of portfolio if "
|
232 |
-
"empty)"
|
233 |
msgstr ""
|
234 |
|
235 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1076
|
@@ -238,10 +239,9 @@ msgstr ""
|
|
238 |
|
239 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1077
|
240 |
msgid ""
|
241 |
-
"If you want to use
|
242 |
-
"
|
243 |
-
"
|
244 |
-
"restriction)."
|
245 |
msgstr ""
|
246 |
|
247 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1082
|
@@ -249,7 +249,7 @@ msgid "Taxonomy Rewrite"
|
|
249 |
msgstr ""
|
250 |
|
251 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1083
|
252 |
-
msgid "Set
|
253 |
msgstr ""
|
254 |
|
255 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1088
|
@@ -257,7 +257,7 @@ msgid "Single layout"
|
|
257 |
msgstr ""
|
258 |
|
259 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1089
|
260 |
-
msgid "
|
261 |
msgstr ""
|
262 |
|
263 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1130
|
@@ -271,7 +271,7 @@ msgstr ""
|
|
271 |
|
272 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1475
|
273 |
#, php-format
|
274 |
-
msgid "Show
|
275 |
msgstr ""
|
276 |
|
277 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1482
|
@@ -282,15 +282,15 @@ msgstr ""
|
|
282 |
|
283 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1631
|
284 |
#, php-format
|
285 |
-
msgid "Add %s
|
286 |
msgstr ""
|
287 |
|
288 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1633
|
289 |
msgid "Add with multiupload"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: ../plugin-fw/lib/yit-plugin-panel-wc.php:
|
293 |
-
msgid "The changes you made will be lost if you
|
294 |
msgstr ""
|
295 |
|
296 |
#: ../plugin-fw/lib/yit-plugin-panel.php:61
|
@@ -309,11 +309,9 @@ msgid "Save Changes"
|
|
309 |
msgstr ""
|
310 |
|
311 |
#: ../plugin-fw/lib/yit-plugin-panel.php:274
|
312 |
-
#: ../plugin-fw/lib/yit-plugin-subpanel.php:145
|
313 |
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:8
|
314 |
msgid ""
|
315 |
-
"If you continue with this action, you will reset all options
|
316 |
-
"page."
|
317 |
msgstr ""
|
318 |
|
319 |
#: ../plugin-fw/lib/yit-plugin-panel.php:276
|
@@ -325,12 +323,12 @@ msgstr ""
|
|
325 |
#: ../plugin-fw/lib/yit-plugin-panel.php:276
|
326 |
#: ../plugin-fw/lib/yit-plugin-subpanel.php:147
|
327 |
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
|
328 |
-
msgid "Are you sure
|
329 |
msgstr ""
|
330 |
|
331 |
#: ../plugin-fw/lib/yit-plugin-panel.php:410
|
332 |
msgid ""
|
333 |
-
"The element you have
|
334 |
msgstr ""
|
335 |
|
336 |
#: ../plugin-fw/lib/yit-plugin-panel.php:411
|
@@ -355,19 +353,25 @@ msgid "Database imported correctly."
|
|
355 |
msgstr ""
|
356 |
|
357 |
#: ../plugin-fw/lib/yit-plugin-panel.php:417
|
358 |
-
msgid "An error
|
359 |
msgstr ""
|
360 |
|
361 |
#: ../plugin-fw/lib/yit-plugin-panel.php:418
|
362 |
-
msgid "The file
|
363 |
msgstr ""
|
364 |
|
365 |
#: ../plugin-fw/lib/yit-plugin-panel.php:419
|
366 |
-
msgid "
|
367 |
msgstr ""
|
368 |
|
369 |
#: ../plugin-fw/lib/yit-plugin-panel.php:420
|
370 |
-
msgid "Sorting
|
|
|
|
|
|
|
|
|
|
|
|
|
371 |
msgstr ""
|
372 |
|
373 |
#: ../plugin-fw/lib/yit-pointers.php:70
|
@@ -376,10 +380,9 @@ msgstr ""
|
|
376 |
|
377 |
#: ../plugin-fw/lib/yit-pointers.php:71
|
378 |
msgid ""
|
379 |
-
"From now on, you can find all
|
380 |
-
"
|
381 |
-
"
|
382 |
-
"plugins, a new voice will be added to access to the customization settings."
|
383 |
msgstr ""
|
384 |
|
385 |
#: ../plugin-fw/lib/yit-pointers.php:73 ../plugin-fw/lib/yit-pointers.php:89
|
@@ -396,15 +399,14 @@ msgstr ""
|
|
396 |
|
397 |
#: ../plugin-fw/lib/yit-pointers.php:85
|
398 |
msgid ""
|
399 |
-
"From now on, you can find all
|
400 |
-
"
|
401 |
-
"
|
402 |
-
"
|
403 |
-
"
|
404 |
-
"options from the plugins (YITH WooCommerce Wishlist, YITH WooCommerce Ajax "
|
405 |
"Search, etc.)\n"
|
406 |
-
" will be
|
407 |
-
"
|
408 |
msgstr ""
|
409 |
|
410 |
#: ../plugin-fw/lib/yit-upgrade.php:119
|
@@ -421,7 +423,7 @@ msgstr ""
|
|
421 |
|
422 |
#: ../plugin-fw/lib/yit-upgrade.php:122
|
423 |
msgid ""
|
424 |
-
"please <a href=\"%activate_link%\">
|
425 |
msgstr ""
|
426 |
|
427 |
#: ../plugin-fw/lib/yit-upgrade.php:123
|
@@ -453,7 +455,7 @@ msgid ""
|
|
453 |
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
454 |
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
|
455 |
"have to activate the plugin on a single site of the network to benefit from "
|
456 |
-
"
|
457 |
msgstr ""
|
458 |
|
459 |
#: ../plugin-fw/lib/yit-upgrade.php:418
|
@@ -474,11 +476,12 @@ msgid ""
|
|
474 |
msgstr ""
|
475 |
|
476 |
#: ../plugin-fw/lib/yit-upgrade.php:493
|
477 |
-
msgid "You can't update plugins for this site."
|
478 |
msgstr ""
|
479 |
|
480 |
#: ../plugin-fw/lib/yit-upgrade.php:497
|
481 |
-
msgid "
|
|
|
482 |
msgstr ""
|
483 |
|
484 |
#: ../plugin-fw/lib/yit-upgrade.php:504
|
@@ -487,11 +490,11 @@ msgstr ""
|
|
487 |
|
488 |
#: ../plugin-fw/licence/lib/yit-licence.php:148
|
489 |
#, php-format
|
490 |
-
msgid "%field% field
|
491 |
msgstr ""
|
492 |
|
493 |
#: ../plugin-fw/licence/lib/yit-licence.php:149
|
494 |
-
msgid "%field_1% and %field_2% fields
|
495 |
msgstr ""
|
496 |
|
497 |
#: ../plugin-fw/licence/lib/yit-licence.php:150
|
@@ -507,11 +510,11 @@ msgid "Invalid licence key"
|
|
507 |
msgstr ""
|
508 |
|
509 |
#: ../plugin-fw/licence/lib/yit-licence.php:531
|
510 |
-
msgid "Software has been
|
511 |
msgstr ""
|
512 |
|
513 |
#: ../plugin-fw/licence/lib/yit-licence.php:532
|
514 |
-
msgid "
|
515 |
msgstr ""
|
516 |
|
517 |
#: ../plugin-fw/licence/lib/yit-licence.php:533
|
@@ -527,7 +530,7 @@ msgid "Licence key has expired"
|
|
527 |
msgstr ""
|
528 |
|
529 |
#: ../plugin-fw/licence/lib/yit-licence.php:536
|
530 |
-
msgid "Licence key has
|
531 |
msgstr ""
|
532 |
|
533 |
#: ../plugin-fw/licence/lib/yit-plugin-licence.php:63
|
@@ -560,7 +563,7 @@ msgid "Update licence information"
|
|
560 |
msgstr ""
|
561 |
|
562 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:35
|
563 |
-
msgid "
|
564 |
msgstr ""
|
565 |
|
566 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:54
|
@@ -572,27 +575,27 @@ msgid "Activated"
|
|
572 |
msgstr ""
|
573 |
|
574 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:77
|
575 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
576 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
577 |
msgid "Product Name"
|
578 |
msgstr ""
|
579 |
|
580 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:78
|
581 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
582 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
583 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:145
|
584 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:337
|
585 |
msgid "Email"
|
586 |
msgstr ""
|
587 |
|
588 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:79
|
589 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
590 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
591 |
msgid "Licence Key"
|
592 |
msgstr ""
|
593 |
|
594 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:80
|
595 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
596 |
msgid "Expires"
|
597 |
msgstr ""
|
598 |
|
@@ -602,8 +605,8 @@ msgstr ""
|
|
602 |
|
603 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:82
|
604 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:95
|
605 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
606 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
607 |
msgid "Renew"
|
608 |
msgstr ""
|
609 |
|
@@ -612,11 +615,11 @@ msgstr ""
|
|
612 |
msgid "%1s out of %2s"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
616 |
msgid "Banned"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
620 |
msgid "Expired"
|
621 |
msgstr ""
|
622 |
|
@@ -696,7 +699,7 @@ msgstr ""
|
|
696 |
|
697 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:78
|
698 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:270
|
699 |
-
msgid "Insert the title
|
700 |
msgstr ""
|
701 |
|
702 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:83
|
@@ -707,9 +710,8 @@ msgstr ""
|
|
707 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:87
|
708 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:279
|
709 |
msgid ""
|
710 |
-
"REQUIRED:
|
711 |
-
"
|
712 |
-
"characters and underscores."
|
713 |
msgstr ""
|
714 |
|
715 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:92
|
@@ -719,7 +721,7 @@ msgstr ""
|
|
719 |
|
720 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:100
|
721 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:292
|
722 |
-
msgid "Select the type
|
723 |
msgstr ""
|
724 |
|
725 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:105
|
@@ -729,7 +731,7 @@ msgstr ""
|
|
729 |
|
730 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:109
|
731 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:301
|
732 |
-
msgid "Select this if you want this field already checked."
|
733 |
msgstr ""
|
734 |
|
735 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:114
|
@@ -756,7 +758,7 @@ msgstr ""
|
|
756 |
|
757 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:127
|
758 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:319
|
759 |
-
msgid "Message
|
760 |
msgstr ""
|
761 |
|
762 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:131
|
@@ -771,12 +773,12 @@ msgstr ""
|
|
771 |
|
772 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:140
|
773 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:332
|
774 |
-
msgid "Select this if it must be required."
|
775 |
msgstr ""
|
776 |
|
777 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:149
|
778 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:341
|
779 |
-
msgid "Select this if
|
780 |
msgstr ""
|
781 |
|
782 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:154
|
@@ -786,7 +788,7 @@ msgstr ""
|
|
786 |
|
787 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:158
|
788 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:350
|
789 |
-
msgid "Select this if it
|
790 |
msgstr ""
|
791 |
|
792 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:163
|
@@ -797,7 +799,7 @@ msgstr ""
|
|
797 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:167
|
798 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:359
|
799 |
msgid ""
|
800 |
-
"Insert
|
801 |
msgstr ""
|
802 |
|
803 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:172
|
@@ -834,7 +836,7 @@ msgstr ""
|
|
834 |
|
835 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:244
|
836 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:418
|
837 |
-
msgid "
|
838 |
msgstr ""
|
839 |
|
840 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
|
@@ -852,7 +854,7 @@ msgstr ""
|
|
852 |
|
853 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:53
|
854 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:96
|
855 |
-
msgid "
|
856 |
msgstr ""
|
857 |
|
858 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:65
|
@@ -915,10 +917,6 @@ msgstr ""
|
|
915 |
msgid "No sidebar"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:28
|
919 |
-
msgid "No sideabr"
|
920 |
-
msgstr ""
|
921 |
-
|
922 |
#: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:31
|
923 |
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:39
|
924 |
msgid "Right sidebar"
|
@@ -931,11 +929,11 @@ msgid "Choose a sidebar"
|
|
931 |
msgstr ""
|
932 |
|
933 |
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:51
|
934 |
-
msgid "Sidebar
|
935 |
msgstr ""
|
936 |
|
937 |
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:62
|
938 |
-
msgid "Sidebar
|
939 |
msgstr ""
|
940 |
|
941 |
#: ../plugin-fw/templates/metaboxes/types/typography.php:42
|
@@ -1009,23 +1007,48 @@ msgid ""
|
|
1009 |
"updates and support through our platform available 24h/24."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: ../plugin-options/settings-options.php:
|
1013 |
-
#: ../plugin-options/settings-options.php:
|
1014 |
-
|
|
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: ../plugin-options/settings-options.php:
|
1018 |
-
msgid "
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: ../plugin-options/settings-options.php:
|
1022 |
-
msgid "
|
|
|
|
|
|
|
|
|
1023 |
msgstr ""
|
1024 |
|
1025 |
#: ../plugin-options/settings-options.php:63
|
1026 |
-
msgid "
|
1027 |
msgstr ""
|
1028 |
|
1029 |
#: ../plugin-options/settings-options.php:65
|
1030 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1031 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YIT WooCommerce Catalog Mode\n"
|
4 |
+
"POT-Creation-Date: 2015-03-02 13:57+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-03-02 13:57+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.5\n"
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
14 |
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
15 |
"_nx_noop:4c,1,2\n"
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
|
21 |
+
#: ../class.yith-woocommerce-catalog-mode.php:236
|
22 |
+
#: ../class.yith-woocommerce-catalog-mode.php:293
|
23 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1048
|
24 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1196
|
25 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1202
|
26 |
#: ../plugin-fw/lib/yit-plugin-panel.php:62
|
|
|
27 |
msgid "Settings"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ../class.yith-woocommerce-catalog-mode.php:240
|
31 |
msgid "Premium Settings"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: ../class.yith-woocommerce-catalog-mode.php:241
|
35 |
+
msgid "Exclusion List"
|
|
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: ../class.yith-woocommerce-catalog-mode.php:243
|
39 |
+
#: ../class.yith-woocommerce-catalog-mode.php:296
|
40 |
msgid "Premium Version"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../class.yith-woocommerce-catalog-mode.php:249
|
44 |
+
#: ../class.yith-woocommerce-catalog-mode.php:250
|
45 |
+
msgid "Catalog Mode"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: ../class.yith-woocommerce-catalog-mode.php:322
|
49 |
msgid "Plugin Documentation"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../class.yith-woocommerce-catalog-mode.php:336
|
53 |
msgid ""
|
54 |
"YITH WooCommerce Catalog Mode is available in an outstanding PREMIUM version "
|
55 |
"with many new options, discover it now."
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: ../class.yith-woocommerce-catalog-mode.php:337
|
59 |
msgid "Premium version"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: ../class.yith-woocommerce-catalog-mode.php:344
|
63 |
#: ../plugin-options/settings-options.php:19
|
64 |
#: ../plugin-options/settings-options.php:25
|
65 |
msgid "YITH WooCommerce Catalog Mode"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: ../class.yith-woocommerce-catalog-mode.php:345
|
69 |
msgid ""
|
70 |
+
"In YIT Plugins tab you can find YITH WooCommerce Catalog Mode options. From "
|
71 |
+
"this menu you can access all settings of YITH plugins activated."
|
|
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: ../init.php:23
|
75 |
msgid ""
|
76 |
"YITH WooCommerce Catalog Mode is enabled but not effective. It requires "
|
77 |
"Woocommerce in order to work."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: ../init.php:31
|
81 |
msgid ""
|
82 |
"You can't activate the free version of YITH WooCommerce Catalog Mode while "
|
83 |
"you are using the premium one."
|
204 |
msgstr ""
|
205 |
|
206 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1052
|
207 |
+
msgid "Layout for this "
|
208 |
msgstr ""
|
209 |
|
210 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1058
|
212 |
msgstr ""
|
213 |
|
214 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1059
|
215 |
+
msgid ""
|
216 |
+
"Univocal identification name in the URL for each product (slug from post if "
|
217 |
+
"empty)"
|
218 |
msgstr ""
|
219 |
|
220 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1064
|
221 |
+
msgid "Label in Singular"
|
222 |
msgstr ""
|
223 |
|
224 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1065
|
225 |
+
msgid "Set a label in singular (title of portfolio if empty)"
|
|
|
|
|
226 |
msgstr ""
|
227 |
|
228 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1070
|
229 |
+
msgid "Label in Plural"
|
230 |
msgstr ""
|
231 |
|
232 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1071
|
233 |
+
msgid "Set a label in plural (title of portfolio if empty)"
|
|
|
|
|
234 |
msgstr ""
|
235 |
|
236 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1076
|
239 |
|
240 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1077
|
241 |
msgid ""
|
242 |
+
"If you want to use categories in the portfolio, set a name for taxonomy. "
|
243 |
+
"Name should be a slug (must not contain capital letters nor spaces) and must "
|
244 |
+
"not be more than 32 characters long (database structure restriction)."
|
|
|
245 |
msgstr ""
|
246 |
|
247 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1082
|
249 |
msgstr ""
|
250 |
|
251 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1083
|
252 |
+
msgid "Set univocal name for each category page URL."
|
253 |
msgstr ""
|
254 |
|
255 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1088
|
257 |
msgstr ""
|
258 |
|
259 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1089
|
260 |
+
msgid "Layout for single page of this portfolio"
|
261 |
msgstr ""
|
262 |
|
263 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1130
|
271 |
|
272 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1475
|
273 |
#, php-format
|
274 |
+
msgid "Show frontend of the %s"
|
275 |
msgstr ""
|
276 |
|
277 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1482
|
282 |
|
283 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1631
|
284 |
#, php-format
|
285 |
+
msgid "Add %s from images"
|
286 |
msgstr ""
|
287 |
|
288 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1633
|
289 |
msgid "Add with multiupload"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: ../plugin-fw/lib/yit-plugin-panel-wc.php:345
|
293 |
+
msgid "The changes you have made will be lost if you leave this page."
|
294 |
msgstr ""
|
295 |
|
296 |
#: ../plugin-fw/lib/yit-plugin-panel.php:61
|
309 |
msgstr ""
|
310 |
|
311 |
#: ../plugin-fw/lib/yit-plugin-panel.php:274
|
|
|
312 |
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:8
|
313 |
msgid ""
|
314 |
+
"If you continue with this action, you will reset all options in this page."
|
|
|
315 |
msgstr ""
|
316 |
|
317 |
#: ../plugin-fw/lib/yit-plugin-panel.php:276
|
323 |
#: ../plugin-fw/lib/yit-plugin-panel.php:276
|
324 |
#: ../plugin-fw/lib/yit-plugin-subpanel.php:147
|
325 |
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
|
326 |
+
msgid "Are you sure?"
|
327 |
msgstr ""
|
328 |
|
329 |
#: ../plugin-fw/lib/yit-plugin-panel.php:410
|
330 |
msgid ""
|
331 |
+
"The element you have entered already exists. Please, enter another name."
|
332 |
msgstr ""
|
333 |
|
334 |
#: ../plugin-fw/lib/yit-plugin-panel.php:411
|
353 |
msgstr ""
|
354 |
|
355 |
#: ../plugin-fw/lib/yit-plugin-panel.php:417
|
356 |
+
msgid "An error has occurred during import. Please try again."
|
357 |
msgstr ""
|
358 |
|
359 |
#: ../plugin-fw/lib/yit-plugin-panel.php:418
|
360 |
+
msgid "The added file is not valid."
|
361 |
msgstr ""
|
362 |
|
363 |
#: ../plugin-fw/lib/yit-plugin-panel.php:419
|
364 |
+
msgid "Sorry, import is disabled."
|
365 |
msgstr ""
|
366 |
|
367 |
#: ../plugin-fw/lib/yit-plugin-panel.php:420
|
368 |
+
msgid "Sorting successful."
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: ../plugin-fw/lib/yit-plugin-subpanel.php:145
|
372 |
+
msgid ""
|
373 |
+
"If you continue with this action, you will reset all the options in this "
|
374 |
+
"page."
|
375 |
msgstr ""
|
376 |
|
377 |
#: ../plugin-fw/lib/yit-pointers.php:70
|
380 |
|
381 |
#: ../plugin-fw/lib/yit-pointers.php:71
|
382 |
msgid ""
|
383 |
+
"From now on, you can find all plugin options in YIT Plugin menu.\n"
|
384 |
+
" For each plugin installed, "
|
385 |
+
"customization settings will be available as a new entry in YIT Plugin menu."
|
|
|
386 |
msgstr ""
|
387 |
|
388 |
#: ../plugin-fw/lib/yit-pointers.php:73 ../plugin-fw/lib/yit-pointers.php:89
|
399 |
|
400 |
#: ../plugin-fw/lib/yit-pointers.php:85
|
401 |
msgid ""
|
402 |
+
"From now on, you can find all options of your plugins in YIT Plugin menu.\n"
|
403 |
+
" Any time one of our plugins is updated, "
|
404 |
+
"a new entry will be added to this menu.\n"
|
405 |
+
" For example, after the update, plugin "
|
406 |
+
"options (such as for YITH WooCommerce Wishlist, YITH WooCommerce Ajax "
|
|
|
407 |
"Search, etc.)\n"
|
408 |
+
" will be moved from previous location to "
|
409 |
+
"YIT Plugin tab."
|
410 |
msgstr ""
|
411 |
|
412 |
#: ../plugin-fw/lib/yit-upgrade.php:119
|
423 |
|
424 |
#: ../plugin-fw/lib/yit-upgrade.php:122
|
425 |
msgid ""
|
426 |
+
"please <a href=\"%activate_link%\">activate</a> your copy of %plugin_name%."
|
427 |
msgstr ""
|
428 |
|
429 |
#: ../plugin-fw/lib/yit-upgrade.php:123
|
455 |
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
456 |
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
|
457 |
"have to activate the plugin on a single site of the network to benefit from "
|
458 |
+
"automatic updates.</em>"
|
459 |
msgstr ""
|
460 |
|
461 |
#: ../plugin-fw/lib/yit-upgrade.php:418
|
476 |
msgstr ""
|
477 |
|
478 |
#: ../plugin-fw/lib/yit-upgrade.php:493
|
479 |
+
msgid "You can't update the plugins for this site."
|
480 |
msgstr ""
|
481 |
|
482 |
#: ../plugin-fw/lib/yit-upgrade.php:497
|
483 |
+
msgid ""
|
484 |
+
"You do not have sufficient permissions to update the plugins for this site."
|
485 |
msgstr ""
|
486 |
|
487 |
#: ../plugin-fw/lib/yit-upgrade.php:504
|
490 |
|
491 |
#: ../plugin-fw/licence/lib/yit-licence.php:148
|
492 |
#, php-format
|
493 |
+
msgid "%field% field cannot be empty"
|
494 |
msgstr ""
|
495 |
|
496 |
#: ../plugin-fw/licence/lib/yit-licence.php:149
|
497 |
+
msgid "%field_1% and %field_2% fields cannot be empty"
|
498 |
msgstr ""
|
499 |
|
500 |
#: ../plugin-fw/licence/lib/yit-licence.php:150
|
510 |
msgstr ""
|
511 |
|
512 |
#: ../plugin-fw/licence/lib/yit-licence.php:531
|
513 |
+
msgid "Software has been deactivated"
|
514 |
msgstr ""
|
515 |
|
516 |
#: ../plugin-fw/licence/lib/yit-licence.php:532
|
517 |
+
msgid "Maximum number of activations exceeded"
|
518 |
msgstr ""
|
519 |
|
520 |
#: ../plugin-fw/licence/lib/yit-licence.php:533
|
530 |
msgstr ""
|
531 |
|
532 |
#: ../plugin-fw/licence/lib/yit-licence.php:536
|
533 |
+
msgid "Licence key has been banned"
|
534 |
msgstr ""
|
535 |
|
536 |
#: ../plugin-fw/licence/lib/yit-plugin-licence.php:63
|
563 |
msgstr ""
|
564 |
|
565 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:35
|
566 |
+
msgid "Products to be activated"
|
567 |
msgstr ""
|
568 |
|
569 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:54
|
575 |
msgstr ""
|
576 |
|
577 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:77
|
578 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:109
|
579 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:133
|
580 |
msgid "Product Name"
|
581 |
msgstr ""
|
582 |
|
583 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:78
|
584 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:110
|
585 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:134
|
586 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:145
|
587 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:337
|
588 |
msgid "Email"
|
589 |
msgstr ""
|
590 |
|
591 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:79
|
592 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:111
|
593 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:135
|
594 |
msgid "Licence Key"
|
595 |
msgstr ""
|
596 |
|
597 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:80
|
598 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:136
|
599 |
msgid "Expires"
|
600 |
msgstr ""
|
601 |
|
605 |
|
606 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:82
|
607 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:95
|
608 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:137
|
609 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:147
|
610 |
msgid "Renew"
|
611 |
msgstr ""
|
612 |
|
615 |
msgid "%1s out of %2s"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:105
|
619 |
msgid "Banned"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:129
|
623 |
msgid "Expired"
|
624 |
msgstr ""
|
625 |
|
699 |
|
700 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:78
|
701 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:270
|
702 |
+
msgid "Insert the title for the field."
|
703 |
msgstr ""
|
704 |
|
705 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:83
|
710 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:87
|
711 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:279
|
712 |
msgid ""
|
713 |
+
"REQUIRED: Field identification name to be entered into email body. "
|
714 |
+
"<strong>Note:</strong>Use only lowercase characters and underscores."
|
|
|
715 |
msgstr ""
|
716 |
|
717 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:92
|
721 |
|
722 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:100
|
723 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:292
|
724 |
+
msgid "Select the type for this field."
|
725 |
msgstr ""
|
726 |
|
727 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:105
|
731 |
|
732 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:109
|
733 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:301
|
734 |
+
msgid "Select this option if you want this field appears as already checked."
|
735 |
msgstr ""
|
736 |
|
737 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:114
|
758 |
|
759 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:127
|
760 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:319
|
761 |
+
msgid "Error Message"
|
762 |
msgstr ""
|
763 |
|
764 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:131
|
773 |
|
774 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:140
|
775 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:332
|
776 |
+
msgid "Select this option if it must be required."
|
777 |
msgstr ""
|
778 |
|
779 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:149
|
780 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:341
|
781 |
+
msgid "Select this option if the email must be valid."
|
782 |
msgstr ""
|
783 |
|
784 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:154
|
788 |
|
789 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:158
|
790 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:350
|
791 |
+
msgid "Select this if it is the email you can reply to."
|
792 |
msgstr ""
|
793 |
|
794 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:163
|
799 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:167
|
800 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:359
|
801 |
msgid ""
|
802 |
+
"Insert additional class(es) (separated by commas) for more personalization."
|
803 |
msgstr ""
|
804 |
|
805 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:172
|
836 |
|
837 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:244
|
838 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:418
|
839 |
+
msgid "Set field length."
|
840 |
msgstr ""
|
841 |
|
842 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
|
854 |
|
855 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:53
|
856 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:96
|
857 |
+
msgid "Content of the tab. (HTML is supported)"
|
858 |
msgstr ""
|
859 |
|
860 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:65
|
917 |
msgid "No sidebar"
|
918 |
msgstr ""
|
919 |
|
|
|
|
|
|
|
|
|
920 |
#: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:31
|
921 |
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:39
|
922 |
msgid "Right sidebar"
|
929 |
msgstr ""
|
930 |
|
931 |
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:51
|
932 |
+
msgid "Left Sidebar"
|
933 |
msgstr ""
|
934 |
|
935 |
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:62
|
936 |
+
msgid "Right Sidebar"
|
937 |
msgstr ""
|
938 |
|
939 |
#: ../plugin-fw/templates/metaboxes/types/typography.php:42
|
1007 |
"updates and support through our platform available 24h/24."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: ../plugin-options/settings-options.php:38
|
1011 |
+
#: ../plugin-options/settings-options.php:80
|
1012 |
+
#: ../plugin-options/settings-options.php:88
|
1013 |
+
msgid "\"Add to cart\" button"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: ../plugin-options/settings-options.php:40
|
1017 |
+
msgid "Exclude selected products (See \"Exclusions\" tab)"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: ../plugin-options/settings-options.php:50
|
1021 |
+
msgid "General Settings"
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: ../plugin-options/settings-options.php:56
|
1025 |
+
msgid "Enable YITH Woocommerce Catalog Mode"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
#: ../plugin-options/settings-options.php:63
|
1029 |
+
msgid "Admin View"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: ../plugin-options/settings-options.php:65
|
1033 |
+
msgid "Enable Catalog Mode also for administrators"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: ../plugin-options/settings-options.php:74
|
1037 |
+
msgid "Catalog Mode Settings"
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: ../plugin-options/settings-options.php:82
|
1041 |
+
msgid "Hide in product details page"
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: ../plugin-options/settings-options.php:90
|
1045 |
+
msgid "Hide in other pages"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: ../plugin-options/settings-options.php:97
|
1049 |
+
msgid "\"Cart\" and \"Checkout\" pages"
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: ../plugin-options/settings-options.php:99
|
1053 |
+
msgid "Hide"
|
1054 |
msgstr ""
|
languages/ywctm.pot
CHANGED
@@ -1,78 +1,83 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YIT WooCommerce Catalog Mode\n"
|
4 |
-
"POT-Creation-Date: 2015-02
|
5 |
-
"PO-Revision-Date: 2015-02
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
14 |
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
15 |
"_nx_noop:4c,1,2\n"
|
|
|
16 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
|
|
18 |
|
19 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
20 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
21 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1048
|
22 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1196
|
23 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1202
|
24 |
#: ../plugin-fw/lib/yit-plugin-panel.php:62
|
25 |
-
#: ../plugin-options/settings-options.php:41
|
26 |
msgid "Settings"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
30 |
msgid "Premium Settings"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
34 |
-
|
35 |
-
msgid "Catalog Mode"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
|
|
39 |
msgid "Premium Version"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
|
|
|
|
|
|
|
|
|
|
43 |
msgid "Plugin Documentation"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
47 |
msgid ""
|
48 |
"YITH WooCommerce Catalog Mode is available in an outstanding PREMIUM version "
|
49 |
"with many new options, discover it now."
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
53 |
msgid "Premium version"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
57 |
#: ../plugin-options/settings-options.php:19
|
58 |
#: ../plugin-options/settings-options.php:25
|
59 |
msgid "YITH WooCommerce Catalog Mode"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
63 |
msgid ""
|
64 |
-
"In
|
65 |
-
"
|
66 |
-
"that you have activated."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../init.php:
|
70 |
msgid ""
|
71 |
"YITH WooCommerce Catalog Mode is enabled but not effective. It requires "
|
72 |
"Woocommerce in order to work."
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: ../init.php:
|
76 |
msgid ""
|
77 |
"You can't activate the free version of YITH WooCommerce Catalog Mode while "
|
78 |
"you are using the premium one."
|
@@ -199,7 +204,7 @@ msgid "Type"
|
|
199 |
msgstr ""
|
200 |
|
201 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1052
|
202 |
-
msgid "
|
203 |
msgstr ""
|
204 |
|
205 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1058
|
@@ -207,27 +212,25 @@ msgid "Rewrite"
|
|
207 |
msgstr ""
|
208 |
|
209 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1059
|
210 |
-
msgid "
|
|
|
|
|
211 |
msgstr ""
|
212 |
|
213 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1064
|
214 |
-
msgid "Label Singular"
|
215 |
msgstr ""
|
216 |
|
217 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1065
|
218 |
-
msgid ""
|
219 |
-
"Set the label in singular to use for each label (the title of portfolio if "
|
220 |
-
"empty)"
|
221 |
msgstr ""
|
222 |
|
223 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1070
|
224 |
-
msgid "Label Plural"
|
225 |
msgstr ""
|
226 |
|
227 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1071
|
228 |
-
msgid ""
|
229 |
-
"Set the label in plural to use for each label (the title of portfolio if "
|
230 |
-
"empty)"
|
231 |
msgstr ""
|
232 |
|
233 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1076
|
@@ -236,10 +239,9 @@ msgstr ""
|
|
236 |
|
237 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1077
|
238 |
msgid ""
|
239 |
-
"If you want to use
|
240 |
-
"
|
241 |
-
"
|
242 |
-
"restriction)."
|
243 |
msgstr ""
|
244 |
|
245 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1082
|
@@ -247,7 +249,7 @@ msgid "Taxonomy Rewrite"
|
|
247 |
msgstr ""
|
248 |
|
249 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1083
|
250 |
-
msgid "Set
|
251 |
msgstr ""
|
252 |
|
253 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1088
|
@@ -255,7 +257,7 @@ msgid "Single layout"
|
|
255 |
msgstr ""
|
256 |
|
257 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1089
|
258 |
-
msgid "
|
259 |
msgstr ""
|
260 |
|
261 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1130
|
@@ -269,7 +271,7 @@ msgstr ""
|
|
269 |
|
270 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1475
|
271 |
#, php-format
|
272 |
-
msgid "Show
|
273 |
msgstr ""
|
274 |
|
275 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1482
|
@@ -280,15 +282,15 @@ msgstr ""
|
|
280 |
|
281 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1631
|
282 |
#, php-format
|
283 |
-
msgid "Add %s
|
284 |
msgstr ""
|
285 |
|
286 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1633
|
287 |
msgid "Add with multiupload"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ../plugin-fw/lib/yit-plugin-panel-wc.php:
|
291 |
-
msgid "The changes you made will be lost if you
|
292 |
msgstr ""
|
293 |
|
294 |
#: ../plugin-fw/lib/yit-plugin-panel.php:61
|
@@ -307,11 +309,9 @@ msgid "Save Changes"
|
|
307 |
msgstr ""
|
308 |
|
309 |
#: ../plugin-fw/lib/yit-plugin-panel.php:274
|
310 |
-
#: ../plugin-fw/lib/yit-plugin-subpanel.php:145
|
311 |
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:8
|
312 |
msgid ""
|
313 |
-
"If you continue with this action, you will reset all options
|
314 |
-
"page."
|
315 |
msgstr ""
|
316 |
|
317 |
#: ../plugin-fw/lib/yit-plugin-panel.php:276
|
@@ -323,12 +323,12 @@ msgstr ""
|
|
323 |
#: ../plugin-fw/lib/yit-plugin-panel.php:276
|
324 |
#: ../plugin-fw/lib/yit-plugin-subpanel.php:147
|
325 |
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
|
326 |
-
msgid "Are you sure
|
327 |
msgstr ""
|
328 |
|
329 |
#: ../plugin-fw/lib/yit-plugin-panel.php:410
|
330 |
msgid ""
|
331 |
-
"The element you have
|
332 |
msgstr ""
|
333 |
|
334 |
#: ../plugin-fw/lib/yit-plugin-panel.php:411
|
@@ -353,19 +353,25 @@ msgid "Database imported correctly."
|
|
353 |
msgstr ""
|
354 |
|
355 |
#: ../plugin-fw/lib/yit-plugin-panel.php:417
|
356 |
-
msgid "An error
|
357 |
msgstr ""
|
358 |
|
359 |
#: ../plugin-fw/lib/yit-plugin-panel.php:418
|
360 |
-
msgid "The file
|
361 |
msgstr ""
|
362 |
|
363 |
#: ../plugin-fw/lib/yit-plugin-panel.php:419
|
364 |
-
msgid "
|
365 |
msgstr ""
|
366 |
|
367 |
#: ../plugin-fw/lib/yit-plugin-panel.php:420
|
368 |
-
msgid "Sorting
|
|
|
|
|
|
|
|
|
|
|
|
|
369 |
msgstr ""
|
370 |
|
371 |
#: ../plugin-fw/lib/yit-pointers.php:70
|
@@ -374,10 +380,9 @@ msgstr ""
|
|
374 |
|
375 |
#: ../plugin-fw/lib/yit-pointers.php:71
|
376 |
msgid ""
|
377 |
-
"From now on, you can find all
|
378 |
-
"
|
379 |
-
"
|
380 |
-
"plugins, a new voice will be added to access to the customization settings."
|
381 |
msgstr ""
|
382 |
|
383 |
#: ../plugin-fw/lib/yit-pointers.php:73 ../plugin-fw/lib/yit-pointers.php:89
|
@@ -394,15 +399,14 @@ msgstr ""
|
|
394 |
|
395 |
#: ../plugin-fw/lib/yit-pointers.php:85
|
396 |
msgid ""
|
397 |
-
"From now on, you can find all
|
398 |
-
"
|
399 |
-
"
|
400 |
-
"
|
401 |
-
"
|
402 |
-
"options from the plugins (YITH WooCommerce Wishlist, YITH WooCommerce Ajax "
|
403 |
"Search, etc.)\n"
|
404 |
-
" will be
|
405 |
-
"
|
406 |
msgstr ""
|
407 |
|
408 |
#: ../plugin-fw/lib/yit-upgrade.php:119
|
@@ -419,7 +423,7 @@ msgstr ""
|
|
419 |
|
420 |
#: ../plugin-fw/lib/yit-upgrade.php:122
|
421 |
msgid ""
|
422 |
-
"please <a href=\"%activate_link%\">
|
423 |
msgstr ""
|
424 |
|
425 |
#: ../plugin-fw/lib/yit-upgrade.php:123
|
@@ -451,7 +455,7 @@ msgid ""
|
|
451 |
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
452 |
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
|
453 |
"have to activate the plugin on a single site of the network to benefit from "
|
454 |
-
"
|
455 |
msgstr ""
|
456 |
|
457 |
#: ../plugin-fw/lib/yit-upgrade.php:418
|
@@ -472,11 +476,12 @@ msgid ""
|
|
472 |
msgstr ""
|
473 |
|
474 |
#: ../plugin-fw/lib/yit-upgrade.php:493
|
475 |
-
msgid "You can't update plugins for this site."
|
476 |
msgstr ""
|
477 |
|
478 |
#: ../plugin-fw/lib/yit-upgrade.php:497
|
479 |
-
msgid "
|
|
|
480 |
msgstr ""
|
481 |
|
482 |
#: ../plugin-fw/lib/yit-upgrade.php:504
|
@@ -485,11 +490,11 @@ msgstr ""
|
|
485 |
|
486 |
#: ../plugin-fw/licence/lib/yit-licence.php:148
|
487 |
#, php-format
|
488 |
-
msgid "%field% field
|
489 |
msgstr ""
|
490 |
|
491 |
#: ../plugin-fw/licence/lib/yit-licence.php:149
|
492 |
-
msgid "%field_1% and %field_2% fields
|
493 |
msgstr ""
|
494 |
|
495 |
#: ../plugin-fw/licence/lib/yit-licence.php:150
|
@@ -505,11 +510,11 @@ msgid "Invalid licence key"
|
|
505 |
msgstr ""
|
506 |
|
507 |
#: ../plugin-fw/licence/lib/yit-licence.php:531
|
508 |
-
msgid "Software has been
|
509 |
msgstr ""
|
510 |
|
511 |
#: ../plugin-fw/licence/lib/yit-licence.php:532
|
512 |
-
msgid "
|
513 |
msgstr ""
|
514 |
|
515 |
#: ../plugin-fw/licence/lib/yit-licence.php:533
|
@@ -525,7 +530,7 @@ msgid "Licence key has expired"
|
|
525 |
msgstr ""
|
526 |
|
527 |
#: ../plugin-fw/licence/lib/yit-licence.php:536
|
528 |
-
msgid "Licence key has
|
529 |
msgstr ""
|
530 |
|
531 |
#: ../plugin-fw/licence/lib/yit-plugin-licence.php:63
|
@@ -558,7 +563,7 @@ msgid "Update licence information"
|
|
558 |
msgstr ""
|
559 |
|
560 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:35
|
561 |
-
msgid "
|
562 |
msgstr ""
|
563 |
|
564 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:54
|
@@ -570,27 +575,27 @@ msgid "Activated"
|
|
570 |
msgstr ""
|
571 |
|
572 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:77
|
573 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
574 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
575 |
msgid "Product Name"
|
576 |
msgstr ""
|
577 |
|
578 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:78
|
579 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
580 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
581 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:145
|
582 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:337
|
583 |
msgid "Email"
|
584 |
msgstr ""
|
585 |
|
586 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:79
|
587 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
588 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
589 |
msgid "Licence Key"
|
590 |
msgstr ""
|
591 |
|
592 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:80
|
593 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
594 |
msgid "Expires"
|
595 |
msgstr ""
|
596 |
|
@@ -600,8 +605,8 @@ msgstr ""
|
|
600 |
|
601 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:82
|
602 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:95
|
603 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
604 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
605 |
msgid "Renew"
|
606 |
msgstr ""
|
607 |
|
@@ -610,11 +615,11 @@ msgstr ""
|
|
610 |
msgid "%1s out of %2s"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
614 |
msgid "Banned"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:
|
618 |
msgid "Expired"
|
619 |
msgstr ""
|
620 |
|
@@ -694,7 +699,7 @@ msgstr ""
|
|
694 |
|
695 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:78
|
696 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:270
|
697 |
-
msgid "Insert the title
|
698 |
msgstr ""
|
699 |
|
700 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:83
|
@@ -705,9 +710,8 @@ msgstr ""
|
|
705 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:87
|
706 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:279
|
707 |
msgid ""
|
708 |
-
"REQUIRED:
|
709 |
-
"
|
710 |
-
"characters and underscores."
|
711 |
msgstr ""
|
712 |
|
713 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:92
|
@@ -717,7 +721,7 @@ msgstr ""
|
|
717 |
|
718 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:100
|
719 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:292
|
720 |
-
msgid "Select the type
|
721 |
msgstr ""
|
722 |
|
723 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:105
|
@@ -727,7 +731,7 @@ msgstr ""
|
|
727 |
|
728 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:109
|
729 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:301
|
730 |
-
msgid "Select this if you want this field already checked."
|
731 |
msgstr ""
|
732 |
|
733 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:114
|
@@ -754,7 +758,7 @@ msgstr ""
|
|
754 |
|
755 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:127
|
756 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:319
|
757 |
-
msgid "Message
|
758 |
msgstr ""
|
759 |
|
760 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:131
|
@@ -769,12 +773,12 @@ msgstr ""
|
|
769 |
|
770 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:140
|
771 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:332
|
772 |
-
msgid "Select this if it must be required."
|
773 |
msgstr ""
|
774 |
|
775 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:149
|
776 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:341
|
777 |
-
msgid "Select this if
|
778 |
msgstr ""
|
779 |
|
780 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:154
|
@@ -784,7 +788,7 @@ msgstr ""
|
|
784 |
|
785 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:158
|
786 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:350
|
787 |
-
msgid "Select this if it
|
788 |
msgstr ""
|
789 |
|
790 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:163
|
@@ -795,7 +799,7 @@ msgstr ""
|
|
795 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:167
|
796 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:359
|
797 |
msgid ""
|
798 |
-
"Insert
|
799 |
msgstr ""
|
800 |
|
801 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:172
|
@@ -832,7 +836,7 @@ msgstr ""
|
|
832 |
|
833 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:244
|
834 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:418
|
835 |
-
msgid "
|
836 |
msgstr ""
|
837 |
|
838 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
|
@@ -850,7 +854,7 @@ msgstr ""
|
|
850 |
|
851 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:53
|
852 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:96
|
853 |
-
msgid "
|
854 |
msgstr ""
|
855 |
|
856 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:65
|
@@ -913,10 +917,6 @@ msgstr ""
|
|
913 |
msgid "No sidebar"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:28
|
917 |
-
msgid "No sideabr"
|
918 |
-
msgstr ""
|
919 |
-
|
920 |
#: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:31
|
921 |
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:39
|
922 |
msgid "Right sidebar"
|
@@ -929,11 +929,11 @@ msgid "Choose a sidebar"
|
|
929 |
msgstr ""
|
930 |
|
931 |
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:51
|
932 |
-
msgid "Sidebar
|
933 |
msgstr ""
|
934 |
|
935 |
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:62
|
936 |
-
msgid "Sidebar
|
937 |
msgstr ""
|
938 |
|
939 |
#: ../plugin-fw/templates/metaboxes/types/typography.php:42
|
@@ -1007,23 +1007,48 @@ msgid ""
|
|
1007 |
"updates and support through our platform available 24h/24."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: ../plugin-options/settings-options.php:
|
1011 |
-
#: ../plugin-options/settings-options.php:
|
1012 |
-
|
|
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: ../plugin-options/settings-options.php:
|
1016 |
-
msgid "
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: ../plugin-options/settings-options.php:
|
1020 |
-
msgid "
|
|
|
|
|
|
|
|
|
1021 |
msgstr ""
|
1022 |
|
1023 |
#: ../plugin-options/settings-options.php:63
|
1024 |
-
msgid "
|
1025 |
msgstr ""
|
1026 |
|
1027 |
#: ../plugin-options/settings-options.php:65
|
1028 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1029 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YIT WooCommerce Catalog Mode\n"
|
4 |
+
"POT-Creation-Date: 2015-03-02 13:57+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-03-02 13:57+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.5\n"
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
14 |
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
15 |
"_nx_noop:4c,1,2\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
+
"X-Poedit-SearchPath-0: ..\n"
|
20 |
|
21 |
+
#: ../class.yith-woocommerce-catalog-mode.php:236
|
22 |
+
#: ../class.yith-woocommerce-catalog-mode.php:293
|
23 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1048
|
24 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1196
|
25 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1202
|
26 |
#: ../plugin-fw/lib/yit-plugin-panel.php:62
|
|
|
27 |
msgid "Settings"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ../class.yith-woocommerce-catalog-mode.php:240
|
31 |
msgid "Premium Settings"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: ../class.yith-woocommerce-catalog-mode.php:241
|
35 |
+
msgid "Exclusion List"
|
|
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: ../class.yith-woocommerce-catalog-mode.php:243
|
39 |
+
#: ../class.yith-woocommerce-catalog-mode.php:296
|
40 |
msgid "Premium Version"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../class.yith-woocommerce-catalog-mode.php:249
|
44 |
+
#: ../class.yith-woocommerce-catalog-mode.php:250
|
45 |
+
msgid "Catalog Mode"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: ../class.yith-woocommerce-catalog-mode.php:322
|
49 |
msgid "Plugin Documentation"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../class.yith-woocommerce-catalog-mode.php:336
|
53 |
msgid ""
|
54 |
"YITH WooCommerce Catalog Mode is available in an outstanding PREMIUM version "
|
55 |
"with many new options, discover it now."
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: ../class.yith-woocommerce-catalog-mode.php:337
|
59 |
msgid "Premium version"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: ../class.yith-woocommerce-catalog-mode.php:344
|
63 |
#: ../plugin-options/settings-options.php:19
|
64 |
#: ../plugin-options/settings-options.php:25
|
65 |
msgid "YITH WooCommerce Catalog Mode"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: ../class.yith-woocommerce-catalog-mode.php:345
|
69 |
msgid ""
|
70 |
+
"In YIT Plugins tab you can find YITH WooCommerce Catalog Mode options. From "
|
71 |
+
"this menu you can access all settings of YITH plugins activated."
|
|
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: ../init.php:23
|
75 |
msgid ""
|
76 |
"YITH WooCommerce Catalog Mode is enabled but not effective. It requires "
|
77 |
"Woocommerce in order to work."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: ../init.php:31
|
81 |
msgid ""
|
82 |
"You can't activate the free version of YITH WooCommerce Catalog Mode while "
|
83 |
"you are using the premium one."
|
204 |
msgstr ""
|
205 |
|
206 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1052
|
207 |
+
msgid "Layout for this "
|
208 |
msgstr ""
|
209 |
|
210 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1058
|
212 |
msgstr ""
|
213 |
|
214 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1059
|
215 |
+
msgid ""
|
216 |
+
"Univocal identification name in the URL for each product (slug from post if "
|
217 |
+
"empty)"
|
218 |
msgstr ""
|
219 |
|
220 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1064
|
221 |
+
msgid "Label in Singular"
|
222 |
msgstr ""
|
223 |
|
224 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1065
|
225 |
+
msgid "Set a label in singular (title of portfolio if empty)"
|
|
|
|
|
226 |
msgstr ""
|
227 |
|
228 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1070
|
229 |
+
msgid "Label in Plural"
|
230 |
msgstr ""
|
231 |
|
232 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1071
|
233 |
+
msgid "Set a label in plural (title of portfolio if empty)"
|
|
|
|
|
234 |
msgstr ""
|
235 |
|
236 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1076
|
239 |
|
240 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1077
|
241 |
msgid ""
|
242 |
+
"If you want to use categories in the portfolio, set a name for taxonomy. "
|
243 |
+
"Name should be a slug (must not contain capital letters nor spaces) and must "
|
244 |
+
"not be more than 32 characters long (database structure restriction)."
|
|
|
245 |
msgstr ""
|
246 |
|
247 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1082
|
249 |
msgstr ""
|
250 |
|
251 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1083
|
252 |
+
msgid "Set univocal name for each category page URL."
|
253 |
msgstr ""
|
254 |
|
255 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1088
|
257 |
msgstr ""
|
258 |
|
259 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1089
|
260 |
+
msgid "Layout for single page of this portfolio"
|
261 |
msgstr ""
|
262 |
|
263 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1130
|
271 |
|
272 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1475
|
273 |
#, php-format
|
274 |
+
msgid "Show frontend of the %s"
|
275 |
msgstr ""
|
276 |
|
277 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1482
|
282 |
|
283 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1631
|
284 |
#, php-format
|
285 |
+
msgid "Add %s from images"
|
286 |
msgstr ""
|
287 |
|
288 |
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1633
|
289 |
msgid "Add with multiupload"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: ../plugin-fw/lib/yit-plugin-panel-wc.php:345
|
293 |
+
msgid "The changes you have made will be lost if you leave this page."
|
294 |
msgstr ""
|
295 |
|
296 |
#: ../plugin-fw/lib/yit-plugin-panel.php:61
|
309 |
msgstr ""
|
310 |
|
311 |
#: ../plugin-fw/lib/yit-plugin-panel.php:274
|
|
|
312 |
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:8
|
313 |
msgid ""
|
314 |
+
"If you continue with this action, you will reset all options in this page."
|
|
|
315 |
msgstr ""
|
316 |
|
317 |
#: ../plugin-fw/lib/yit-plugin-panel.php:276
|
323 |
#: ../plugin-fw/lib/yit-plugin-panel.php:276
|
324 |
#: ../plugin-fw/lib/yit-plugin-subpanel.php:147
|
325 |
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
|
326 |
+
msgid "Are you sure?"
|
327 |
msgstr ""
|
328 |
|
329 |
#: ../plugin-fw/lib/yit-plugin-panel.php:410
|
330 |
msgid ""
|
331 |
+
"The element you have entered already exists. Please, enter another name."
|
332 |
msgstr ""
|
333 |
|
334 |
#: ../plugin-fw/lib/yit-plugin-panel.php:411
|
353 |
msgstr ""
|
354 |
|
355 |
#: ../plugin-fw/lib/yit-plugin-panel.php:417
|
356 |
+
msgid "An error has occurred during import. Please try again."
|
357 |
msgstr ""
|
358 |
|
359 |
#: ../plugin-fw/lib/yit-plugin-panel.php:418
|
360 |
+
msgid "The added file is not valid."
|
361 |
msgstr ""
|
362 |
|
363 |
#: ../plugin-fw/lib/yit-plugin-panel.php:419
|
364 |
+
msgid "Sorry, import is disabled."
|
365 |
msgstr ""
|
366 |
|
367 |
#: ../plugin-fw/lib/yit-plugin-panel.php:420
|
368 |
+
msgid "Sorting successful."
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: ../plugin-fw/lib/yit-plugin-subpanel.php:145
|
372 |
+
msgid ""
|
373 |
+
"If you continue with this action, you will reset all the options in this "
|
374 |
+
"page."
|
375 |
msgstr ""
|
376 |
|
377 |
#: ../plugin-fw/lib/yit-pointers.php:70
|
380 |
|
381 |
#: ../plugin-fw/lib/yit-pointers.php:71
|
382 |
msgid ""
|
383 |
+
"From now on, you can find all plugin options in YIT Plugin menu.\n"
|
384 |
+
" For each plugin installed, "
|
385 |
+
"customization settings will be available as a new entry in YIT Plugin menu."
|
|
|
386 |
msgstr ""
|
387 |
|
388 |
#: ../plugin-fw/lib/yit-pointers.php:73 ../plugin-fw/lib/yit-pointers.php:89
|
399 |
|
400 |
#: ../plugin-fw/lib/yit-pointers.php:85
|
401 |
msgid ""
|
402 |
+
"From now on, you can find all options of your plugins in YIT Plugin menu.\n"
|
403 |
+
" Any time one of our plugins is updated, "
|
404 |
+
"a new entry will be added to this menu.\n"
|
405 |
+
" For example, after the update, plugin "
|
406 |
+
"options (such as for YITH WooCommerce Wishlist, YITH WooCommerce Ajax "
|
|
|
407 |
"Search, etc.)\n"
|
408 |
+
" will be moved from previous location to "
|
409 |
+
"YIT Plugin tab."
|
410 |
msgstr ""
|
411 |
|
412 |
#: ../plugin-fw/lib/yit-upgrade.php:119
|
423 |
|
424 |
#: ../plugin-fw/lib/yit-upgrade.php:122
|
425 |
msgid ""
|
426 |
+
"please <a href=\"%activate_link%\">activate</a> your copy of %plugin_name%."
|
427 |
msgstr ""
|
428 |
|
429 |
#: ../plugin-fw/lib/yit-upgrade.php:123
|
455 |
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
456 |
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
|
457 |
"have to activate the plugin on a single site of the network to benefit from "
|
458 |
+
"automatic updates.</em>"
|
459 |
msgstr ""
|
460 |
|
461 |
#: ../plugin-fw/lib/yit-upgrade.php:418
|
476 |
msgstr ""
|
477 |
|
478 |
#: ../plugin-fw/lib/yit-upgrade.php:493
|
479 |
+
msgid "You can't update the plugins for this site."
|
480 |
msgstr ""
|
481 |
|
482 |
#: ../plugin-fw/lib/yit-upgrade.php:497
|
483 |
+
msgid ""
|
484 |
+
"You do not have sufficient permissions to update the plugins for this site."
|
485 |
msgstr ""
|
486 |
|
487 |
#: ../plugin-fw/lib/yit-upgrade.php:504
|
490 |
|
491 |
#: ../plugin-fw/licence/lib/yit-licence.php:148
|
492 |
#, php-format
|
493 |
+
msgid "%field% field cannot be empty"
|
494 |
msgstr ""
|
495 |
|
496 |
#: ../plugin-fw/licence/lib/yit-licence.php:149
|
497 |
+
msgid "%field_1% and %field_2% fields cannot be empty"
|
498 |
msgstr ""
|
499 |
|
500 |
#: ../plugin-fw/licence/lib/yit-licence.php:150
|
510 |
msgstr ""
|
511 |
|
512 |
#: ../plugin-fw/licence/lib/yit-licence.php:531
|
513 |
+
msgid "Software has been deactivated"
|
514 |
msgstr ""
|
515 |
|
516 |
#: ../plugin-fw/licence/lib/yit-licence.php:532
|
517 |
+
msgid "Maximum number of activations exceeded"
|
518 |
msgstr ""
|
519 |
|
520 |
#: ../plugin-fw/licence/lib/yit-licence.php:533
|
530 |
msgstr ""
|
531 |
|
532 |
#: ../plugin-fw/licence/lib/yit-licence.php:536
|
533 |
+
msgid "Licence key has been banned"
|
534 |
msgstr ""
|
535 |
|
536 |
#: ../plugin-fw/licence/lib/yit-plugin-licence.php:63
|
563 |
msgstr ""
|
564 |
|
565 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:35
|
566 |
+
msgid "Products to be activated"
|
567 |
msgstr ""
|
568 |
|
569 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:54
|
575 |
msgstr ""
|
576 |
|
577 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:77
|
578 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:109
|
579 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:133
|
580 |
msgid "Product Name"
|
581 |
msgstr ""
|
582 |
|
583 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:78
|
584 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:110
|
585 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:134
|
586 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:145
|
587 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:337
|
588 |
msgid "Email"
|
589 |
msgstr ""
|
590 |
|
591 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:79
|
592 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:111
|
593 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:135
|
594 |
msgid "Licence Key"
|
595 |
msgstr ""
|
596 |
|
597 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:80
|
598 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:136
|
599 |
msgid "Expires"
|
600 |
msgstr ""
|
601 |
|
605 |
|
606 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:82
|
607 |
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:95
|
608 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:137
|
609 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:147
|
610 |
msgid "Renew"
|
611 |
msgstr ""
|
612 |
|
615 |
msgid "%1s out of %2s"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:105
|
619 |
msgid "Banned"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:129
|
623 |
msgid "Expired"
|
624 |
msgstr ""
|
625 |
|
699 |
|
700 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:78
|
701 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:270
|
702 |
+
msgid "Insert the title for the field."
|
703 |
msgstr ""
|
704 |
|
705 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:83
|
710 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:87
|
711 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:279
|
712 |
msgid ""
|
713 |
+
"REQUIRED: Field identification name to be entered into email body. "
|
714 |
+
"<strong>Note:</strong>Use only lowercase characters and underscores."
|
|
|
715 |
msgstr ""
|
716 |
|
717 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:92
|
721 |
|
722 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:100
|
723 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:292
|
724 |
+
msgid "Select the type for this field."
|
725 |
msgstr ""
|
726 |
|
727 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:105
|
731 |
|
732 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:109
|
733 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:301
|
734 |
+
msgid "Select this option if you want this field appears as already checked."
|
735 |
msgstr ""
|
736 |
|
737 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:114
|
758 |
|
759 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:127
|
760 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:319
|
761 |
+
msgid "Error Message"
|
762 |
msgstr ""
|
763 |
|
764 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:131
|
773 |
|
774 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:140
|
775 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:332
|
776 |
+
msgid "Select this option if it must be required."
|
777 |
msgstr ""
|
778 |
|
779 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:149
|
780 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:341
|
781 |
+
msgid "Select this option if the email must be valid."
|
782 |
msgstr ""
|
783 |
|
784 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:154
|
788 |
|
789 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:158
|
790 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:350
|
791 |
+
msgid "Select this if it is the email you can reply to."
|
792 |
msgstr ""
|
793 |
|
794 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:163
|
799 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:167
|
800 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:359
|
801 |
msgid ""
|
802 |
+
"Insert additional class(es) (separated by commas) for more personalization."
|
803 |
msgstr ""
|
804 |
|
805 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:172
|
836 |
|
837 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:244
|
838 |
#: ../plugin-fw/templates/metaboxes/types/contactform.php:418
|
839 |
+
msgid "Set field length."
|
840 |
msgstr ""
|
841 |
|
842 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
|
854 |
|
855 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:53
|
856 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:96
|
857 |
+
msgid "Content of the tab. (HTML is supported)"
|
858 |
msgstr ""
|
859 |
|
860 |
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:65
|
917 |
msgid "No sidebar"
|
918 |
msgstr ""
|
919 |
|
|
|
|
|
|
|
|
|
920 |
#: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:31
|
921 |
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:39
|
922 |
msgid "Right sidebar"
|
929 |
msgstr ""
|
930 |
|
931 |
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:51
|
932 |
+
msgid "Left Sidebar"
|
933 |
msgstr ""
|
934 |
|
935 |
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:62
|
936 |
+
msgid "Right Sidebar"
|
937 |
msgstr ""
|
938 |
|
939 |
#: ../plugin-fw/templates/metaboxes/types/typography.php:42
|
1007 |
"updates and support through our platform available 24h/24."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: ../plugin-options/settings-options.php:38
|
1011 |
+
#: ../plugin-options/settings-options.php:80
|
1012 |
+
#: ../plugin-options/settings-options.php:88
|
1013 |
+
msgid "\"Add to cart\" button"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: ../plugin-options/settings-options.php:40
|
1017 |
+
msgid "Exclude selected products (See \"Exclusions\" tab)"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: ../plugin-options/settings-options.php:50
|
1021 |
+
msgid "General Settings"
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: ../plugin-options/settings-options.php:56
|
1025 |
+
msgid "Enable YITH Woocommerce Catalog Mode"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
#: ../plugin-options/settings-options.php:63
|
1029 |
+
msgid "Admin View"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: ../plugin-options/settings-options.php:65
|
1033 |
+
msgid "Enable Catalog Mode also for administrators"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: ../plugin-options/settings-options.php:74
|
1037 |
+
msgid "Catalog Mode Settings"
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: ../plugin-options/settings-options.php:82
|
1041 |
+
msgid "Hide in product details page"
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: ../plugin-options/settings-options.php:90
|
1045 |
+
msgid "Hide in other pages"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: ../plugin-options/settings-options.php:97
|
1049 |
+
msgid "\"Cart\" and \"Checkout\" pages"
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: ../plugin-options/settings-options.php:99
|
1053 |
+
msgid "Hide"
|
1054 |
msgstr ""
|
plugin-fw/assets/css/yit-plugin-panel.css
CHANGED
@@ -144,7 +144,7 @@
|
|
144 |
width: 100%!important;
|
145 |
}
|
146 |
|
147 |
-
/* === Chosen Customizzation === */
|
148 |
|
149 |
.yith-choosen .chosen-choices {
|
150 |
line-height: 27px;
|
@@ -180,6 +180,22 @@
|
|
180 |
background-color: #FAFAFA;
|
181 |
}
|
182 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
|
184 |
/* Style to woocommerce panel*/
|
185 |
#plugin-fw-wc{
|
144 |
width: 100%!important;
|
145 |
}
|
146 |
|
147 |
+
/* === Multiple Chosen Customizzation === */
|
148 |
|
149 |
.yith-choosen .chosen-choices {
|
150 |
line-height: 27px;
|
180 |
background-color: #FAFAFA;
|
181 |
}
|
182 |
|
183 |
+
/* === Single Chosen Customizzation === */
|
184 |
+
|
185 |
+
.yith-choosen .chosen-container-single .chosen-default {
|
186 |
+
background: transparent;
|
187 |
+
border-color: #ddd;
|
188 |
+
}
|
189 |
+
|
190 |
+
.yith-choosen .chosen-search > input[type=text]{
|
191 |
+
width: 100% !important;
|
192 |
+
}
|
193 |
+
|
194 |
+
.yith-choosen .chosen-container-single .chosen-single {
|
195 |
+
background: transparent;
|
196 |
+
border-color: #ddd;
|
197 |
+
}
|
198 |
+
|
199 |
|
200 |
/* Style to woocommerce panel*/
|
201 |
#plugin-fw-wc{
|
plugin-fw/lib/yit-cpt-unlimited.php
CHANGED
@@ -1056,7 +1056,7 @@ class YIT_CPT_Unlimited {
|
|
1056 |
|
1057 |
'rewrite' => array(
|
1058 |
'label' => __( 'Rewrite', 'yit' ),
|
1059 |
-
'desc' => __( '
|
1060 |
'type' => 'text',
|
1061 |
'std' => '' ),
|
1062 |
|
@@ -1080,7 +1080,7 @@ class YIT_CPT_Unlimited {
|
|
1080 |
|
1081 |
'taxonomy_rewrite' => array(
|
1082 |
'label' => __( 'Taxonomy Rewrite', 'yit' ),
|
1083 |
-
'desc' => __( 'Set
|
1084 |
'type' => 'text',
|
1085 |
'std' => '' ),
|
1086 |
|
@@ -1628,7 +1628,7 @@ class YIT_CPT_Unlimited {
|
|
1628 |
var button = $('<a />', {
|
1629 |
href: '#',
|
1630 |
class: 'multi-uploader add-new-h2',
|
1631 |
-
'data-uploader_title': '<?php printf( __( 'Add %s
|
1632 |
'data-uploader_button_text': '<?php printf( __( 'Add %s', 'yit' ), $label_plural ) ?>'
|
1633 |
}).text('<?php _e( 'Add with multiupload', 'yit' ) ?>');
|
1634 |
|
1056 |
|
1057 |
'rewrite' => array(
|
1058 |
'label' => __( 'Rewrite', 'yit' ),
|
1059 |
+
'desc' => __( 'Univocal identification name in the URL for each product (slug from post if empty)', 'yit' ),
|
1060 |
'type' => 'text',
|
1061 |
'std' => '' ),
|
1062 |
|
1080 |
|
1081 |
'taxonomy_rewrite' => array(
|
1082 |
'label' => __( 'Taxonomy Rewrite', 'yit' ),
|
1083 |
+
'desc' => __( 'Set univocal name for each category page URL.', 'yit' ),
|
1084 |
'type' => 'text',
|
1085 |
'std' => '' ),
|
1086 |
|
1628 |
var button = $('<a />', {
|
1629 |
href: '#',
|
1630 |
class: 'multi-uploader add-new-h2',
|
1631 |
+
'data-uploader_title': '<?php printf( __( 'Add %s from images', 'yit' ), $label_plural ) ?>',
|
1632 |
'data-uploader_button_text': '<?php printf( __( 'Add %s', 'yit' ), $label_plural ) ?>'
|
1633 |
}).text('<?php _e( 'Add with multiupload', 'yit' ) ?>');
|
1634 |
|
plugin-fw/lib/yit-metabox.php
CHANGED
@@ -30,7 +30,7 @@ if ( ! class_exists( 'YIT_Metabox' ) ) {
|
|
30 |
* 'fields' => array(
|
31 |
* 'meta_checkbox' => array(
|
32 |
* 'label' => __( 'Show title', 'yit' ),
|
33 |
-
* 'desc' => __( 'Show
|
34 |
* 'type' => 'checkbox',
|
35 |
* 'private' => false,
|
36 |
* 'std' => '1'),
|
30 |
* 'fields' => array(
|
31 |
* 'meta_checkbox' => array(
|
32 |
* 'label' => __( 'Show title', 'yit' ),
|
33 |
+
* 'desc' => __( 'Show title of the page or not.', 'yit' ),
|
34 |
* 'type' => 'checkbox',
|
35 |
* 'private' => false,
|
36 |
* 'std' => '1'),
|
plugin-fw/lib/yit-plugin-panel-wc.php
CHANGED
@@ -63,6 +63,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
|
|
63 |
add_action( 'admin_bar_menu', array( $this, 'add_admin_bar_menu' ), 100 );
|
64 |
add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
|
65 |
add_action( 'admin_init', array( $this, 'woocommerce_update_options' ) );
|
|
|
66 |
|
67 |
add_action( 'woocommerce_admin_field_boxinfo', array( $this, 'yit_boxinfo' ), 10, 1 );
|
68 |
add_action( 'woocommerce_admin_field_videobox', array( $this, 'yit_videobox' ), 10, 1 );
|
@@ -120,7 +121,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
|
|
120 |
* @author Emanuela Castorina <emanuela.castorina@yithemes.com>
|
121 |
*/
|
122 |
public function yit_videobox( $args = array() ) {
|
123 |
-
if ( !empty( $args ) ) {
|
124 |
extract( $args );
|
125 |
require_once( YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/woocommerce/woocommerce-videobox.php' );
|
126 |
}
|
@@ -157,6 +158,27 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
|
|
157 |
}
|
158 |
}
|
159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
/**
|
161 |
* Returns current active tab slug
|
162 |
*
|
@@ -240,6 +262,26 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
|
|
240 |
}
|
241 |
}
|
242 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
/**
|
244 |
* Update options
|
245 |
*
|
@@ -300,7 +342,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
|
|
300 |
wp_enqueue_script( 'woocommerce_settings', $woocommerce->plugin_url() . '/assets/js/admin/settings.min.js', array( 'jquery', 'jquery-ui-datepicker','jquery-ui-dialog', 'jquery-ui-sortable', 'iris', 'chosen' ), $woocommerce->version, true );
|
301 |
wp_enqueue_script( 'yit-plugin-panel', YIT_CORE_PLUGIN_URL . '/assets/js/yit-plugin-panel.min.js', array( 'jquery', 'jquery-chosen' ), $this->version, true );
|
302 |
wp_localize_script( 'woocommerce_settings', 'woocommerce_settings_params', array(
|
303 |
-
'i18n_nav_warning' => __( 'The changes you made will be lost if you leave this page.', 'yit' )
|
304 |
) );
|
305 |
}
|
306 |
|
63 |
add_action( 'admin_bar_menu', array( $this, 'add_admin_bar_menu' ), 100 );
|
64 |
add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
|
65 |
add_action( 'admin_init', array( $this, 'woocommerce_update_options' ) );
|
66 |
+
add_filter( 'woocommerce_screen_ids', array( $this, 'add_allowed_screen_id' ) );
|
67 |
|
68 |
add_action( 'woocommerce_admin_field_boxinfo', array( $this, 'yit_boxinfo' ), 10, 1 );
|
69 |
add_action( 'woocommerce_admin_field_videobox', array( $this, 'yit_videobox' ), 10, 1 );
|
121 |
* @author Emanuela Castorina <emanuela.castorina@yithemes.com>
|
122 |
*/
|
123 |
public function yit_videobox( $args = array() ) {
|
124 |
+
if ( ! empty( $args ) ) {
|
125 |
extract( $args );
|
126 |
require_once( YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/woocommerce/woocommerce-videobox.php' );
|
127 |
}
|
158 |
}
|
159 |
}
|
160 |
|
161 |
+
/**
|
162 |
+
* Add the plugin woocommerce page settings in the screen ids of woocommerce
|
163 |
+
*
|
164 |
+
* @param $screen_ids
|
165 |
+
*
|
166 |
+
* @return mixed
|
167 |
+
* @since 1.0.0
|
168 |
+
* @author Antonino Scarfì <antonino.scarfi@yithemes.com>
|
169 |
+
*/
|
170 |
+
public function add_allowed_screen_id( $screen_ids ) {
|
171 |
+
global $admin_page_hooks;
|
172 |
+
|
173 |
+
if ( ! isset( $admin_page_hooks[ $this->settings['parent_page'] ] ) ) {
|
174 |
+
return $screen_ids;
|
175 |
+
}
|
176 |
+
|
177 |
+
$screen_ids[] = $admin_page_hooks[ $this->settings['parent_page'] ] . '_page_' . $this->settings['page'];
|
178 |
+
|
179 |
+
return $screen_ids;
|
180 |
+
}
|
181 |
+
|
182 |
/**
|
183 |
* Returns current active tab slug
|
184 |
*
|
262 |
}
|
263 |
}
|
264 |
|
265 |
+
/**
|
266 |
+
* Fire the action to print the custom tab
|
267 |
+
*
|
268 |
+
* @param $current_tab string
|
269 |
+
*
|
270 |
+
* @return void
|
271 |
+
* @since 1.0
|
272 |
+
* @author Antonino Scarfì <antonino.scarfi@yithemes.com>
|
273 |
+
*/
|
274 |
+
public function print_video_box() {
|
275 |
+
$file = $this->settings['options-path'] . '/video-box.php';
|
276 |
+
|
277 |
+
if ( ! file_exists( $file ) ) {
|
278 |
+
return;
|
279 |
+
}
|
280 |
+
|
281 |
+
$args = include_once( $file );
|
282 |
+
$this->yit_videobox( $args );
|
283 |
+
}
|
284 |
+
|
285 |
/**
|
286 |
* Update options
|
287 |
*
|
342 |
wp_enqueue_script( 'woocommerce_settings', $woocommerce->plugin_url() . '/assets/js/admin/settings.min.js', array( 'jquery', 'jquery-ui-datepicker','jquery-ui-dialog', 'jquery-ui-sortable', 'iris', 'chosen' ), $woocommerce->version, true );
|
343 |
wp_enqueue_script( 'yit-plugin-panel', YIT_CORE_PLUGIN_URL . '/assets/js/yit-plugin-panel.min.js', array( 'jquery', 'jquery-chosen' ), $this->version, true );
|
344 |
wp_localize_script( 'woocommerce_settings', 'woocommerce_settings_params', array(
|
345 |
+
'i18n_nav_warning' => __( 'The changes you have made will be lost if you leave this page.', 'yit' )
|
346 |
) );
|
347 |
}
|
348 |
|
plugin-fw/lib/yit-plugin-panel.php
CHANGED
@@ -271,9 +271,9 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
271 |
<input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'yit' ) ?>" style="float:left;margin-right:10px;" />
|
272 |
</form>
|
273 |
<form method="post">
|
274 |
-
<?php $warning = __( 'If you
|
275 |
<input type="hidden" name="yit-action" value="reset" />
|
276 |
-
<input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset Defaults', 'yit' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure
|
277 |
</form>
|
278 |
<p> </p>
|
279 |
<?php endif ?>
|
@@ -407,7 +407,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
407 |
public function message() {
|
408 |
|
409 |
$message = array(
|
410 |
-
'element_exists' => $this->get_message( '<strong>' . __( 'The element you have
|
411 |
'saved' => $this->get_message( '<strong>' . __( 'Settings saved', 'yit' ) . '.</strong>', 'updated', false ),
|
412 |
'reset' => $this->get_message( '<strong>' . __( 'Settings reset', 'yit' ) . '.</strong>', 'updated', false ),
|
413 |
'delete' => $this->get_message( '<strong>' . __( 'Element deleted correctly.', 'yit' ) . '</strong>', 'updated', false ),
|
@@ -415,7 +415,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
415 |
'settings-updated' => $this->get_message( '<strong>' . __( 'Element updated correctly.', 'yit' ) . '</strong>', 'updated', false ),
|
416 |
'imported' => $this->get_message( '<strong>' . __( 'Database imported correctly.', 'yit' ) . '</strong>', 'updated', false ),
|
417 |
'no-imported' => $this->get_message( '<strong>' . __( 'An error has occurred during import. Please try again.', 'yit' ) . '</strong>', 'error', false ),
|
418 |
-
'file-not-valid' => $this->get_message( '<strong>' . __( 'The file
|
419 |
'cant-import' => $this->get_message( '<strong>' . __( 'Sorry, import is disabled.', 'yit' ) . '</strong>', 'error', false ),
|
420 |
'ord' => $this->get_message( '<strong>' . __( 'Sorting successful.', 'yit' ) . '</strong>', 'updated', false )
|
421 |
);
|
@@ -467,6 +467,11 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
467 |
|
468 |
foreach ( ( array ) glob( $option_files_path . '*.php' ) as $filename ) {
|
469 |
preg_match( '/(.*)-options\.(.*)/', basename( $filename ), $filename_parts );
|
|
|
|
|
|
|
|
|
|
|
470 |
$tab = $filename_parts[1];
|
471 |
|
472 |
$tabs[$tab] = $filename;
|
271 |
<input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'yit' ) ?>" style="float:left;margin-right:10px;" />
|
272 |
</form>
|
273 |
<form method="post">
|
274 |
+
<?php $warning = __( 'If you continue with this action, you will reset all options in this page.', 'yit' ) ?>
|
275 |
<input type="hidden" name="yit-action" value="reset" />
|
276 |
+
<input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset Defaults', 'yit' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure?', 'yit' ) ?>');" />
|
277 |
</form>
|
278 |
<p> </p>
|
279 |
<?php endif ?>
|
407 |
public function message() {
|
408 |
|
409 |
$message = array(
|
410 |
+
'element_exists' => $this->get_message( '<strong>' . __( 'The element you have entered already exists. Please, enter another name.', 'yit' ) . '</strong>', 'error', false ),
|
411 |
'saved' => $this->get_message( '<strong>' . __( 'Settings saved', 'yit' ) . '.</strong>', 'updated', false ),
|
412 |
'reset' => $this->get_message( '<strong>' . __( 'Settings reset', 'yit' ) . '.</strong>', 'updated', false ),
|
413 |
'delete' => $this->get_message( '<strong>' . __( 'Element deleted correctly.', 'yit' ) . '</strong>', 'updated', false ),
|
415 |
'settings-updated' => $this->get_message( '<strong>' . __( 'Element updated correctly.', 'yit' ) . '</strong>', 'updated', false ),
|
416 |
'imported' => $this->get_message( '<strong>' . __( 'Database imported correctly.', 'yit' ) . '</strong>', 'updated', false ),
|
417 |
'no-imported' => $this->get_message( '<strong>' . __( 'An error has occurred during import. Please try again.', 'yit' ) . '</strong>', 'error', false ),
|
418 |
+
'file-not-valid' => $this->get_message( '<strong>' . __( 'The added file is not valid.', 'yit' ) . '</strong>', 'error', false ),
|
419 |
'cant-import' => $this->get_message( '<strong>' . __( 'Sorry, import is disabled.', 'yit' ) . '</strong>', 'error', false ),
|
420 |
'ord' => $this->get_message( '<strong>' . __( 'Sorting successful.', 'yit' ) . '</strong>', 'updated', false )
|
421 |
);
|
467 |
|
468 |
foreach ( ( array ) glob( $option_files_path . '*.php' ) as $filename ) {
|
469 |
preg_match( '/(.*)-options\.(.*)/', basename( $filename ), $filename_parts );
|
470 |
+
|
471 |
+
if ( ! isset( $filename_parts[1] ) ) {
|
472 |
+
continue;
|
473 |
+
}
|
474 |
+
|
475 |
$tab = $filename_parts[1];
|
476 |
|
477 |
$tabs[$tab] = $filename;
|
plugin-fw/lib/yit-plugin-subpanel.php
CHANGED
@@ -142,9 +142,9 @@ if ( ! class_exists( 'YIT_Plugin_SubPanel' ) ) {
|
|
142 |
<input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'yit' ) ?>" style="float:left;margin-right:10px;" />
|
143 |
</form>
|
144 |
<form method="post">
|
145 |
-
<?php $warning = __( 'If you
|
146 |
<input type="hidden" name="yit-action" value="reset" />
|
147 |
-
<input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset Defaults', 'yit' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure
|
148 |
</form>
|
149 |
<p> </p>
|
150 |
<?php endif ?>
|
142 |
<input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'yit' ) ?>" style="float:left;margin-right:10px;" />
|
143 |
</form>
|
144 |
<form method="post">
|
145 |
+
<?php $warning = __( 'If you continue with this action, you will reset all the options in this page.', 'yit' ) ?>
|
146 |
<input type="hidden" name="yit-action" value="reset" />
|
147 |
+
<input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset Defaults', 'yit' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure?', 'yit' ) ?>');" />
|
148 |
</form>
|
149 |
<p> </p>
|
150 |
<?php endif ?>
|
plugin-fw/lib/yit-pointers.php
CHANGED
@@ -82,9 +82,9 @@ if ( ! class_exists( 'YIT_Pointers' ) ) {
|
|
82 |
'content' => sprintf( '<h3> %s </h3> <p> %s </p> <p> %s <a href="http://yithemes.com/product-category/plugins/" target="_blank">Yithemes.com</a> %s
|
83 |
<a href="https://profiles.wordpress.org/yithemes/" target="_blank">Wordpress.org</a></p>',
|
84 |
__( 'Plugins Upgraded', 'yit' ),
|
85 |
-
__( 'From now on, you can find all
|
86 |
Any time one of our plugins is updated, a new entry will be added to this menu.
|
87 |
-
For example, after update, plugin options (such for YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.)
|
88 |
will be moved from previous location to YIT Plugin tab.', 'yit' ),
|
89 |
__( 'Discover all our plugins available on:', 'yit' ),
|
90 |
__( 'and', 'yit' )
|
82 |
'content' => sprintf( '<h3> %s </h3> <p> %s </p> <p> %s <a href="http://yithemes.com/product-category/plugins/" target="_blank">Yithemes.com</a> %s
|
83 |
<a href="https://profiles.wordpress.org/yithemes/" target="_blank">Wordpress.org</a></p>',
|
84 |
__( 'Plugins Upgraded', 'yit' ),
|
85 |
+
__( 'From now on, you can find all options of your plugins in YIT Plugin menu.
|
86 |
Any time one of our plugins is updated, a new entry will be added to this menu.
|
87 |
+
For example, after the update, plugin options (such as for YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.)
|
88 |
will be moved from previous location to YIT Plugin tab.', 'yit' ),
|
89 |
__( 'Discover all our plugins available on:', 'yit' ),
|
90 |
__( 'and', 'yit' )
|
plugin-fw/lib/yit-upgrade.php
CHANGED
@@ -119,7 +119,7 @@ if ( ! class_exists( 'YIT_Upgrade' ) ) {
|
|
119 |
'new_version' => __( 'There is a new version of %plugin_name% available.', 'yit' ),
|
120 |
'latest' => __( 'View version %latest% details.', 'yit' ),
|
121 |
'unavailable' => __( 'Automatic update is unavailable for this plugin,', 'yit' ),
|
122 |
-
'activate' => __( 'please <a href="%activate_link%">
|
123 |
'update_now' => __( 'Update now.', 'yit' )
|
124 |
|
125 |
);
|
@@ -490,11 +490,11 @@ if ( ! class_exists( 'YIT_Upgrade' ) ) {
|
|
490 |
$action = isset($_REQUEST['action']) ? $_REQUEST['action'] : '';
|
491 |
|
492 |
if( 'upgrade-plugin-multisite' != $action ){
|
493 |
-
wp_die( __( 'You can\'t update plugins for this site.', 'yit' ) );
|
494 |
}
|
495 |
|
496 |
if ( ! current_user_can( 'update_plugins' ) ) {
|
497 |
-
wp_die( __( 'You do not have sufficient permissions to update plugins for this site.', 'yit' ) );
|
498 |
}
|
499 |
|
500 |
$this->check_update( get_site_transient( 'update_plugins') , true );
|
119 |
'new_version' => __( 'There is a new version of %plugin_name% available.', 'yit' ),
|
120 |
'latest' => __( 'View version %latest% details.', 'yit' ),
|
121 |
'unavailable' => __( 'Automatic update is unavailable for this plugin,', 'yit' ),
|
122 |
+
'activate' => __( 'please <a href="%activate_link%">activate</a> your copy of %plugin_name%.', 'yit' ),
|
123 |
'update_now' => __( 'Update now.', 'yit' )
|
124 |
|
125 |
);
|
490 |
$action = isset($_REQUEST['action']) ? $_REQUEST['action'] : '';
|
491 |
|
492 |
if( 'upgrade-plugin-multisite' != $action ){
|
493 |
+
wp_die( __( 'You can\'t update the plugins for this site.', 'yit' ) );
|
494 |
}
|
495 |
|
496 |
if ( ! current_user_can( 'update_plugins' ) ) {
|
497 |
+
wp_die( __( 'You do not have sufficient permissions to update the plugins for this site.', 'yit' ) );
|
498 |
}
|
499 |
|
500 |
$this->check_update( get_site_transient( 'update_plugins') , true );
|
plugin-fw/licence/lib/yit-licence.php
CHANGED
@@ -528,8 +528,8 @@ if ( ! class_exists( 'YIT_Licence' ) ) {
|
|
528 |
$error_strings = array(
|
529 |
'100' => __( 'Invalid Request', 'yit' ),
|
530 |
'101' => __( 'Invalid licence key', 'yit' ),
|
531 |
-
'102' => __( 'Software has been
|
532 |
-
'103' => __( '
|
533 |
'104' => __( 'Invalid instance ID', 'yit' ),
|
534 |
'105' => __( 'Invalid security key', 'yit' ),
|
535 |
'106' => __( 'Licence key has expired', 'yit' ),
|
528 |
$error_strings = array(
|
529 |
'100' => __( 'Invalid Request', 'yit' ),
|
530 |
'101' => __( 'Invalid licence key', 'yit' ),
|
531 |
+
'102' => __( 'Software has been deactivated', 'yit' ),
|
532 |
+
'103' => __( 'Maximum number of activations exceeded', 'yit' ),
|
533 |
'104' => __( 'Invalid instance ID', 'yit' ),
|
534 |
'105' => __( 'Invalid security key', 'yit' ),
|
535 |
'106' => __( 'Licence key has expired', 'yit' ),
|
plugin-fw/templates/metaboxes/types/contactform.php
CHANGED
@@ -75,7 +75,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
|
|
75 |
|
76 |
<p>
|
77 |
<input type="text" value="<?php echo esc_attr( $value[$index]['title'] ) ?>" id="<?php echo $id ?>_title_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][title]" />
|
78 |
-
<span class="desc inline"><?php _e( 'Insert title for the field.', 'yit' ) ?></span>
|
79 |
</p>
|
80 |
</div>
|
81 |
|
@@ -97,7 +97,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
|
|
97 |
<option value="<?php echo esc_attr( $type ) ?>"<?php selected( $type, $value[$index]['type'] ) ?>><?php echo $name_type ?></option>
|
98 |
<?php endforeach; ?>
|
99 |
</select>
|
100 |
-
<span class="desc inline"><?php _e( 'Select type for this field.', 'yit' ) ?></span>
|
101 |
</p>
|
102 |
</div>
|
103 |
|
@@ -106,7 +106,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
|
|
106 |
|
107 |
<p>
|
108 |
<input type="checkbox" id="<?php echo $id ?>_already_checked_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][already_checked]" value="1"<?php checked( $value[$index]['already_checked'] ) ?> />
|
109 |
-
<span class="desc inline"><?php _e( 'Select this if you want this field already checked.', 'yit' ) ?></span>
|
110 |
</p>
|
111 |
</div>
|
112 |
|
@@ -124,7 +124,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
|
|
124 |
</div>
|
125 |
|
126 |
<div class="the-metabox text clearfix">
|
127 |
-
<label for="<?php echo $id ?>_error_<?php echo $index ?>"><?php _e( 'Message
|
128 |
|
129 |
<p>
|
130 |
<input type="text" value="<?php echo esc_attr( $value[$index]['error'] ) ?>" id="<?php echo $id ?>_error_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][error]" />
|
@@ -137,7 +137,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
|
|
137 |
|
138 |
<p>
|
139 |
<input type="checkbox" id="<?php echo $id ?>_required_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][required]" value="1"<?php checked( $value[$index]['required'] ) ?> />
|
140 |
-
<span class="desc inline"><?php _e( 'Select this if it must be required.', 'yit' ) ?></span>
|
141 |
</p>
|
142 |
</div>
|
143 |
|
@@ -146,7 +146,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
|
|
146 |
|
147 |
<p>
|
148 |
<input type="checkbox" id="<?php echo $id ?>_is_email_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][is_email]" value="1"<?php checked( $value[$index]['is_email'] ) ?> />
|
149 |
-
<span class="desc inline"><?php _e( 'Select this if
|
150 |
</p>
|
151 |
</div>
|
152 |
|
@@ -267,7 +267,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
|
|
267 |
|
268 |
<p>
|
269 |
<input disabled type="text" value="" id="<?php echo $id ?>_title" name="<?php echo $name ?>[][title]" />
|
270 |
-
<span class="desc inline"><?php _e( 'Insert title for the field.', 'yit' ) ?></span>
|
271 |
</p>
|
272 |
</div>
|
273 |
|
@@ -289,7 +289,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
|
|
289 |
<option value="<?php echo esc_attr( $type ) ?>"><?php echo $name_type ?></option>
|
290 |
<?php endforeach; ?>
|
291 |
</select>
|
292 |
-
<span class="desc inline"><?php _e( 'Select type for this field.', 'yit' ) ?></span>
|
293 |
</p>
|
294 |
</div>
|
295 |
|
@@ -298,7 +298,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
|
|
298 |
|
299 |
<p>
|
300 |
<input disabled type="checkbox" id="<?php echo $id ?>_already_checked" name="<?php echo $name ?>[][already_checked]" value="1" />
|
301 |
-
<span class="desc inline"><?php _e( 'Select this if you want this field already checked.', 'yit' ) ?></span>
|
302 |
</p>
|
303 |
</div>
|
304 |
|
@@ -316,7 +316,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
|
|
316 |
</div>
|
317 |
|
318 |
<div class="the-metabox text clearfix">
|
319 |
-
<label for="<?php echo $id ?>_error"><?php _e( 'Message
|
320 |
|
321 |
<p>
|
322 |
<input disabled type="text" value="" id="<?php echo $id ?>_error" name="<?php echo $name ?>[][error]" />
|
@@ -329,7 +329,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
|
|
329 |
|
330 |
<p>
|
331 |
<input disabled type="checkbox" id="<?php echo $id ?>_required" name="<?php echo $name ?>[][required]" value="1" />
|
332 |
-
<span class="desc inline"><?php _e( 'Select this if it must be required.', 'yit' ) ?></span>
|
333 |
</p>
|
334 |
</div>
|
335 |
|
@@ -338,7 +338,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
|
|
338 |
|
339 |
<p>
|
340 |
<input disabled type="checkbox" id="<?php echo $id ?>_is_email" name="<?php echo $name ?>[][is_email]" value="1" />
|
341 |
-
<span class="desc inline"><?php _e( 'Select this if
|
342 |
</p>
|
343 |
</div>
|
344 |
|
75 |
|
76 |
<p>
|
77 |
<input type="text" value="<?php echo esc_attr( $value[$index]['title'] ) ?>" id="<?php echo $id ?>_title_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][title]" />
|
78 |
+
<span class="desc inline"><?php _e( 'Insert the title for the field.', 'yit' ) ?></span>
|
79 |
</p>
|
80 |
</div>
|
81 |
|
97 |
<option value="<?php echo esc_attr( $type ) ?>"<?php selected( $type, $value[$index]['type'] ) ?>><?php echo $name_type ?></option>
|
98 |
<?php endforeach; ?>
|
99 |
</select>
|
100 |
+
<span class="desc inline"><?php _e( 'Select the type for this field.', 'yit' ) ?></span>
|
101 |
</p>
|
102 |
</div>
|
103 |
|
106 |
|
107 |
<p>
|
108 |
<input type="checkbox" id="<?php echo $id ?>_already_checked_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][already_checked]" value="1"<?php checked( $value[$index]['already_checked'] ) ?> />
|
109 |
+
<span class="desc inline"><?php _e( 'Select this option if you want this field appears as already checked.', 'yit' ) ?></span>
|
110 |
</p>
|
111 |
</div>
|
112 |
|
124 |
</div>
|
125 |
|
126 |
<div class="the-metabox text clearfix">
|
127 |
+
<label for="<?php echo $id ?>_error_<?php echo $index ?>"><?php _e( 'Error Message', 'yit' ) ?></label>
|
128 |
|
129 |
<p>
|
130 |
<input type="text" value="<?php echo esc_attr( $value[$index]['error'] ) ?>" id="<?php echo $id ?>_error_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][error]" />
|
137 |
|
138 |
<p>
|
139 |
<input type="checkbox" id="<?php echo $id ?>_required_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][required]" value="1"<?php checked( $value[$index]['required'] ) ?> />
|
140 |
+
<span class="desc inline"><?php _e( 'Select this option if it must be required.', 'yit' ) ?></span>
|
141 |
</p>
|
142 |
</div>
|
143 |
|
146 |
|
147 |
<p>
|
148 |
<input type="checkbox" id="<?php echo $id ?>_is_email_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][is_email]" value="1"<?php checked( $value[$index]['is_email'] ) ?> />
|
149 |
+
<span class="desc inline"><?php _e( 'Select this option if the email must be valid.', 'yit' ) ?></span>
|
150 |
</p>
|
151 |
</div>
|
152 |
|
267 |
|
268 |
<p>
|
269 |
<input disabled type="text" value="" id="<?php echo $id ?>_title" name="<?php echo $name ?>[][title]" />
|
270 |
+
<span class="desc inline"><?php _e( 'Insert the title for the field.', 'yit' ) ?></span>
|
271 |
</p>
|
272 |
</div>
|
273 |
|
289 |
<option value="<?php echo esc_attr( $type ) ?>"><?php echo $name_type ?></option>
|
290 |
<?php endforeach; ?>
|
291 |
</select>
|
292 |
+
<span class="desc inline"><?php _e( 'Select the type for this field.', 'yit' ) ?></span>
|
293 |
</p>
|
294 |
</div>
|
295 |
|
298 |
|
299 |
<p>
|
300 |
<input disabled type="checkbox" id="<?php echo $id ?>_already_checked" name="<?php echo $name ?>[][already_checked]" value="1" />
|
301 |
+
<span class="desc inline"><?php _e( 'Select this option if you want this field appears as already checked.', 'yit' ) ?></span>
|
302 |
</p>
|
303 |
</div>
|
304 |
|
316 |
</div>
|
317 |
|
318 |
<div class="the-metabox text clearfix">
|
319 |
+
<label for="<?php echo $id ?>_error"><?php _e( 'Error Message', 'yit' ) ?></label>
|
320 |
|
321 |
<p>
|
322 |
<input disabled type="text" value="" id="<?php echo $id ?>_error" name="<?php echo $name ?>[][error]" />
|
329 |
|
330 |
<p>
|
331 |
<input disabled type="checkbox" id="<?php echo $id ?>_required" name="<?php echo $name ?>[][required]" value="1" />
|
332 |
+
<span class="desc inline"><?php _e( 'Select this option if it must be required.', 'yit' ) ?></span>
|
333 |
</p>
|
334 |
</div>
|
335 |
|
338 |
|
339 |
<p>
|
340 |
<input disabled type="checkbox" id="<?php echo $id ?>_is_email" name="<?php echo $name ?>[][is_email]" value="1" />
|
341 |
+
<span class="desc inline"><?php _e( 'Select this option if the email must be valid.', 'yit' ) ?></span>
|
342 |
</p>
|
343 |
</div>
|
344 |
|
plugin-fw/templates/metaboxes/types/sidebar-layout.php
CHANGED
@@ -25,7 +25,7 @@ $sidebar = ! isset( $value['sidebar'] ) ? '' : $value['sidebar'];
|
|
25 |
<img src="<?php echo YIT_CORE_ASSETS_URL ?>/images/sideleft.png" title="<?php _e( 'Left sidebar', 'yit' ) ?>" alt="<?php _e( 'Left sidebar', 'yit' ) ?>" />
|
26 |
|
27 |
<input type="radio" name="<?php echo $name ?>[layout]" id="<?php echo $id . '-no' ?>" value="sidebar-no" <?php checked( $layout, 'sidebar-no' ) ?> />
|
28 |
-
<img src="<?php echo YIT_CORE_ASSETS_URL ?>/images/noside.png" title="<?php _e( 'No sidebar', 'yit' ) ?>" alt="<?php _e( 'No
|
29 |
|
30 |
<input type="radio" name="<?php echo $name ?>[layout]" id="<?php echo $id . '-right' ?>" value="sidebar-right" <?php checked( $layout, 'sidebar-right' ) ?> />
|
31 |
<img src="<?php echo YIT_CORE_ASSETS_URL ?>/images/sideright.png" title="<?php _e( 'Right sidebar', 'yit' ) ?>" alt="<?php _e( 'Right sidebar', 'yit' ) ?>" />
|
25 |
<img src="<?php echo YIT_CORE_ASSETS_URL ?>/images/sideleft.png" title="<?php _e( 'Left sidebar', 'yit' ) ?>" alt="<?php _e( 'Left sidebar', 'yit' ) ?>" />
|
26 |
|
27 |
<input type="radio" name="<?php echo $name ?>[layout]" id="<?php echo $id . '-no' ?>" value="sidebar-no" <?php checked( $layout, 'sidebar-no' ) ?> />
|
28 |
+
<img src="<?php echo YIT_CORE_ASSETS_URL ?>/images/noside.png" title="<?php _e( 'No sidebar', 'yit' ) ?>" alt="<?php _e( 'No sidebar', 'yit' ) ?>" />
|
29 |
|
30 |
<input type="radio" name="<?php echo $name ?>[layout]" id="<?php echo $id . '-right' ?>" value="sidebar-right" <?php checked( $layout, 'sidebar-right' ) ?> />
|
31 |
<img src="<?php echo YIT_CORE_ASSETS_URL ?>/images/sideright.png" title="<?php _e( 'Right sidebar', 'yit' ) ?>" alt="<?php _e( 'Right sidebar', 'yit' ) ?>" />
|
plugin-fw/templates/panel/woocommerce/woocommerce-form.php
CHANGED
@@ -5,8 +5,8 @@
|
|
5 |
<input style="float: left; margin-right: 10px;" class="button-primary" type="submit" value="<?php _e( 'Save Changes', 'yit' )?>"/>
|
6 |
</form>
|
7 |
<form id="plugin-fw-wc-reset" method="post">
|
8 |
-
<?php $warning = __( 'If you
|
9 |
<input type="hidden" name="yit-action" value="wc-options-reset" />
|
10 |
-
<input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset Defaults', 'yit' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure
|
11 |
</form>
|
12 |
</div>
|
5 |
<input style="float: left; margin-right: 10px;" class="button-primary" type="submit" value="<?php _e( 'Save Changes', 'yit' )?>"/>
|
6 |
</form>
|
7 |
<form id="plugin-fw-wc-reset" method="post">
|
8 |
+
<?php $warning = __( 'If you continue with this action, you will reset all options in this page.', 'yit' ) ?>
|
9 |
<input type="hidden" name="yit-action" value="wc-options-reset" />
|
10 |
+
<input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset Defaults', 'yit' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure?', 'yit' ) ?>');" />
|
11 |
</form>
|
12 |
</div>
|
plugin-fw/yit-functions.php
CHANGED
@@ -272,7 +272,7 @@ if ( ! function_exists( 'yit_plugin_get_attachment_id' ) ) {
|
|
272 |
|
273 |
foreach ( $ids as $id ) {
|
274 |
$attachment_image = wp_get_attachment_image_src( $id, 'full' );
|
275 |
-
if ( $url == str_replace( 'https://', 'http://', array_shift( $attachment_image ) ) ) {
|
276 |
return $id;
|
277 |
}
|
278 |
}
|
272 |
|
273 |
foreach ( $ids as $id ) {
|
274 |
$attachment_image = wp_get_attachment_image_src( $id, 'full' );
|
275 |
+
if ( $url == array_shift( $attachment_image ) || $url == str_replace( 'https://', 'http://', array_shift( $attachment_image ) ) ) {
|
276 |
return $id;
|
277 |
}
|
278 |
}
|
plugin-options/settings-options.php
CHANGED
@@ -20,9 +20,9 @@ $videobox = defined( 'YWCTM_PREMIUM' ) ? '' : array(
|
|
20 |
'title_first_column' => __( 'Discover the Advanced Features', 'ywctm' ),
|
21 |
'description_first_column' => __( 'Upgrade to the PREMIUM VERSION of YITH WooCommerce Catalog Mode to benefit from all features!', 'ywctm' ),
|
22 |
'video' => array(
|
23 |
-
'video_id'
|
24 |
-
'video_image_url'
|
25 |
-
'video_description'
|
26 |
),
|
27 |
'title_second_column' => __( 'Get Support and Pro Features', 'ywctm' ),
|
28 |
'description_second_column' => __( 'By purchasing the premium version of the plugin, you will take advantage of the advanced features of the product and you will get one year of free updates and support through our platform available 24h/24.', 'ywctm' ),
|
@@ -45,7 +45,7 @@ $exclusion = ! defined( 'YWCTM_PREMIUM' ) ? '' : array (
|
|
45 |
|
46 |
return array(
|
47 |
'settings' => array(
|
48 |
-
|
49 |
'catalog_mode_general_title' => array(
|
50 |
'name' => __( 'General Settings', 'ywctm' ),
|
51 |
'type' => 'title',
|
20 |
'title_first_column' => __( 'Discover the Advanced Features', 'ywctm' ),
|
21 |
'description_first_column' => __( 'Upgrade to the PREMIUM VERSION of YITH WooCommerce Catalog Mode to benefit from all features!', 'ywctm' ),
|
22 |
'video' => array(
|
23 |
+
'video_id' => '120697979',
|
24 |
+
'video_image_url' => YWCTM_ASSETS_URL.'images/yith-woocommerce-catalog-mode.jpg',
|
25 |
+
'video_description' => __( 'YITH WooCommerce Catalog Mode', 'ywctm' ),
|
26 |
),
|
27 |
'title_second_column' => __( 'Get Support and Pro Features', 'ywctm' ),
|
28 |
'description_second_column' => __( 'By purchasing the premium version of the plugin, you will take advantage of the advanced features of the product and you will get one year of free updates and support through our platform available 24h/24.', 'ywctm' ),
|
45 |
|
46 |
return array(
|
47 |
'settings' => array(
|
48 |
+
'section_general_settings_videobox' => $videobox,
|
49 |
'catalog_mode_general_title' => array(
|
50 |
'name' => __( 'General Settings', 'ywctm' ),
|
51 |
'type' => 'title',
|
readme.txt
CHANGED
@@ -15,12 +15,12 @@ YITH WooCommerce Catalog Mode allows you to disable shop functions.
|
|
15 |
YITH WooCommerce Catalog Mode lets you deactivate the selling features of your e-commerce site.
|
16 |
|
17 |
With this plugin you can:
|
18 |
-
|
19 |
-
|
20 |
|
21 |
How it works:
|
22 |
-
|
23 |
-
|
24 |
|
25 |
Full documentation is available [here](http://yithemes.com/docs-plugins/yith-woocommerce-catalog-mode/).
|
26 |
|
15 |
YITH WooCommerce Catalog Mode lets you deactivate the selling features of your e-commerce site.
|
16 |
|
17 |
With this plugin you can:
|
18 |
+
1. Create a showcase of your products
|
19 |
+
2. Temporarily deactivate the selling operations to perform maintenance actions in your warehouse without putting offline your site
|
20 |
|
21 |
How it works:
|
22 |
+
1. You can hide the "Add to cart" button in the site pages
|
23 |
+
2. You can hide the "Cart" and "Checkout page and the "Cart" widget in the site pages
|
24 |
|
25 |
Full documentation is available [here](http://yithemes.com/docs-plugins/yith-woocommerce-catalog-mode/).
|
26 |
|
templates/admin/premium.php
ADDED
@@ -0,0 +1,296 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<style>
|
2 |
+
.section{
|
3 |
+
margin-left: -20px;
|
4 |
+
margin-right: -20px;
|
5 |
+
font-family: "Raleway",san-serif;
|
6 |
+
}
|
7 |
+
.section h1{
|
8 |
+
text-align: center;
|
9 |
+
text-transform: uppercase;
|
10 |
+
color: #808a97;
|
11 |
+
font-size: 35px;
|
12 |
+
font-weight: 700;
|
13 |
+
line-height: normal;
|
14 |
+
display: inline-block;
|
15 |
+
width: 100%;
|
16 |
+
margin: 50px 0 0;
|
17 |
+
}
|
18 |
+
.section:nth-child(even){
|
19 |
+
background-color: #fff;
|
20 |
+
}
|
21 |
+
.section:nth-child(odd){
|
22 |
+
background-color: #f1f1f1;
|
23 |
+
}
|
24 |
+
.section .section-title img{
|
25 |
+
display: table-cell;
|
26 |
+
vertical-align: middle;
|
27 |
+
width: auto;
|
28 |
+
margin-right: 15px;
|
29 |
+
}
|
30 |
+
.section h2,
|
31 |
+
.section h3 {
|
32 |
+
display: inline-block;
|
33 |
+
vertical-align: middle;
|
34 |
+
padding: 0;
|
35 |
+
font-size: 24px;
|
36 |
+
font-weight: 700;
|
37 |
+
color: #808a97;
|
38 |
+
text-transform: uppercase;
|
39 |
+
}
|
40 |
+
|
41 |
+
.section .section-title h2{
|
42 |
+
display: table-cell;
|
43 |
+
vertical-align: middle;
|
44 |
+
}
|
45 |
+
|
46 |
+
.section-title{
|
47 |
+
display: table;
|
48 |
+
}
|
49 |
+
|
50 |
+
.section h3 {
|
51 |
+
font-size: 14px;
|
52 |
+
line-height: 28px;
|
53 |
+
margin-bottom: 0;
|
54 |
+
display: block;
|
55 |
+
}
|
56 |
+
|
57 |
+
.section p{
|
58 |
+
font-size: 13px;
|
59 |
+
margin: 25px 0;
|
60 |
+
}
|
61 |
+
.section ul li{
|
62 |
+
margin-bottom: 4px;
|
63 |
+
}
|
64 |
+
.landing-container{
|
65 |
+
max-width: 750px;
|
66 |
+
margin-left: auto;
|
67 |
+
margin-right: auto;
|
68 |
+
padding: 50px 0 30px;
|
69 |
+
}
|
70 |
+
.landing-container:after{
|
71 |
+
display: block;
|
72 |
+
clear: both;
|
73 |
+
content: '';
|
74 |
+
}
|
75 |
+
.landing-container .col-1,
|
76 |
+
.landing-container .col-2{
|
77 |
+
float: left;
|
78 |
+
box-sizing: border-box;
|
79 |
+
padding: 0 15px;
|
80 |
+
}
|
81 |
+
.landing-container .col-1 img{
|
82 |
+
width: 100%;
|
83 |
+
}
|
84 |
+
.landing-container .col-1{
|
85 |
+
width: 55%;
|
86 |
+
}
|
87 |
+
.landing-container .col-2{
|
88 |
+
width: 45%;
|
89 |
+
}
|
90 |
+
.premium-cta{
|
91 |
+
background-color: #808a97;
|
92 |
+
color: #fff;
|
93 |
+
border-radius: 6px;
|
94 |
+
padding: 20px 15px;
|
95 |
+
}
|
96 |
+
.premium-cta:after{
|
97 |
+
content: '';
|
98 |
+
display: block;
|
99 |
+
clear: both;
|
100 |
+
}
|
101 |
+
.premium-cta p{
|
102 |
+
margin: 7px 0;
|
103 |
+
font-size: 14px;
|
104 |
+
font-weight: 500;
|
105 |
+
display: inline-block;
|
106 |
+
width: 60%;
|
107 |
+
}
|
108 |
+
.premium-cta a.button{
|
109 |
+
border-radius: 6px;
|
110 |
+
height: 60px;
|
111 |
+
float: right;
|
112 |
+
background: url(<?php echo YWCTM_ASSETS_URL?>/images/upgrade.png) #ff643f no-repeat 13px 13px;
|
113 |
+
border-color: #ff643f;
|
114 |
+
box-shadow: none;
|
115 |
+
outline: none;
|
116 |
+
color: #fff;
|
117 |
+
position: relative;
|
118 |
+
padding: 9px 50px 9px 70px;
|
119 |
+
}
|
120 |
+
.premium-cta a.button:hover,
|
121 |
+
.premium-cta a.button:active,
|
122 |
+
.premium-cta a.button:focus{
|
123 |
+
color: #fff;
|
124 |
+
background: url(<?php echo YWCTM_ASSETS_URL?>/images/upgrade.png) #971d00 no-repeat 13px 13px;
|
125 |
+
border-color: #971d00;
|
126 |
+
box-shadow: none;
|
127 |
+
outline: none;
|
128 |
+
}
|
129 |
+
.premium-cta a.button:focus{
|
130 |
+
top: 1px;
|
131 |
+
}
|
132 |
+
.premium-cta a.button span{
|
133 |
+
line-height: 13px;
|
134 |
+
}
|
135 |
+
.premium-cta a.button .highlight{
|
136 |
+
display: block;
|
137 |
+
font-size: 20px;
|
138 |
+
font-weight: 700;
|
139 |
+
line-height: 20px;
|
140 |
+
}
|
141 |
+
.premium-cta .highlight{
|
142 |
+
text-transform: uppercase;
|
143 |
+
background: none;
|
144 |
+
font-weight: 800;
|
145 |
+
color: #fff;
|
146 |
+
}
|
147 |
+
|
148 |
+
@media (max-width: 768px) {
|
149 |
+
.section{margin: 0}
|
150 |
+
.premium-cta p{
|
151 |
+
width: 100%;
|
152 |
+
}
|
153 |
+
.premium-cta{
|
154 |
+
text-align: center;
|
155 |
+
}
|
156 |
+
.premium-cta a.button{
|
157 |
+
float: none;
|
158 |
+
}
|
159 |
+
}
|
160 |
+
|
161 |
+
@media (max-width: 480px){
|
162 |
+
.wrap{
|
163 |
+
margin-right: 0;
|
164 |
+
}
|
165 |
+
.section{
|
166 |
+
margin: 0;
|
167 |
+
}
|
168 |
+
.landing-container .col-1,
|
169 |
+
.landing-container .col-2{
|
170 |
+
width: 100%;
|
171 |
+
padding: 0 15px;
|
172 |
+
}
|
173 |
+
.section-odd .col-1 {
|
174 |
+
float: left;
|
175 |
+
margin-right: -100%;
|
176 |
+
}
|
177 |
+
.section-odd .col-2 {
|
178 |
+
float: right;
|
179 |
+
margin-top: 65%;
|
180 |
+
}
|
181 |
+
}
|
182 |
+
|
183 |
+
@media (max-width: 320px){
|
184 |
+
.premium-cta a.button{
|
185 |
+
padding: 9px 20px 9px 70px;
|
186 |
+
}
|
187 |
+
|
188 |
+
.section .section-title img{
|
189 |
+
display: none;
|
190 |
+
}
|
191 |
+
}
|
192 |
+
</style>
|
193 |
+
<div class="landing">
|
194 |
+
<div class="section section-cta section-odd">
|
195 |
+
<div class="landing-container">
|
196 |
+
<div class="premium-cta">
|
197 |
+
<p>
|
198 |
+
Upgrade to the <span class="highlight">premium version</span>
|
199 |
+
of <span class="highlight">YITH WooCommerce Catalog Mode</span> to benefit from all features!
|
200 |
+
</p>
|
201 |
+
<a href="http://yithemes.com/themes/plugins/yith-woocommerce-catalog-mode/" target="_blank" class="premium-cta-button button btn">
|
202 |
+
<span class="highlight">UPGRADE</span>
|
203 |
+
<span>to the premium version</span>
|
204 |
+
</a>
|
205 |
+
</div>
|
206 |
+
</div>
|
207 |
+
</div>
|
208 |
+
<div class="section section-even clear" style="background: url(<?php echo YWCTM_ASSETS_URL ?>/images/01-bg.png) no-repeat #fff; background-position: 85% 75%">
|
209 |
+
<h1>Premium Features</h1>
|
210 |
+
<div class="landing-container">
|
211 |
+
<div class="col-1">
|
212 |
+
<img src="<?php echo YWCTM_ASSETS_URL ?>/images/01.png" alt="Review Title" />
|
213 |
+
</div>
|
214 |
+
<div class="col-2">
|
215 |
+
<div class="section-title">
|
216 |
+
<img src="<?php echo YWCTM_ASSETS_URL ?>/images/01-icon.png" alt="Review Title"/>
|
217 |
+
<h2>HIDE PRICE</h2>
|
218 |
+
</div>
|
219 |
+
<p>Hide the price of products in your shop and replace it with a text. Decide if some of the products
|
220 |
+
have to be excluded and if hiding price has to be applied to all or restricted only to unlogged
|
221 |
+
users.
|
222 |
+
</p>
|
223 |
+
</div>
|
224 |
+
</div>
|
225 |
+
</div>
|
226 |
+
<div class="section section-odd clear" style="background: url(<?php echo YWCTM_ASSETS_URL ?>/images/02-bg.png) no-repeat #f1f1f1; background-position: 15% 100%">
|
227 |
+
<div class="landing-container">
|
228 |
+
<div class="col-2">
|
229 |
+
<div class="section-title">
|
230 |
+
<img src="<?php echo YWCTM_ASSETS_URL ?>/images/02-icon.png" alt="Attachment List" />
|
231 |
+
<h2>INQUIRY FORM</h2>
|
232 |
+
</div>
|
233 |
+
<p>Improve single product page by adding a tab with an inquiry form explicitly thought to let them send messages to site administrator.</p>
|
234 |
+
</div>
|
235 |
+
<div class="col-1">
|
236 |
+
<img src="<?php echo YWCTM_ASSETS_URL ?>/images/02.png" alt="Attachment List" />
|
237 |
+
</div>
|
238 |
+
</div>
|
239 |
+
</div>
|
240 |
+
<div class="section section-even clear" style="background: url(<?php echo YWCTM_ASSETS_URL ?>/images/03-bg.png) no-repeat #fff; background-position: 85% 100%">
|
241 |
+
<div class="landing-container">
|
242 |
+
<div class="col-1">
|
243 |
+
<img src="<?php echo YWCTM_ASSETS_URL ?>/images/03.png" alt="Vote the review" />
|
244 |
+
</div>
|
245 |
+
<div class="col-2">
|
246 |
+
<div class="section-title">
|
247 |
+
<img src="<?php echo YWCTM_ASSETS_URL ?>/images/03-icon.png" alt="Vote the review" />
|
248 |
+
<h2>CUSTOM BUTTON</h2>
|
249 |
+
</div>
|
250 |
+
<p>Add a button in single product page to call users to a specific action, depending on the specified link (email sending, skype call, telephone call).</p>
|
251 |
+
</div>
|
252 |
+
</div>
|
253 |
+
</div>
|
254 |
+
<div class="section section-odd clear" style="background: url(<?php echo YWCTM_ASSETS_URL ?>/images/04-bg.png) no-repeat #f1f1f1; background-position: 15% 100%">
|
255 |
+
<div class="landing-container">
|
256 |
+
<div class="col-2">
|
257 |
+
<div class="section-title">
|
258 |
+
<img src="<?php echo YWCTM_ASSETS_URL ?>/images/04-icon.png" alt="Number" />
|
259 |
+
<h2>PRODUCT REVIEWS</h2>
|
260 |
+
</div>
|
261 |
+
<p>You can disable product reviewing system of your shop and decide if applying it to all users or just to unlogged ones.</p>
|
262 |
+
</div>
|
263 |
+
<div class="col-1">
|
264 |
+
<img src="<?php echo YWCTM_ASSETS_URL ?>/images/04.png" alt="Number" />
|
265 |
+
</div>
|
266 |
+
</div>
|
267 |
+
</div>
|
268 |
+
<div class="section section-even clear" style="background: url(<?php echo YWCTM_ASSETS_URL ?>/images/05-bg.png) no-repeat #fff; background-position: 85% 100%">
|
269 |
+
<div class="landing-container">
|
270 |
+
<div class="col-1">
|
271 |
+
<img src="<?php echo YWCTM_ASSETS_URL ?>/images/05.png" alt="Filter by rating" />
|
272 |
+
</div>
|
273 |
+
<div class="col-2">
|
274 |
+
<div class="section-title">
|
275 |
+
<img src="<?php echo YWCTM_ASSETS_URL?>/images/05-icon.png" alt="Filter by rating" />
|
276 |
+
<h2>EXCLUSION LIST</h2>
|
277 |
+
</div>
|
278 |
+
<p>Set plugin options, but if you want that options concerning price visibility and ‘Add to cart’ do not apply to specific products, add them to exclusion list and, voilà, problem solved.</p>
|
279 |
+
</div>
|
280 |
+
</div>
|
281 |
+
</div>
|
282 |
+
<div class="section section-cta section-odd">
|
283 |
+
<div class="landing-container">
|
284 |
+
<div class="premium-cta">
|
285 |
+
<p>
|
286 |
+
Upgrade to the <span class="highlight">premium version</span>
|
287 |
+
of <span class="highlight">YITH WooCommerce Catalog Mode</span> to benefit from all features!
|
288 |
+
</p>
|
289 |
+
<a href="http://yithemes.com/themes/plugins/yith-woocommerce-catalog-mode/" target="_blank" class="premium-cta-button button btn">
|
290 |
+
<span class="highlight">UPGRADE</span>
|
291 |
+
<span>to the premium version</span>
|
292 |
+
</a>
|
293 |
+
</div>
|
294 |
+
</div>
|
295 |
+
</div>
|
296 |
+
</div>
|