Page 1 of 1

[v3.0.2.0 - Fix] - text empty with text no results

Posted: Tue Oct 10, 2017 7:13 pm
by straightlight
Followed are all the files where the:

Code: Select all

{{ text_empty }}
needs to be replaced with:

Code: Select all

{{ text_no_results }}

Code: Select all

admin/view/template/extension/openbay/amazonus_stock_updates.twig
admin/view/template/extension/openbay/amazon_stock_updates.twig
catalog/view/theme/default/template/account/address_list.twig
catalog/view/theme/default/template/account/download.twig
catalog/view/theme/default/template/account/order_list.twig
catalog/view/theme/default/template/account/recurring_list.twig
catalog/view/theme/default/template/account/return_list.twig
catalog/view/theme/default/template/account/reward.twig
catalog/view/theme/default/template/account/transaction.twig
catalog/view/theme/default/template/account/wishlist.twig
catalog/view/theme/default/template/common/cart.twig
catalog/view/theme/default/template/product/category.twig
catalog/view/theme/default/template/product/compare.twig
catalog/view/theme/default/template/product/manufacturer_info.twig
catalog/view/theme/default/template/product/manufacturer_list.twig
catalog/view/theme/default/template/product/search.twig
catalog/view/theme/default/template/product/special.twig
catalog/view/theme/default/template/extension/credit_card/sagepay_direct_list.twig
catalog/view/theme/default/template/extension/credit_card/sagepay_server_list.twig
catalog/view/theme/default/template/extension/payment/klarna_checkout_sidebar.twig
Although, each related controllers must also be ensured to be defined with:

Code: Select all

$data['text_no_results'] = $this->language->get('text_no_results');
from the index() method.

Re: [v3.0.2.0 - Fix] - text empty with text no results

Posted: Wed Oct 11, 2017 12:13 am
by rmullaney77
Just confirming this list seems to cover all the instances of the issue we reported on git. At least it's an easy fix ;)

Re: [v3.0.2.0 - Fix] - text empty with text no results

Posted: Wed Oct 11, 2017 1:00 am
by straightlight
Thank you !