1
0
mirror of synced 2025-01-18 08:51:41 +03:00

Fix bug with missing settings reference (#150)

This commit is contained in:
Dima Uryvskiy 2020-08-20 14:40:04 +03:00 committed by GitHub
parent 6f9ce78d50
commit c1cc4bd5d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 18 additions and 10 deletions

View File

@ -1,3 +1,6 @@
## 2020-08-20 4.1.2
* Исправлен баг с отсутствием настроек справочников
## 2020-08-08 4.1.1
* Добавлена настройка выбора ролей клиентов для выгрузки в retailCRM

View File

@ -1 +1 @@
4.1.1
4.1.2

View File

@ -680,14 +680,16 @@ abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration
'cursor':'pointer',
'width':'310px'
});
jQuery('h2.retailcrm_hidden').toggle(
jQuery('h2.retailcrm_hidden').bind(
'click',
function() {
jQuery(this).next('table.form-table').show(100);
jQuery(this).find('span').html('⬆');
},
function() {
jQuery(this).next('table.form-table').hide(100);
jQuery(this).find('span').html('⬇');
if(jQuery(this).next('table.form-table').is(":hidden")) {
jQuery(this).next('table.form-table').show(100);
jQuery(this).find('span').html('⬆');
} else {
jQuery(this).next('table.form-table').hide(100);
jQuery(this).find('span').html('⬇');
}
}
);
</script>

View File

@ -45,6 +45,9 @@ API-ключ должен быть для отдельного магазина
2. В появившихся списках справочников настройте соответствие способов доставки и оплаты, а так же статусов заказов. Отметьте галочку "Выгружать остатки", если хотите выгружать остатки из Retailcrm в магазин (подробнее смотрите в описании).
== Changelog ==
= 4.1.2 =
* Исправлен баг с отсутствием настроек справочников
= 4.1.1 =
* Добавлена настройка выбора ролей клиентов для выгрузки в retailCRM

View File

@ -1,6 +1,6 @@
<?php
/**
* Version: 4.1.1
* Version: 4.1.2
* WC requires at least: 3.0
* WC tested up to: 3.9.3
* Plugin Name: WooCommerce retailCRM

View File

@ -15,7 +15,7 @@
*
*
* @link https://wordpress.org/plugins/woo-retailcrm/
* @version 4.1.1
* @version 4.1.2
*
* @package RetailCRM
*/