YITH WooCommerce Ajax Product Filter - Version 3.4.3

Version Description

  • Released: 04 Jul, 2017 =

  • Fix: No filtered results with Page Builder by SiteOrigin

  • Fix: Warning with salient theme

  • Fix: Reset filter use term_taxonomy_id instead of term_id

Download this release

Release Info

Developer yithemes
Plugin Icon 128x128 YITH WooCommerce Ajax Product Filter
Version 3.4.3
Comparing to
See all releases

Code changes from version 3.4.2 to 3.4.3

README.txt CHANGED
@@ -3,8 +3,8 @@
3
  Contributors: yithemes
4
  Tags: woocommerce ajax product filter download, woocommerce, widget, ajax, ajax filtered nav, ajax navigation, ajax filtered navigation, woocommerce layered navigation, woocommerce layered nav, product filter, product filters, ajax product filter, woocommerce ajax product filter, woocommerce filters, sidebar filter, sidebar ajax filter, ajax price filter, price filter, product sorting, woocommerce filter, taxonomy filter, attribute filter, attributes filter, woocommerce product sort, ajax sort, woocommerce ajax product filter, advanced product filters, ajax product filters, filters, woocommerce ajax product filters, woocommerce product filters, woocommerce product filters, category filter, attribute filters, woocommerce products filter, woocommerce price filter, yit, yith, yithemes
5
  Requires at least: 4.0
6
- Tested up to: 4.7.5
7
- Stable tag: 3.4.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -159,6 +159,12 @@ If you want to see a demonstration version of the premium plugin, you can see it
159
 
160
  == Changelog ==
161
 
 
 
 
 
 
 
162
  = 3.4.2 - Released: 05 Jun, 2017 =
163
 
164
  * New: Support to Basel theme
3
  Contributors: yithemes
4
  Tags: woocommerce ajax product filter download, woocommerce, widget, ajax, ajax filtered nav, ajax navigation, ajax filtered navigation, woocommerce layered navigation, woocommerce layered nav, product filter, product filters, ajax product filter, woocommerce ajax product filter, woocommerce filters, sidebar filter, sidebar ajax filter, ajax price filter, price filter, product sorting, woocommerce filter, taxonomy filter, attribute filter, attributes filter, woocommerce product sort, ajax sort, woocommerce ajax product filter, advanced product filters, ajax product filters, filters, woocommerce ajax product filters, woocommerce product filters, woocommerce product filters, category filter, attribute filters, woocommerce products filter, woocommerce price filter, yit, yith, yithemes
5
  Requires at least: 4.0
6
+ Tested up to: 4.8
7
+ Stable tag: 3.4.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
159
 
160
  == Changelog ==
161
 
162
+ = 3.4.3 - Released: 04 Jul, 2017 =
163
+
164
+ * Fix: No filtered results with Page Builder by SiteOrigin
165
+ * Fix: Warning with salient theme
166
+ * Fix: Reset filter use term_taxonomy_id instead of term_id
167
+
168
  = 3.4.2 - Released: 05 Jun, 2017 =
169
 
170
  * New: Support to Basel theme
