modules/XC/CrispWhiteSkin/templates/web/customer/product/search/parts/advanced.category.twig line 1

Open in your IDE?
  1. {##
  2.  # Search by category
  3.  #
  4.  # @listChild (list="products.search.conditions.advanced", weight="200")
  5.  #}
  6. <div class="adv-opt-line">
  7.   <label for="categoryId" class="adv-opt-label">{{ t('Category') }}:</label>
  8.   <div class="adv-opt-value">
  9.     {{ widget('\\XLite\\View\\CategorySelect',
  10.       fieldName='categoryId',
  11.       fieldId='categoryId',
  12.       selectedCategoryIds=[this.getCondition('categoryId')],
  13.       allOption='1',
  14.       noneOption="0"
  15.     )}}
  16.   </div>
  17. </div>