Jump to content

Recommended Posts

Доброго дня! 

В русской сборке PrestaShop 1.6 выявил следующий баг в комбинациях товара. 

Когда переходишь в товар -> комбинации, то невозможно отредактировать добавить комбинацию. Это связанно с тем, что в шаблоне (в файле ***/admin/themes/default/template/controllers/products/combinations.tpl) есть небольшой косяк, а именно незакрыта ссылка тегом </a>.

 

Поэтому все активное окно - это ссылка на Генератор комбинаций товаров (Генератор атрибутов) и куда бы вы не нажали мышью - вы перейдете в Генератор атрибутов. 

 

Как исправить: 

 

Открываем файл ***/admin/themes/default/template/controllers/products/combinations.tpl

Ищем строку 56 (это она у меня под номером 56, у вас может быть под другим)

 или ищем код:

<div class="alert alert-info">
		{l s='You can also use the [1]Product Combinations Generator[2/][/1] in order to automatically create a set of combinations.' tags=["<a class='btn btn-link bt-icon confirm_leave' href='index.php?tab=AdminAttributeGenerator&id_product={$product->id}&attributegenerator&token={$token_generator}'>", '<i class="icon-external-link-sign">']}
	</div>

И добавляем перед закрытием тега </div> тег </a>, т.е. закрываем ссылку, тогда код должен быть таким:

<div class="alert alert-info">
		{l s='You can also use the [1]Product Combinations Generator[2/][/1] in order to automatically create a set of combinations.' tags=["<a class='btn btn-link bt-icon confirm_leave' href='index.php?tab=AdminAttributeGenerator&id_product={$product->id}&attributegenerator&token={$token_generator}'>", '<i class="icon-external-link-sign">']}</a>
	</div>

Сохраняем и заменяем файл. 

 

Все, теперь комбинации товара отображаются и работают верно, радуемся! 

 

:)

  • Like 2
Link to comment
Share on other sites

Привет! Спасибо за реализацию неполадки! Хорошо, что почти сразу увидел Ваше решение!)

Пожалуйста! Если тоже что-то найдете и поправите - все будут благодарны ;) 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...