includes/class.yith-wcan-frontend.php CHANGED
@@ -128,7 +128,7 @@ if ( ! class_exists( 'YITH_WCAN_Frontend' ) ) {
128
  $is_qTranslateX_and_yit_core_1_0_0 = class_exists( 'QTX_Translator' ) && defined('YIT_CORE_VERSION') && '1.0.0' == YIT_CORE_VERSION;
129
  $is_problematic_theme = in_array( wp_get_theme()->get_template(), $problematic_theme );
130
 
131
- if( $is_qTranslateX_and_yit_core_1_0_0 || $is_problematic_theme ){
132
  add_filter( 'yith_wcan_skip_layered_nav_query', '__return_true' );
133
  }
134
 
128
  $is_qTranslateX_and_yit_core_1_0_0 = class_exists( 'QTX_Translator' ) && defined('YIT_CORE_VERSION') && '1.0.0' == YIT_CORE_VERSION;
129
  $is_problematic_theme = in_array( wp_get_theme()->get_template(), $problematic_theme );
130
 
131
+ if( $is_qTranslateX_and_yit_core_1_0_0 || $is_problematic_theme || class_exists( 'SiteOrigin_Panels' ) ){
132
  add_filter( 'yith_wcan_skip_layered_nav_query', '__return_true' );
133
  }
134
 
init.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: YITH WooCommerce Ajax Product Filter
4
  * Plugin URI: http://yithemes.com/
5
  * Description: YITH WooCommerce Ajax Product Filter offers the perfect way to filter all the products of your shop.
6
- * Version: 3.4.2
7
  * Author: YITHEMES
8
  * Author URI: http://yithemes.com/
9
  * Text Domain: yith-woocommerce-ajax-navigation
@@ -64,7 +64,7 @@ load_plugin_textdomain( 'yith-woocommerce-ajax-navigation', false, dirname( plug
64
  ! defined( 'YITH_WCAN' ) && define( 'YITH_WCAN', true );
65
  ! defined( 'YITH_WCAN_URL' ) && define( 'YITH_WCAN_URL', plugin_dir_url( __FILE__ ) );
66
  ! defined( 'YITH_WCAN_DIR' ) && define( 'YITH_WCAN_DIR', plugin_dir_path( __FILE__ ) );
67
- ! defined( 'YITH_WCAN_VERSION' ) && define( 'YITH_WCAN_VERSION', '3.4.2' );
68
  ! defined( 'YITH_WCAN_FREE_INIT') && define( 'YITH_WCAN_FREE_INIT', plugin_basename( __FILE__ ) );
69
  ! defined( 'YITH_WCAN_FILE' ) && define( 'YITH_WCAN_FILE', __FILE__ );
70
 
3
  * Plugin Name: YITH WooCommerce Ajax Product Filter
4
  * Plugin URI: http://yithemes.com/
5
  * Description: YITH WooCommerce Ajax Product Filter offers the perfect way to filter all the products of your shop.
6
+ * Version: 3.4.3
7
  * Author: YITHEMES
8
  * Author URI: http://yithemes.com/
9
  * Text Domain: yith-woocommerce-ajax-navigation
64
  ! defined( 'YITH_WCAN' ) && define( 'YITH_WCAN', true );
65
  ! defined( 'YITH_WCAN_URL' ) && define( 'YITH_WCAN_URL', plugin_dir_url( __FILE__ ) );
66
  ! defined( 'YITH_WCAN_DIR' ) && define( 'YITH_WCAN_DIR', plugin_dir_path( __FILE__ ) );
67
+ ! defined( 'YITH_WCAN_VERSION' ) && define( 'YITH_WCAN_VERSION', '3.4.3' );
68
  ! defined( 'YITH_WCAN_FREE_INIT') && define( 'YITH_WCAN_FREE_INIT', plugin_basename( __FILE__ ) );
69
  ! defined( 'YITH_WCAN_FILE' ) && define( 'YITH_WCAN_FILE', __FILE__ );
70
 
languages/yith-woocommerce-ajax-navigation-it_IT.mo CHANGED
Binary file
languages/yith-woocommerce-ajax-navigation-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-01-17 14:07+0100\n"
6
- "PO-Revision-Date: 2017-01-17 14:07+0100\n"
7
  "Last-Translator: Your Inspiration Themes <plugins@yithemes.com>\n"
8
  "Language-Team: \n"
9
  "Language: it_IT\n"
@@ -54,11 +54,11 @@ msgstr "Documentazione Plugin"
54
  #: includes/functions.yith-wcan.php:57 includes/functions.yith-wcan.php:71
55
  #: includes/functions.yith-wcan.php:93
56
  msgid "Term"
57
- msgstr "Termine"
58
 
59
  # @ yit
60
  #: includes/functions.yith-wcan.php:57
61
- #: widgets/class.yith-wcan-navigation-widget.php:716
62
  msgid "Color"
63
  msgstr "Colore"
64
 
@@ -75,7 +75,7 @@ msgstr "Colore 2"
75
  # @ yit
76
  #: includes/functions.yith-wcan.php:93
77
  msgid "Labels"
78
- msgstr "Etichette"
79
 
80
  #: init.php:46
81
  msgid ""
@@ -90,8 +90,6 @@ msgid ""
90
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
91
  "while you are using the premium one."
92
  msgstr ""
93
- "Non è possibile attivare la versione gratuita di YITH WooCommerce Ajax "
94
- "Product Filter se stai già utilizzando la versione premium"
95
 
96
  #: settings/custom-style-options.php:24
97
  msgid "Enter here your custom CSS rules:"
@@ -104,7 +102,7 @@ msgstr "Impostazioni frontend"
104
  #: settings/frontend-options.php:25
105
  msgctxt "Admin panel: option description"
106
  msgid "How To:"
107
- msgstr "Come fare per..."
108
 
109
  #: settings/frontend-options.php:27
110
  msgctxt "Admin: Panel section description"
@@ -124,7 +122,7 @@ msgstr ""
124
 
125
  #: settings/frontend-options.php:33
126
  msgid "Product Container"
127
- msgstr "Contenitore prodotti"
128
 
129
  #: settings/frontend-options.php:34
130
  msgid "Enter here the CSS class or id for the product container"
@@ -132,7 +130,7 @@ msgstr "Inserisci qui la classe CSS or l'ID del contenitore prodotto"
132
 
133
  #: settings/frontend-options.php:41
134
  msgid "Shop Pagination Container"
135
- msgstr "Contenitore paginazione"
136
 
137
  #: settings/frontend-options.php:42
138
  msgid "Enter here the CSS class or id for the shop pagination container"
@@ -141,7 +139,7 @@ msgstr ""
141
 
142
  #: settings/frontend-options.php:49
143
  msgid "Result Count Container"
144
- msgstr "Contenitore conteggio risultati"
145
 
146
  #: settings/frontend-options.php:50
147
  msgid "Enter here the CSS class or id for the results count container"
@@ -149,36 +147,50 @@ msgstr "Inserisci qui la classe CSS o l'ID dei risultati del conteggio"
149
 
150
  #: settings/frontend-options.php:57
151
  msgid "Scroll top anchor"
152
- msgstr "Torna su"
153
 
154
  #: settings/frontend-options.php:58
155
  msgid "Enter here the HTML tag for the scroll to top feature"
156
  msgstr ""
157
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158
  #: templates/admin/premium.php:203 templates/admin/premium.php:441
159
  #, php-format
160
  msgid ""
161
  "Upgrade to %1$spremium version%2$s of %1$sYITH WooCommerce Ajax Product "
162
  "Filter%2$s to benefit from all features!"
163
  msgstr ""
164
- "Aggiorna alla %1$sversione premium%2$s di %1$sYITH WooCommerce Ajax Product "
165
- "Filter%2$s per usufruire di tutte le sue funzionalità!"
166
 
167
  #: templates/admin/premium.php:206 templates/admin/premium.php:444
168
  msgid "UPGRADE"
169
- msgstr "AGGIORNA"
170
 
171
  #: templates/admin/premium.php:207 templates/admin/premium.php:445
172
  msgid "to the premium version"
173
- msgstr "alla versione premium"
174
 
175
  #: templates/admin/premium.php:213
176
  msgid "Premium Features"
177
- msgstr "Funzionalità premium"
178
 
179
  #: templates/admin/premium.php:221
180
  msgid "Two more layouts"
181
- msgstr "Due layout in più"
182
 
183
  #: templates/admin/premium.php:224
184
  #, php-format
@@ -192,19 +204,10 @@ msgid ""
192
  "On%2$s plugin, you will be able to offer the freedom to filter your shop "
193
  "products by brands thanks to the ajax technology."
194
  msgstr ""
195
- "Il widget YITH WooCommerce Ajax product Filter si arricchisce ulteriormente "
196
- "con 2 nuove tipologie di layout per il filtro dei prodotti del tuo negozio. "
197
- "1$sBicolor%2$s, perfetto per quegli attributi che fanno riferimento a due "
198
- "colori contemporaneamente (bianco/nero), per un impatto visivo immediato per "
199
- "l’utente finale. Scegli la tipologia %1$sTag%2$s se, invece, vuoi che i tuoi "
200
- "prodotti possano essere filtrati per tag prodotto. E se stai usando "
201
- "contemporaneamente anche YITH WooCommerce Brands Add-On, potrai offrire la "
202
- "possibilità di filtrare per marca i prodotti del tuo negozio grazie alla "
203
- "tecnologia AJAX."
204
 
205
  #: templates/admin/premium.php:234
206
  msgid "Price range"
207
- msgstr "Intervallo di prezzo"
208
 
209
  #: templates/admin/premium.php:237
210
  #, php-format
@@ -214,16 +217,10 @@ msgid ""
214
  "Price Filter, %1$syou can set unlimited price ranges:%2$s your users will be "
215
  "able to filter products selecting on the ranges you have set."
216
  msgstr ""
217
- "Uno dei filtri maggiormente richiesti dagli utenti all’interno di un e-"
218
- "commerce è la possibilità di selezionare i prodotti sulla base del prezzo. "
219
- "Grazie a YITH WooCommerce Filtro Ajax Elenco Prezzi %1$spotrai definire "
220
- "infiniti intervalli di prezzo%2$s, così da permettere ai tuoi utenti di "
221
- "filtrare i prodotti selezionando uno degli intervalli di prezzo da te "
222
- "definiti."
223
 
224
  #: templates/admin/premium.php:253
225
  msgid "Ajax Stock/On Sale Filters"
226
- msgstr "Filtri AJAX per Disponibili/In offerta"
227
 
228
  #: templates/admin/premium.php:256
229
  #, php-format
@@ -233,14 +230,10 @@ msgid ""
233
  "the available ones.%3$s %1$sAn additional feature for an e-commerce site "
234
  "that is worthy!%2$s"
235
  msgstr ""
236
- "Un nuovo widget per la versione premium del plugin. Con esso chiunque si "
237
- "trovi a navigare tra le pagine del tuo negozio potrà visualizzare solo i "
238
- "prodotti in offerta e/o i prodotti al momento disponibili.%3$s %1$sUna "
239
- "caratteristica aggiuntiva per un e-commerce che vale!%2$s"
240
 
241
  #: templates/admin/premium.php:266
242
  msgid "Product sorting"
243
- msgstr "Ordinamento prodotti"
244
 
245
  #: templates/admin/premium.php:269
246
  #, php-format
@@ -250,28 +243,20 @@ msgid ""
250
  "need to reload the page. Products can be sorted by rate, sales, price or "
251
  "publication date."
252
  msgstr ""
253
- "Con il nuovo widget %1$sYITH WooCommerce Disposizione Ajax%2$s, permetterai "
254
- "ai tuoi utenti di ordinare i prodotti in AJAX, senza la necessità di dover "
255
- "attendere che la pagina ricarichi. I prodotti possono essere ordinati in "
256
- "base alla valutazione, al numero di vendite, al prezzo o alla data di "
257
- "pubblicazione."
258
 
259
  #: templates/admin/premium.php:285
260
  msgid "Customized loader"
261
- msgstr "Immagine di caricamento personalizzata"
262
 
263
  #: templates/admin/premium.php:288
264
  msgid ""
265
  "From the plugin option panel, you can choose to upload a new icon for your "
266
  "loader: in this way, it will better meet your needs."
267
  msgstr ""
268
- "Dal pannello opzioni del plugin, potrai scegliere di caricare una nuova "
269
- "icona da mostrare durante il caricamento di una pagina: in questo modo, sarà "
270
- "ancora più adatto alle tue esigenze."
271
 
272
  #: templates/admin/premium.php:298
273
  msgid "WooCommerce Price Filter"
274
- msgstr "Filtro prezzi di WooCommerce"
275
 
276
  #: templates/admin/premium.php:301
277
  #, php-format
@@ -281,11 +266,6 @@ msgid ""
281
  "%2$s and activate the %1$sAjax mode%2$s to apply the filter immediately, "
282
  "without reloading the page."
283
  msgstr ""
284
- "Sfrutta le potenzialità della versione premium del plugin per modificare il "
285
- "comportamento predefinito del Filtro prezzi di WooCommerce. Cambia il "
286
- "%1$slayout del filtro%2$s e attiva la %1$smodalità AJAX%2$s così che il "
287
- "filtro possa essere applicato istantaneamente senza dover ricaricare la "
288
- "pagina."
289
 
290
  #: templates/admin/premium.php:317
291
  msgid "SEO"
@@ -298,15 +278,10 @@ msgid ""
298
  "generated by the plugin, or not: with the latter, you will be free to avoid "
299
  "possible penalizations that may apply to your site."
300
  msgstr ""
301
- "La gestione AJAX del plugin comporta l’aggiunta di specifiche query all’URL "
302
- "della pagina corrente. Scegli tu se permettere ai motori di ricerca di "
303
- "indicizzare gli URL generati dal plugin o meno: in tal modo sarai messo "
304
- "nelle condizioni di evitare eventuali penalizzazioni che potrebbero essere "
305
- "applicate al tuo sito."
306
 
307
  #: templates/admin/premium.php:330
308
  msgid " Filter by category"
309
- msgstr " Filtra per categoria"
310
 
311
  #: templates/admin/premium.php:333
312
  #, php-format
@@ -314,13 +289,10 @@ msgid ""
314
  "Configure the widget to let your users filter product by a %1$sselected "
315
  "category%2$s. Your users will be even happier to browse your shop."
316
  msgstr ""
317
- "Configura il widget per dare ai tuoi utenti la possibilità di filtrare i "
318
- "prodotti in base alla %1$scategoria selezionata%2$s. I tuoi utenti saranno "
319
- "ancora più felici di navigare all’interno del tuo negozio."
320
 
321
  #: templates/admin/premium.php:349
322
  msgid "FILTER ORDERING"
323
- msgstr "ORDINAMENTO FILTRI"
324
 
325
  #: templates/admin/premium.php:352
326
  msgid ""
@@ -328,14 +300,10 @@ msgid ""
328
  "product archieve pages: classic alphabetical order or decreasing order, "
329
  "based on the number of products contained in each filter."
330
  msgstr ""
331
- "Scegli l’ordinamento migliore per i filtri presenti all’interno delle tue "
332
- "pagine archivio prodotti: classico ordinamento alfabetico o un elenco di "
333
- "filtri ordinati in maniera decrescente in base al numero di prodotti "
334
- "contenuti in ogni filtro."
335
 
336
  #: templates/admin/premium.php:362
337
  msgid "Filter style"
338
- msgstr "Stile filtri"
339
 
340
  #: templates/admin/premium.php:365
341
  msgid ""
@@ -343,14 +311,10 @@ msgid ""
343
  "plugin gives you the possibility to show filters in \"checkbox\" style. "
344
  "Users will experience a new look of your pages while filtering products."
345
  msgstr ""
346
- "Oltre al classico stile di visualizzazione, con la versione premium del "
347
- "plugin puoi optare per una visualizzazione dei filtri in stile “checkbox”. "
348
- "Mentre filtrano i prodotti, i tuoi utenti vedranno le pagine con un nuovo "
349
- "aspetto."
350
 
351
  #: templates/admin/premium.php:381
352
  msgid "Page url"
353
- msgstr "URL della pagina"
354
 
355
  #: templates/admin/premium.php:384
356
  msgid ""
@@ -358,14 +322,10 @@ msgid ""
358
  "the same url or let it get automatically updated every time user applies a "
359
  "filter to the products list of your shop."
360
  msgstr ""
361
- "Ad ogni filtro applicato viene generato un nuovo URL per la pagina. Sta a te "
362
- "scegliere se mantenere lo stesso URL o far sì che si aggiorni "
363
- "automaticamente ogni volta che l’utente applica un filtro alla lista dei "
364
- "prodotti del tuo negozio."
365
 
366
  #: templates/admin/premium.php:394
367
  msgid "Filter by tag"
368
- msgstr "Filtra per tag"
369
 
370
  #: templates/admin/premium.php:397
371
  msgid ""
@@ -374,15 +334,10 @@ msgid ""
374
  "addition, you could organize your tags in a hierarchy and have appropriate "
375
  "tools for a better management of your products."
376
  msgstr ""
377
- "Se utilizzi i tag come un potente strumento di classificazione dei tuoi "
378
- "prodotti, configura un filtro ad hoc in maniera tale che anche i filtri per "
379
- "tag funzionino in AJAX. Inoltre, puoi anche creare una struttura gerarchica "
380
- "per i tuoi tag ed avere gli strumenti adatti per una migliore gestione dei "
381
- "tuoi prodotti."
382
 
383
  #: templates/admin/premium.php:413
384
  msgid "Reset"
385
- msgstr "Reset"
386
 
387
  #: templates/admin/premium.php:416
388
  msgid ""
@@ -392,12 +347,6 @@ msgid ""
392
  "manages this action by a specific button which reset filters and by other "
393
  "two which refresh the main view of categories and/or tags."
394
  msgstr ""
395
- "L’esperienza dell'utente sul sito richiede praticità ed intuito. Ecco perché "
396
- "è impensabile deselezionare un filtro uno per volta per tornare alla vista "
397
- "principale quando sono stati applicati molti filtri. Il plugin gestisce "
398
- "questa opzione con uno specifico pulsante per reimpostare i filtri e con "
399
- "altri due per ripristinare la visualizzazione principale di categorie e/o "
400
- "tag."
401
 
402
  #: templates/admin/premium.php:426
403
  msgid "Scroll to top"
@@ -419,72 +368,72 @@ msgctxt "Admin: Widget Title"
419
  msgid "YITH WooCommerce Ajax Product Filter"
420
  msgstr "YITH WooCommerce Filtro Prodotti Ajax"
421
 
422
- #: widgets/class.yith-wcan-navigation-widget.php:150
423
  msgid "Filters:"
424
  msgstr "Filtri:"
425
 
426
  # @ yit
427
- #: widgets/class.yith-wcan-navigation-widget.php:715
428
  msgid "List"
429
- msgstr "Elenco"
430
 
431
  # @ yit
432
- #: widgets/class.yith-wcan-navigation-widget.php:717
433
  msgid "Label"
434
  msgstr "Etichetta"
435
 
436
- #: widgets/class.yith-wcan-navigation-widget.php:718
437
  msgid "Dropdown"
438
  msgstr "Menu a tendina"
439
 
440
  # @ yit
441
- #: widgets/class.yith-wcan-navigation-widget.php:725
442
- #: widgets/class.yith-wcan-reset-navigation-widget.php:102
443
  msgid "Title"
444
  msgstr "Titolo"
445
 
446
  # @ yit
447
- #: widgets/class.yith-wcan-navigation-widget.php:731
448
  msgid "Type:"
449
  msgstr "Tipo:"
450
 
451
  # @ yit
452
- #: widgets/class.yith-wcan-navigation-widget.php:742
453
  msgid "Query Type:"
454
  msgstr "Tipo Query:"
455
 
456
  # @ yit
457
- #: widgets/class.yith-wcan-navigation-widget.php:744
458
  msgid "AND"
459
  msgstr "E"
460
 
461
  # @ yit
462
- #: widgets/class.yith-wcan-navigation-widget.php:745
463
  msgid "OR"
464
  msgstr "O"
465
 
466
  # @ yit
467
- #: widgets/class.yith-wcan-navigation-widget.php:751
468
  msgid "Attribute:"
469
  msgstr "Attributo:"
470
 
471
- #: widgets/class.yith-wcan-navigation-widget.php:758
472
  msgid "Display (default All):"
473
- msgstr "Visualizza (predefinito: tutti)"
474
 
475
- #: widgets/class.yith-wcan-navigation-widget.php:760
476
  msgid "All (no hierarchical)"
477
  msgstr "Tutti (non gerarchico)"
478
 
479
- #: widgets/class.yith-wcan-navigation-widget.php:761
480
  msgid "All (hierarchical)"
481
  msgstr "Tutti (gerarchico)"
482
 
483
- #: widgets/class.yith-wcan-navigation-widget.php:762
484
  msgid "Only Parent"
485
  msgstr "Solo Principali"
486
 
487
- #: widgets/class.yith-wcan-navigation-widget.php:769
488
  msgid "CSS custom class"
489
  msgstr "Classe CSS custom"
490
 
@@ -497,18 +446,14 @@ msgstr ""
497
  msgid "YITH WooCommerce Ajax Reset Filter"
498
  msgstr "YITH WooCommerce Filtro Ajax Reset"
499
 
500
- #: widgets/class.yith-wcan-reset-navigation-widget.php:95
501
  msgid "Reset All Filters"
502
  msgstr "Resetta tutti i filtri"
503
 
504
- #: widgets/class.yith-wcan-reset-navigation-widget.php:108
505
  msgid "Button Label"
506
  msgstr "Etichetta Pulsante"
507
 
508
- #~ msgid "Enter here the HTML tag for the scroll to top feature on mobiles"
509
- #~ msgstr ""
510
- #~ "Inserisci qui il tag HTML per la funzionalità \"Torna su\" su mobile"
511
-
512
  #~ msgid "Settings"
513
  #~ msgstr "Impostazioni"
514
 
@@ -518,18 +463,9 @@ msgstr "Etichetta Pulsante"
518
  #~ msgid "Enter here the HTML tag for the widget title"
519
  #~ msgstr "Inserisci qui il tag HTML per il titolo del widget"
520
 
521
- #~ msgid "Order by"
522
- #~ msgstr "Ordina per"
523
-
524
- #~ msgid "Sort by number of products contained or alphabetically"
525
- #~ msgstr "Ordina per numero di prodotti contenuti or in ordine alfabetico"
526
-
527
  #~ msgid "Number of products"
528
  #~ msgstr "Numero di prodotti"
529
 
530
- #~ msgid "Alphabetically"
531
- #~ msgstr "In ordine alfabetico"
532
-
533
  #~ msgid "Select the filter style"
534
  #~ msgstr "Seleziona lo stile del filtro"
535
 
@@ -613,7 +549,7 @@ msgstr "Etichetta Pulsante"
613
 
614
  #~ msgctxt "Referer to original WooCommerce Price Filter Widget"
615
  #~ msgid "Ajax WooCommerce Price Filter"
616
- #~ msgstr "Price Filter di WooCommerce in ajax"
617
 
618
  #~ msgid "Use AJAX WooCommerce price filter"
619
  #~ msgstr "Utilizza il filtro prezzo di WooCommerce in AJAX"
@@ -623,7 +559,7 @@ msgstr "Etichetta Pulsante"
623
  #~ msgstr "Slider filtro prezzi WooCommerce"
624
 
625
  #~ msgid "Use WooCommerce price filter with slider"
626
- #~ msgstr "Utilizza il Price Filter di WooCommerce con slider"
627
 
628
  #~ msgctxt "Referer to original WooCommerce Price Filter Widget"
629
  #~ msgid "Instant WooCommerce Price Filter slider"
@@ -636,11 +572,11 @@ msgstr "Etichetta Pulsante"
636
 
637
  #~ msgctxt "Referer to original WooCommerce Price Filter Widget"
638
  #~ msgid "Dropdown for WooCommerce Price Filter"
639
- #~ msgstr "Menu a tendina per Price Filter di WooCommerce"
640
 
641
  #~ msgid "Add dropdown effect to original WooCommerce Price Filter widget"
642
  #~ msgstr ""
643
- #~ "Aggiunge l'effetto di menu a tendina all'originale Price Filter di "
644
  #~ "WooCommerce"
645
 
646
  #~ msgctxt "Referer to original WooCommerce Price Filter Widget"
@@ -845,6 +781,10 @@ msgstr "Etichetta Pulsante"
845
  #~ msgid "Show \"In Stock\" filter"
846
  #~ msgstr "Mostra filtro \"Disponibili\""
847
 
 
 
 
 
848
  #~ msgid "Put here the HTML tag for the widget title"
849
  #~ msgstr "Inserisci qui il tag HTML per il titolo del widget"
850
 
@@ -1030,7 +970,7 @@ msgstr "Etichetta Pulsante"
1030
  #~ msgstr "Lista Filtri:"
1031
 
1032
  # @ yit
1033
- #~ msgid "Reset all filters setted by YITH WooCommerce Ajax Navigation"
1034
  #~ msgstr "Resetta tutti i filtri settati da YITH WooCommerce Ajax Navigation"
1035
 
1036
  # @ yit
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-07-04 16:52+0200\n"
6
+ "PO-Revision-Date: 2017-07-04 16:52+0200\n"
7
  "Last-Translator: Your Inspiration Themes <plugins@yithemes.com>\n"
8
  "Language-Team: \n"
9
  "Language: it_IT\n"
54
  #: includes/functions.yith-wcan.php:57 includes/functions.yith-wcan.php:71
55
  #: includes/functions.yith-wcan.php:93
56
  msgid "Term"
57
+ msgstr "Proprietà"
58
 
59
  # @ yit
60
  #: includes/functions.yith-wcan.php:57
61
+ #: widgets/class.yith-wcan-navigation-widget.php:843
62
  msgid "Color"
63
  msgstr "Colore"
64
 
75
  # @ yit
76
  #: includes/functions.yith-wcan.php:93
77
  msgid "Labels"
78
+ msgstr "Etichetta"
79
 
80
  #: init.php:46
81
  msgid ""
90
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
91
  "while you are using the premium one."
92
  msgstr ""
 
 
93
 
94
  #: settings/custom-style-options.php:24
95
  msgid "Enter here your custom CSS rules:"
102
  #: settings/frontend-options.php:25
103
  msgctxt "Admin panel: option description"
104
  msgid "How To:"
105
+ msgstr "Descrizione"
106
 
107
  #: settings/frontend-options.php:27
108
  msgctxt "Admin: Panel section description"
122
 
123
  #: settings/frontend-options.php:33
124
  msgid "Product Container"
125
+ msgstr "Contenitore Prodotti"
126
 
127
  #: settings/frontend-options.php:34
128
  msgid "Enter here the CSS class or id for the product container"
130
 
131
  #: settings/frontend-options.php:41
132
  msgid "Shop Pagination Container"
133
+ msgstr "Contenitore Paginazione"
134
 
135
  #: settings/frontend-options.php:42
136
  msgid "Enter here the CSS class or id for the shop pagination container"
139
 
140
  #: settings/frontend-options.php:49
141
  msgid "Result Count Container"
142
+ msgstr "Contenitore Conteggio Prodotti"
143
 
144
  #: settings/frontend-options.php:50
145
  msgid "Enter here the CSS class or id for the results count container"
147
 
148
  #: settings/frontend-options.php:57
149
  msgid "Scroll top anchor"
150
+ msgstr "Tag html per la funzione Scroll Top"
151
 
152
  #: settings/frontend-options.php:58
153
  msgid "Enter here the HTML tag for the scroll to top feature"
154
  msgstr ""
155
 
156
+ #: settings/frontend-options.php:65
157
+ msgid "Order by"
158
+ msgstr "Ordina per"
159
+
160
+ #: settings/frontend-options.php:66
161
+ msgid "Sort by number of products contained or alphabetically"
162
+ msgstr "Ordina per numero di prodotti contenuti or in ordine alfabetico"
163
+
164
+ #: settings/frontend-options.php:70
165
+ msgid "Alphabetically"
166
+ msgstr "In ordine alfabetico"
167
+
168
+ #: settings/frontend-options.php:71
169
+ msgid "WooCommerce Default"
170
+ msgstr ""
171
+
172
  #: templates/admin/premium.php:203 templates/admin/premium.php:441
173
  #, php-format
174
  msgid ""
175
  "Upgrade to %1$spremium version%2$s of %1$sYITH WooCommerce Ajax Product "
176
  "Filter%2$s to benefit from all features!"
177
  msgstr ""
 
 
178
 
179
  #: templates/admin/premium.php:206 templates/admin/premium.php:444
180
  msgid "UPGRADE"
181
+ msgstr ""
182
 
183
  #: templates/admin/premium.php:207 templates/admin/premium.php:445
184
  msgid "to the premium version"
185
+ msgstr ""
186
 
187
  #: templates/admin/premium.php:213
188
  msgid "Premium Features"
189
+ msgstr ""
190
 
191
  #: templates/admin/premium.php:221
192
  msgid "Two more layouts"
193
+ msgstr ""
194
 
195
  #: templates/admin/premium.php:224
196
  #, php-format
204
  "On%2$s plugin, you will be able to offer the freedom to filter your shop "
205
  "products by brands thanks to the ajax technology."
206
  msgstr ""
 
 
 
 
 
 
 
 
 
207
 
208
  #: templates/admin/premium.php:234
209
  msgid "Price range"
210
+ msgstr ""
211
 
212
  #: templates/admin/premium.php:237
213
  #, php-format
217
  "Price Filter, %1$syou can set unlimited price ranges:%2$s your users will be "
218
  "able to filter products selecting on the ranges you have set."
219
  msgstr ""
 
 
 
 
 
 
220
 
221
  #: templates/admin/premium.php:253
222
  msgid "Ajax Stock/On Sale Filters"
223
+ msgstr ""
224
 
225
  #: templates/admin/premium.php:256
226
  #, php-format
230
  "the available ones.%3$s %1$sAn additional feature for an e-commerce site "
231
  "that is worthy!%2$s"
232
  msgstr ""
 
 
 
 
233
 
234
  #: templates/admin/premium.php:266
235
  msgid "Product sorting"
236
+ msgstr ""
237
 
238
  #: templates/admin/premium.php:269
239
  #, php-format
243
  "need to reload the page. Products can be sorted by rate, sales, price or "
244
  "publication date."
245
  msgstr ""
 
 
 
 
 
246
 
247
  #: templates/admin/premium.php:285
248
  msgid "Customized loader"
249
+ msgstr ""
250
 
251
  #: templates/admin/premium.php:288
252
  msgid ""
253
  "From the plugin option panel, you can choose to upload a new icon for your "
254
  "loader: in this way, it will better meet your needs."
255
  msgstr ""
 
 
 
256
 
257
  #: templates/admin/premium.php:298
258
  msgid "WooCommerce Price Filter"
259
+ msgstr ""
260
 
261
  #: templates/admin/premium.php:301
262
  #, php-format
266
  "%2$s and activate the %1$sAjax mode%2$s to apply the filter immediately, "
267
  "without reloading the page."
268
  msgstr ""
 
 
 
 
 
269
 
270
  #: templates/admin/premium.php:317
271
  msgid "SEO"
278
  "generated by the plugin, or not: with the latter, you will be free to avoid "
279
  "possible penalizations that may apply to your site."
280
  msgstr ""
 
 
 
 
 
281
 
282
  #: templates/admin/premium.php:330
283
  msgid " Filter by category"
284
+ msgstr ""
285
 
286
  #: templates/admin/premium.php:333
287
  #, php-format
289
  "Configure the widget to let your users filter product by a %1$sselected "
290
  "category%2$s. Your users will be even happier to browse your shop."
291
  msgstr ""
 
 
 
292
 
293
  #: templates/admin/premium.php:349
294
  msgid "FILTER ORDERING"
295
+ msgstr ""
296
 
297
  #: templates/admin/premium.php:352
298
  msgid ""
300
  "product archieve pages: classic alphabetical order or decreasing order, "
301
  "based on the number of products contained in each filter."
302
  msgstr ""
 
 
 
 
303
 
304
  #: templates/admin/premium.php:362
305
  msgid "Filter style"
306
+ msgstr "Stile filtro"
307
 
308
  #: templates/admin/premium.php:365
309
  msgid ""
311
  "plugin gives you the possibility to show filters in \"checkbox\" style. "
312
  "Users will experience a new look of your pages while filtering products."
313
  msgstr ""
 
 
 
 
314
 
315
  #: templates/admin/premium.php:381
316
  msgid "Page url"
317
+ msgstr ""
318
 
319
  #: templates/admin/premium.php:384
320
  msgid ""
322
  "the same url or let it get automatically updated every time user applies a "
323
  "filter to the products list of your shop."
324
  msgstr ""
 
 
 
 
325
 
326
  #: templates/admin/premium.php:394
327
  msgid "Filter by tag"
328
+ msgstr ""
329
 
330
  #: templates/admin/premium.php:397
331
  msgid ""
334
  "addition, you could organize your tags in a hierarchy and have appropriate "
335
  "tools for a better management of your products."
336
  msgstr ""
 
 
 
 
 
337
 
338
  #: templates/admin/premium.php:413
339
  msgid "Reset"
340
+ msgstr ""
341
 
342
  #: templates/admin/premium.php:416
343
  msgid ""
347
  "manages this action by a specific button which reset filters and by other "
348
  "two which refresh the main view of categories and/or tags."
349
  msgstr ""
 
 
 
 
 
 
350
 
351
  #: templates/admin/premium.php:426
352
  msgid "Scroll to top"
368
  msgid "YITH WooCommerce Ajax Product Filter"
369
  msgstr "YITH WooCommerce Filtro Prodotti Ajax"
370
 
371
+ #: widgets/class.yith-wcan-navigation-widget.php:151
372
  msgid "Filters:"
373
  msgstr "Filtri:"
374
 
375
  # @ yit
376
+ #: widgets/class.yith-wcan-navigation-widget.php:842
377
  msgid "List"
378
+ msgstr "Lista"
379
 
380
  # @ yit
381
+ #: widgets/class.yith-wcan-navigation-widget.php:844
382
  msgid "Label"
383
  msgstr "Etichetta"
384
 
385
+ #: widgets/class.yith-wcan-navigation-widget.php:845
386
  msgid "Dropdown"
387
  msgstr "Menu a tendina"
388
 
389
  # @ yit
390
+ #: widgets/class.yith-wcan-navigation-widget.php:852
391
+ #: widgets/class.yith-wcan-reset-navigation-widget.php:114
392
  msgid "Title"
393
  msgstr "Titolo"
394
 
395
  # @ yit
396
+ #: widgets/class.yith-wcan-navigation-widget.php:858
397
  msgid "Type:"
398
  msgstr "Tipo:"
399
 
400
  # @ yit
401
+ #: widgets/class.yith-wcan-navigation-widget.php:869
402
  msgid "Query Type:"
403
  msgstr "Tipo Query:"
404
 
405
  # @ yit
406
+ #: widgets/class.yith-wcan-navigation-widget.php:871
407
  msgid "AND"
408
  msgstr "E"
409
 
410
  # @ yit
411
+ #: widgets/class.yith-wcan-navigation-widget.php:872
412
  msgid "OR"
413
  msgstr "O"
414
 
415
  # @ yit
416
+ #: widgets/class.yith-wcan-navigation-widget.php:878
417
  msgid "Attribute:"
418
  msgstr "Attributo:"
419
 
420
+ #: widgets/class.yith-wcan-navigation-widget.php:885
421
  msgid "Display (default All):"
422
+ msgstr "Visualizza (default Tutti)"
423
 
424
+ #: widgets/class.yith-wcan-navigation-widget.php:887
425
  msgid "All (no hierarchical)"
426
  msgstr "Tutti (non gerarchico)"
427
 
428
+ #: widgets/class.yith-wcan-navigation-widget.php:888
429
  msgid "All (hierarchical)"
430
  msgstr "Tutti (gerarchico)"
431
 
432
+ #: widgets/class.yith-wcan-navigation-widget.php:889
433
  msgid "Only Parent"
434
  msgstr "Solo Principali"
435
 
436
+ #: widgets/class.yith-wcan-navigation-widget.php:896
437
  msgid "CSS custom class"
438
  msgstr "Classe CSS custom"
439
 
446
  msgid "YITH WooCommerce Ajax Reset Filter"
447
  msgstr "YITH WooCommerce Filtro Ajax Reset"
448
 
449
+ #: widgets/class.yith-wcan-reset-navigation-widget.php:107
450
  msgid "Reset All Filters"
451
  msgstr "Resetta tutti i filtri"
452
 
453
+ #: widgets/class.yith-wcan-reset-navigation-widget.php:120
454
  msgid "Button Label"
455
  msgstr "Etichetta Pulsante"
456
 
 
 
 
 
457
  #~ msgid "Settings"
458
  #~ msgstr "Impostazioni"
459
 
463
  #~ msgid "Enter here the HTML tag for the widget title"
464
  #~ msgstr "Inserisci qui il tag HTML per il titolo del widget"
465
 
 
 
 
 
 
 
466
  #~ msgid "Number of products"
467
  #~ msgstr "Numero di prodotti"
468
 
 
 
 
469
  #~ msgid "Select the filter style"
470
  #~ msgstr "Seleziona lo stile del filtro"
471
 
549
 
550
  #~ msgctxt "Referer to original WooCommerce Price Filter Widget"
551
  #~ msgid "Ajax WooCommerce Price Filter"
552
+ #~ msgstr "Filtro prezzi di WooCommerce in AJAX"
553
 
554
  #~ msgid "Use AJAX WooCommerce price filter"
555
  #~ msgstr "Utilizza il filtro prezzo di WooCommerce in AJAX"
559
  #~ msgstr "Slider filtro prezzi WooCommerce"
560
 
561
  #~ msgid "Use WooCommerce price filter with slider"
562
+ #~ msgstr "Utilizza il Filtro prezzi di WooCommerce con slider"
563
 
564
  #~ msgctxt "Referer to original WooCommerce Price Filter Widget"
565
  #~ msgid "Instant WooCommerce Price Filter slider"
572
 
573
  #~ msgctxt "Referer to original WooCommerce Price Filter Widget"
574
  #~ msgid "Dropdown for WooCommerce Price Filter"
575
+ #~ msgstr "Menu a tendina per il Filtro prezzi di WooCommerce"
576
 
577
  #~ msgid "Add dropdown effect to original WooCommerce Price Filter widget"
578
  #~ msgstr ""
579
+ #~ "Aggiunge l'effetto di menu a tendina all'originale Filtro prezzi di "
580
  #~ "WooCommerce"
581
 
582
  #~ msgctxt "Referer to original WooCommerce Price Filter Widget"
781
  #~ msgid "Show \"In Stock\" filter"
782
  #~ msgstr "Mostra filtro \"Disponibili\""
783
 
784
+ #~ msgid "Enter here the HTML tag for the scroll to top feature on mobiles"
785
+ #~ msgstr ""
786
+ #~ "Inserisci qui il tag HTML per la funzionalità \"Torna su\" su mobile"
787
+
788
  #~ msgid "Put here the HTML tag for the widget title"
789
  #~ msgstr "Inserisci qui il tag HTML per il titolo del widget"
790
 
970
  #~ msgstr "Lista Filtri:"
971
 
972
  # @ yit
973
+ #~ msgid "Reset all filters set by YITH WooCommerce Ajax Navigation"
974
  #~ msgstr "Resetta tutti i filtri settati da YITH WooCommerce Ajax Navigation"
975
 
976
  # @ yit
languages/yith-woocommerce-ajax-navigation-tr_TR.mo CHANGED
Binary file
languages/yith-woocommerce-ajax-navigation-tr_TR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Ajax Product filter\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-01-17 14:07+0100\n"
6
- "PO-Revision-Date: 2017-01-17 14:07+0100\n"
7
  "Last-Translator: Caner Öncel <caneroncel@gmail.com>\n"
8
  "Language-Team: Caner Öncel <caneroncel@gmail.com>\n"
9
  "Language: tr\n"
@@ -58,7 +58,7 @@ msgstr "Terim"
58
 
59
  # @ yit
60
  #: includes/functions.yith-wcan.php:57
61
- #: widgets/class.yith-wcan-navigation-widget.php:716
62
  msgid "Color"
63
  msgstr "Renk"
64
 
@@ -145,6 +145,22 @@ msgstr ""
145
  msgid "Enter here the HTML tag for the scroll to top feature"
146
  msgstr ""
147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  #: templates/admin/premium.php:203 templates/admin/premium.php:441
149
  #, php-format
150
  msgid ""
@@ -344,72 +360,72 @@ msgctxt "Admin: Widget Title"
344
  msgid "YITH WooCommerce Ajax Product Filter"
345
  msgstr ""
346
 
347
- #: widgets/class.yith-wcan-navigation-widget.php:150
348
  msgid "Filters:"
349
  msgstr ""
350
 
351
  # @ yit
352
- #: widgets/class.yith-wcan-navigation-widget.php:715
353
  msgid "List"
354
  msgstr "Liste"
355
 
356
  # @ yit
357
- #: widgets/class.yith-wcan-navigation-widget.php:717
358
  msgid "Label"
359
  msgstr "Etiket"
360
 
361
- #: widgets/class.yith-wcan-navigation-widget.php:718
362
  msgid "Dropdown"
363
  msgstr "Açılır Menü"
364
 
365
  # @ yit
366
- #: widgets/class.yith-wcan-navigation-widget.php:725
367
- #: widgets/class.yith-wcan-reset-navigation-widget.php:102
368
  msgid "Title"
369
  msgstr "Başlık"
370
 
371
  # @ yit
372
- #: widgets/class.yith-wcan-navigation-widget.php:731
373
  msgid "Type:"
374
  msgstr "Tür:"
375
 
376
  # @ yit
377
- #: widgets/class.yith-wcan-navigation-widget.php:742
378
  msgid "Query Type:"
379
  msgstr "Sorgu Tipi:"
380
 
381
  # @ yit
382
- #: widgets/class.yith-wcan-navigation-widget.php:744
383
  msgid "AND"
384
  msgstr "VE"
385
 
386
  # @ yit
387
- #: widgets/class.yith-wcan-navigation-widget.php:745
388
  msgid "OR"
389
  msgstr "VEYA"
390
 
391
  # @ yit
392
- #: widgets/class.yith-wcan-navigation-widget.php:751
393
  msgid "Attribute:"
394
  msgstr "Özellikler:"
395
 
396
- #: widgets/class.yith-wcan-navigation-widget.php:758
397
  msgid "Display (default All):"
398
  msgstr "Görüntüleme (Varsayılan tümü):"
399
 
400
- #: widgets/class.yith-wcan-navigation-widget.php:760
401
  msgid "All (no hierarchical)"
402
  msgstr "Tümü"
403
 
404
- #: widgets/class.yith-wcan-navigation-widget.php:761
405
  msgid "All (hierarchical)"
406
  msgstr ""
407
 
408
- #: widgets/class.yith-wcan-navigation-widget.php:762
409
  msgid "Only Parent"
410
  msgstr "Sadece Ebeveyn"
411
 
412
- #: widgets/class.yith-wcan-navigation-widget.php:769
413
  msgid "CSS custom class"
414
  msgstr ""
415
 
@@ -421,11 +437,11 @@ msgstr ""
421
  msgid "YITH WooCommerce Ajax Reset Filter"
422
  msgstr ""
423
 
424
- #: widgets/class.yith-wcan-reset-navigation-widget.php:95
425
  msgid "Reset All Filters"
426
  msgstr "Tüm Filtreleri Sıfırla"
427
 
428
- #: widgets/class.yith-wcan-reset-navigation-widget.php:108
429
  msgid "Button Label"
430
  msgstr "Buton Metni"
431
 
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Ajax Product filter\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-07-04 16:52+0200\n"
6
+ "PO-Revision-Date: 2017-07-04 16:52+0200\n"
7
  "Last-Translator: Caner Öncel <caneroncel@gmail.com>\n"
8
  "Language-Team: Caner Öncel <caneroncel@gmail.com>\n"
9
  "Language: tr\n"
58
 
59
  # @ yit
60
  #: includes/functions.yith-wcan.php:57
61
+ #: widgets/class.yith-wcan-navigation-widget.php:843
62
  msgid "Color"
63
  msgstr "Renk"
64
 
145
  msgid "Enter here the HTML tag for the scroll to top feature"
146
  msgstr ""
147
 
148
+ #: settings/frontend-options.php:65
149
+ msgid "Order by"
150
+ msgstr ""
151
+
152
+ #: settings/frontend-options.php:66
153
+ msgid "Sort by number of products contained or alphabetically"
154
+ msgstr ""
155
+
156
+ #: settings/frontend-options.php:70
157
+ msgid "Alphabetically"
158
+ msgstr ""
159
+
160
+ #: settings/frontend-options.php:71
161
+ msgid "WooCommerce Default"
162
+ msgstr ""
163
+
164
  #: templates/admin/premium.php:203 templates/admin/premium.php:441
165
  #, php-format
166
  msgid ""
360
  msgid "YITH WooCommerce Ajax Product Filter"
361
  msgstr ""
362
 
363
+ #: widgets/class.yith-wcan-navigation-widget.php:151
364
  msgid "Filters:"
365
  msgstr ""
366
 
367
  # @ yit
368
+ #: widgets/class.yith-wcan-navigation-widget.php:842
369
  msgid "List"
370
  msgstr "Liste"
371
 
372
  # @ yit
373
+ #: widgets/class.yith-wcan-navigation-widget.php:844
374
  msgid "Label"
375
  msgstr "Etiket"
376
 
377
+ #: widgets/class.yith-wcan-navigation-widget.php:845
378
  msgid "Dropdown"
379
  msgstr "Açılır Menü"
380
 
381
  # @ yit
382
+ #: widgets/class.yith-wcan-navigation-widget.php:852
383
+ #: widgets/class.yith-wcan-reset-navigation-widget.php:114
384
  msgid "Title"
385
  msgstr "Başlık"
386
 
387
  # @ yit
388
+ #: widgets/class.yith-wcan-navigation-widget.php:858
389
  msgid "Type:"
390
  msgstr "Tür:"
391
 
392
  # @ yit
393
+ #: widgets/class.yith-wcan-navigation-widget.php:869
394
  msgid "Query Type:"
395
  msgstr "Sorgu Tipi:"
396
 
397
  # @ yit
398
+ #: widgets/class.yith-wcan-navigation-widget.php:871
399
  msgid "AND"
400
  msgstr "VE"
401
 
402
  # @ yit
403
+ #: widgets/class.yith-wcan-navigation-widget.php:872
404
  msgid "OR"
405
  msgstr "VEYA"
406
 
407
  # @ yit
408
+ #: widgets/class.yith-wcan-navigation-widget.php:878
409
  msgid "Attribute:"
410
  msgstr "Özellikler:"
411
 
412
+ #: widgets/class.yith-wcan-navigation-widget.php:885
413
  msgid "Display (default All):"
414
  msgstr "Görüntüleme (Varsayılan tümü):"
415
 
416
+ #: widgets/class.yith-wcan-navigation-widget.php:887
417
  msgid "All (no hierarchical)"
418
  msgstr "Tümü"
419
 
420
+ #: widgets/class.yith-wcan-navigation-widget.php:888
421
  msgid "All (hierarchical)"
422
  msgstr ""
423
 
424
+ #: widgets/class.yith-wcan-navigation-widget.php:889
425
  msgid "Only Parent"
426
  msgstr "Sadece Ebeveyn"
427
 
428
+ #: widgets/class.yith-wcan-navigation-widget.php:896
429
  msgid "CSS custom class"
430
  msgstr ""
431
 
437
  msgid "YITH WooCommerce Ajax Reset Filter"
438
  msgstr ""
439
 
440
+ #: widgets/class.yith-wcan-reset-navigation-widget.php:107
441
  msgid "Reset All Filters"
442
  msgstr "Tüm Filtreleri Sıfırla"
443
 
444
+ #: widgets/class.yith-wcan-reset-navigation-widget.php:120
445
  msgid "Button Label"
446
  msgstr "Buton Metni"
447
 
languages/yith-woocommerce-ajax-navigation.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2017-01-17 14:07+0100\n"
7
  "PO-Revision-Date: 2015-06-19 13:59+0100\n"
8
  "Last-Translator: Your Inspiration Themes <plugins@yithemes.com>\n"
9
  "Language-Team: \n"
@@ -59,7 +59,7 @@ msgid "Term"
59
  msgstr ""
60
 
61
  #: includes/functions.yith-wcan.php:57
62
- #: widgets/class.yith-wcan-navigation-widget.php:716
63
  msgid "Color"
64
  msgstr ""
65
 
@@ -145,6 +145,22 @@ msgstr ""
145
  msgid "Enter here the HTML tag for the scroll to top feature"
146
  msgstr ""
147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  #: templates/admin/premium.php:203 templates/admin/premium.php:441
149
  #, php-format
150
  msgid ""
@@ -349,64 +365,64 @@ msgctxt "Admin: Widget Title"
349
  msgid "YITH WooCommerce Ajax Product Filter"
350
  msgstr ""
351
 
352
- #: widgets/class.yith-wcan-navigation-widget.php:150
353
  msgid "Filters:"
354
  msgstr ""
355
 
356
- #: widgets/class.yith-wcan-navigation-widget.php:715
357
  msgid "List"
358
  msgstr ""
359
 
360
- #: widgets/class.yith-wcan-navigation-widget.php:717
361
  msgid "Label"
362
  msgstr ""
363
 
364
- #: widgets/class.yith-wcan-navigation-widget.php:718
365
  msgid "Dropdown"
366
  msgstr ""
367
 
368
- #: widgets/class.yith-wcan-navigation-widget.php:725
369
- #: widgets/class.yith-wcan-reset-navigation-widget.php:102
370
  msgid "Title"
371
  msgstr ""
372
 
373
- #: widgets/class.yith-wcan-navigation-widget.php:731
374
  msgid "Type:"
375
  msgstr ""
376
 
377
- #: widgets/class.yith-wcan-navigation-widget.php:742
378
  msgid "Query Type:"
379
  msgstr ""
380
 
381
- #: widgets/class.yith-wcan-navigation-widget.php:744
382
  msgid "AND"
383
  msgstr ""
384
 
385
- #: widgets/class.yith-wcan-navigation-widget.php:745
386
  msgid "OR"
387
  msgstr ""
388
 
389
- #: widgets/class.yith-wcan-navigation-widget.php:751
390
  msgid "Attribute:"
391
  msgstr ""
392
 
393
- #: widgets/class.yith-wcan-navigation-widget.php:758
394
  msgid "Display (default All):"
395
  msgstr ""
396
 
397
- #: widgets/class.yith-wcan-navigation-widget.php:760
398
  msgid "All (no hierarchical)"
399
  msgstr ""
400
 
401
- #: widgets/class.yith-wcan-navigation-widget.php:761
402
  msgid "All (hierarchical)"
403
  msgstr ""
404
 
405
- #: widgets/class.yith-wcan-navigation-widget.php:762
406
  msgid "Only Parent"
407
  msgstr ""
408
 
409
- #: widgets/class.yith-wcan-navigation-widget.php:769
410
  msgid "CSS custom class"
411
  msgstr ""
412
 
@@ -418,10 +434,10 @@ msgstr ""
418
  msgid "YITH WooCommerce Ajax Reset Filter"
419
  msgstr ""
420
 
421
- #: widgets/class.yith-wcan-reset-navigation-widget.php:95
422
  msgid "Reset All Filters"
423
  msgstr ""
424
 
425
- #: widgets/class.yith-wcan-reset-navigation-widget.php:108
426
  msgid "Button Label"
427
  msgstr ""
3
  msgstr ""
4
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2017-07-04 16:52+0200\n"
7
  "PO-Revision-Date: 2015-06-19 13:59+0100\n"
8
  "Last-Translator: Your Inspiration Themes <plugins@yithemes.com>\n"
9
  "Language-Team: \n"
59
  msgstr ""
60
 
61
  #: includes/functions.yith-wcan.php:57
62
+ #: widgets/class.yith-wcan-navigation-widget.php:843
63
  msgid "Color"
64
  msgstr ""
65
 
145
  msgid "Enter here the HTML tag for the scroll to top feature"
146
  msgstr ""
147
 
148
+ #: settings/frontend-options.php:65
149
+ msgid "Order by"
150
+ msgstr ""
151
+
152
+ #: settings/frontend-options.php:66
153
+ msgid "Sort by number of products contained or alphabetically"
154
+ msgstr ""
155
+
156
+ #: settings/frontend-options.php:70
157
+ msgid "Alphabetically"
158
+ msgstr ""
159
+
160
+ #: settings/frontend-options.php:71
161
+ msgid "WooCommerce Default"
162
+ msgstr ""
163
+
164
  #: templates/admin/premium.php:203 templates/admin/premium.php:441
165
  #, php-format
166
  msgid ""
365
  msgid "YITH WooCommerce Ajax Product Filter"
366
  msgstr ""
367
 
368
+ #: widgets/class.yith-wcan-navigation-widget.php:151
369
  msgid "Filters:"
370
  msgstr ""
371
 
372
+ #: widgets/class.yith-wcan-navigation-widget.php:842
373
  msgid "List"
374
  msgstr ""
375
 
376
+ #: widgets/class.yith-wcan-navigation-widget.php:844
377
  msgid "Label"
378
  msgstr ""
379
 
380
+ #: widgets/class.yith-wcan-navigation-widget.php:845
381
  msgid "Dropdown"
382
  msgstr ""
383
 
384
+ #: widgets/class.yith-wcan-navigation-widget.php:852
385
+ #: widgets/class.yith-wcan-reset-navigation-widget.php:114
386
  msgid "Title"
387
  msgstr ""
388
 
389
+ #: widgets/class.yith-wcan-navigation-widget.php:858
390
  msgid "Type:"
391
  msgstr ""
392
 
393
+ #: widgets/class.yith-wcan-navigation-widget.php:869
394
  msgid "Query Type:"
395
  msgstr ""
396
 
397
+ #: widgets/class.yith-wcan-navigation-widget.php:871
398
  msgid "AND"
399
  msgstr ""
400
 
401
+ #: widgets/class.yith-wcan-navigation-widget.php:872
402
  msgid "OR"
403
  msgstr ""
404
 
405
+ #: widgets/class.yith-wcan-navigation-widget.php:878
406
  msgid "Attribute:"
407
  msgstr ""
408
 
409
+ #: widgets/class.yith-wcan-navigation-widget.php:885
410
  msgid "Display (default All):"
411
  msgstr ""
412
 
413
+ #: widgets/class.yith-wcan-navigation-widget.php:887
414
  msgid "All (no hierarchical)"
415
  msgstr ""
416
 
417
+ #: widgets/class.yith-wcan-navigation-widget.php:888
418
  msgid "All (hierarchical)"
419
  msgstr ""
420
 
421
+ #: widgets/class.yith-wcan-navigation-widget.php:889
422
  msgid "Only Parent"
423
  msgstr ""
424
 
425
+ #: widgets/class.yith-wcan-navigation-widget.php:896
426
  msgid "CSS custom class"
427
  msgstr ""
428
 
434
  msgid "YITH WooCommerce Ajax Reset Filter"
435
  msgstr ""
436
 
437
+ #: widgets/class.yith-wcan-reset-navigation-widget.php:107
438
  msgid "Reset All Filters"
439
  msgstr ""
440
 
441
+ #: widgets/class.yith-wcan-reset-navigation-widget.php:120
442
  msgid "Button Label"
443
  msgstr ""
plugin-fw/init.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Framework Name: YIT Plugin Framework
4
- * Version: 2.9.65
5
  * Author: Yithemes
6
  * Text Domain: yith-plugin-fw
7
  * Domain Path: /languages/
1
  <?php
2
  /**
3
  * Framework Name: YIT Plugin Framework
4
+ * Version: 2.9.68
5
  * Author: Yithemes
6
  * Text Domain: yith-plugin-fw
7
  * Domain Path: /languages/
plugin-fw/lib/yit-plugin-panel-wc.php CHANGED
@@ -64,6 +64,8 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
64
  'image_width'
65
  );
66
 
 
 
67
  if ( ! empty( $args ) ) {
68
  $this->settings = $args;
69
  $this->_tabs_path_files = $this->get_tabs_path_files();
64
  'image_width'
65
  );
66
 
67
+ $args = apply_filters( 'yit_plugin_fw_wc_panel_option_args', $args );
68
+
69
  if ( ! empty( $args ) ) {
70
  $this->settings = $args;
71
  $this->_tabs_path_files = $this->get_tabs_path_files();
plugin-fw/lib/yit-plugin-panel.php CHANGED
@@ -77,7 +77,9 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
77
  'position' => null
78
  );
79
 
80
- $this->settings = wp_parse_args( $args, $default_args );
 
 
81
  $this->_tabs_path_files = $this->get_tabs_path_files();
82
 
83
  if ( isset( $this->settings['create_menu_page'] ) && $this->settings['create_menu_page'] ) {
77
  'position' => null
78
  );
79
 
80
+ $args = apply_filters( 'yit_plugin_fw_panel_option_args', wp_parse_args( $args, $default_args ) );
81
+
82
+ $this->settings = $args;
83
  $this->_tabs_path_files = $this->get_tabs_path_files();
84
 
85
  if ( isset( $this->settings['create_menu_page'] ) && $this->settings['create_menu_page'] ) {
plugin-fw/yit-woocommerce-compatibility.php CHANGED
@@ -570,6 +570,44 @@ if ( !function_exists( 'yit_get_refund_amount' ) ) {
570
  }
571
  }
572
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
573
  if ( !function_exists( 'yit_add_select2_fields' ) ) {
574
  /**
575
  * Add select 2
@@ -664,7 +702,9 @@ if ( !function_exists( 'yit_product_visibility_meta' ) ) {
664
  if ( version_compare( WC()->version, '2.7.0', '<' ) ) {
665
  $args[ 'meta_query' ] = isset( $args[ 'meta_query' ] ) ? $args[ 'meta_query' ] : array();
666
  $args[ 'meta_query' ][] = WC()->query->visibility_meta_query();
667
- } else {
 
 
668
  $product_visibility_term_ids = wc_get_product_visibility_term_ids();
669
  $args[ 'tax_query' ] = isset( $args[ 'tax_query' ] ) ? $args[ 'tax_query' ] : array();
670
  $args[ 'tax_query' ][] = array(
570
  }
571
  }
572
 
573
+ if ( !function_exists( 'yit_set_refund_amount' ) ){
574
+ /**
575
+ * @param $refund \WC_Order_Refund
576
+ * @param $amount float
577
+ *
578
+ * @return float
579
+ */
580
+ function yit_set_refund_amount( $refund, $amount ){
581
+ $is_wc_data = $refund instanceof WC_Data;
582
+
583
+ if( $is_wc_data ){
584
+ $refund->set_amount( $amount );
585
+ }
586
+ else{
587
+ $refund->refund_amount = $amount;
588
+ }
589
+ }
590
+ }
591
+
592
+ if ( !function_exists( 'yit_get_refund_reason' ) ){
593
+ /**
594
+ * @param $refund \WC_Order_Refund
595
+ * @param $amount float
596
+ *
597
+ * @return float
598
+ */
599
+ function yit_get_refund_reason( $refund ){
600
+ $is_wc_data = $refund instanceof WC_Data;
601
+
602
+ if( $is_wc_data ){
603
+ return $refund->get_reason();
604
+ }
605
+ else{
606
+ return $refund->get_refund_reason();
607
+ }
608
+ }
609
+ }
610
+
611
  if ( !function_exists( 'yit_add_select2_fields' ) ) {
612
  /**
613
  * Add select 2
702
  if ( version_compare( WC()->version, '2.7.0', '<' ) ) {
703
  $args[ 'meta_query' ] = isset( $args[ 'meta_query' ] ) ? $args[ 'meta_query' ] : array();
704
  $args[ 'meta_query' ][] = WC()->query->visibility_meta_query();
705
+ }
706
+
707
+ elseif( taxonomy_exists( 'product_visibility' ) ) {
708
  $product_visibility_term_ids = wc_get_product_visibility_term_ids();
709
  $args[ 'tax_query' ] = isset( $args[ 'tax_query' ] ) ? $args[ 'tax_query' ] : array();
710
  $args[ 'tax_query' ][] = array(
widgets/class.yith-wcan-navigation-widget.php CHANGED
@@ -575,7 +575,7 @@ if ( ! class_exists( 'YITH_WCAN_Navigation_Widget' ) ) {
575
  $term_id = yit_wcan_localize_terms( $term->term_id, $taxonomy );
576
 
577
  if ( ! empty( $instance['colors'][$term_id] ) ) {
578
- $li_style = apply_filters( "{$args['widget_id']}-li_style", 'background-color:' . $instance['colors'][$term_id] . ';', $instance );
579
 
580
  echo '<li ' . $class . '>';
581
 
@@ -1107,7 +1107,7 @@ if ( ! class_exists( 'YITH_WCAN_Navigation_Widget' ) ) {
1107
  $link = add_query_arg('product_tag', urlencode($_GET['product_tag']), $link);
1108
  }
1109
 
1110
- elseif( is_product_tag() && $queried_object ){
1111
  $link = add_query_arg( array( 'product_tag' => $queried_object->slug ), $link );
1112
  }
1113
 
@@ -1118,7 +1118,7 @@ if ( ! class_exists( 'YITH_WCAN_Navigation_Widget' ) ) {
1118
  }
1119
  }
1120
 
1121
- elseif( is_tax( $this->brand_taxonomy ) && $queried_object ) {
1122
  $link = add_query_arg( array( $this->brand_taxonomy => $queried_object->slug ), $link );
1123
  }
1124
 
@@ -1205,6 +1205,7 @@ if ( ! class_exists( 'YITH_WCAN_Navigation_Widget' ) ) {
1205
  $class = "class='{$is_parent_class} {$level_class}'";
1206
  }
1207
  }
 
1208
  $link = add_query_arg($arg, implode(apply_filters('yith_wcan_list_filter_operator', ',', $display_type), $current_filter), $link);
1209
  }
1210
 
@@ -1245,7 +1246,7 @@ if ( ! class_exists( 'YITH_WCAN_Navigation_Widget' ) ) {
1245
 
1246
  $show_count = $count != 0 && ! empty( $instance['show_count'] ) && ! $instance['show_count'];
1247
 
1248
- $show_count = apply_filters( "{$args['widget_id']}-show_product_count", $show_count, $instance );
1249
 
1250
  if ( $to_print && apply_filters( 'yith_wcan_force_show_count', $show_count ) ) {
1251
  echo ' <small class="count">' . $count . '</small><div class="clear"></div>';
575
  $term_id = yit_wcan_localize_terms( $term->term_id, $taxonomy );
576
 
577
  if ( ! empty( $instance['colors'][$term_id] ) ) {
578
+ $li_style = apply_filters( "{$this->id}-li_style", 'background-color:' . $instance['colors'][$term_id] . ';', $instance );
579
 
580
  echo '<li ' . $class . '>';
581
 
1107
  $link = add_query_arg('product_tag', urlencode($_GET['product_tag']), $link);
1108
  }
1109
 
1110
+ elseif( is_product_tag() && $queried_object && $current_term != $queried_object->slug ){
1111
  $link = add_query_arg( array( 'product_tag' => $queried_object->slug ), $link );
1112
  }
1113
 
1118
  }
1119
  }
1120
 
1121
+ elseif( ! empty( $this->brand_taxonomy ) && is_tax( $this->brand_taxonomy ) && $queried_object ) {
1122
  $link = add_query_arg( array( $this->brand_taxonomy => $queried_object->slug ), $link );
1123
  }
1124
 
1205
  $class = "class='{$is_parent_class} {$level_class}'";
1206
  }
1207
  }
1208
+
1209
  $link = add_query_arg($arg, implode(apply_filters('yith_wcan_list_filter_operator', ',', $display_type), $current_filter), $link);
1210
  }
1211
 
1246
 
1247
  $show_count = $count != 0 && ! empty( $instance['show_count'] ) && ! $instance['show_count'];
1248
 
1249
+ $show_count = apply_filters( "{$this->id}-show_product_count", $show_count, $instance );
1250
 
1251
  if ( $to_print && apply_filters( 'yith_wcan_force_show_count', $show_count ) ) {
1252
  echo ' <small class="count">' . $count . '</small><div class="clear"></div>';
widgets/class.yith-wcan-reset-navigation-widget.php CHANGED
@@ -76,7 +76,7 @@ if ( ! class_exists( 'YITH_WCAN_Reset_Navigation_Widget' ) ) {
76
 
77
  else{
78
  //Start filter from Product category Page
79
- $term = get_term_by( 'term_taxonomy_id', $_GET['source_id'], $_GET['source_tax'] );
80
 
81
  if( $term instanceof WP_Term ){
82
  $link = get_term_link( $term, $term->taxonomy );
76
 
77
  else{
78
  //Start filter from Product category Page
79
+ $term = get_term_by( 'term_id', $_GET['source_id'], $_GET['source_tax'] );
80
 
81
  if( $term instanceof WP_Term ){
82
  $link = get_term_link( $term, $term->taxonomy );