system.xml 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
  10. <system>
  11. <section id="catalog">
  12. <group id="search">
  13. <field id="search_recommendations_enabled"
  14. translate="label comment"
  15. type="select"
  16. sortOrder="80"
  17. showInDefault="1"
  18. showInWebsite="1"
  19. showInStore="1">
  20. <label>Enable Search Recommendations</label>
  21. <comment>When you enable this option your site may slow down.</comment>
  22. <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
  23. </field>
  24. <field id="search_recommendations_count"
  25. translate="label"
  26. type="text"
  27. sortOrder="81"
  28. showInDefault="1"
  29. showInWebsite="1"
  30. showInStore="1">
  31. <label>Search Recommendations Count</label>
  32. <validate>validate-digits</validate>
  33. <depends>
  34. <field id="search_recommendations_enabled">1</field>
  35. </depends>
  36. </field>
  37. <field id="search_recommendations_count_results_enabled"
  38. translate="label"
  39. type="select"
  40. sortOrder="82"
  41. showInDefault="1"
  42. showInWebsite="1"
  43. showInStore="1">
  44. <label>Show Results Count for Each Recommendation</label>
  45. <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
  46. <depends>
  47. <field id="search_recommendations_enabled">1</field>
  48. </depends>
  49. </field>
  50. <!--<group id="suggestions">-->
  51. <field id="search_suggestion_enabled" translate="label comment" type="select" sortOrder="90" showInDefault="1" showInWebsite="1" showInStore="1">
  52. <label>Enable Search Suggestions</label>
  53. <comment>When you enable this option your site may slow down.</comment>
  54. <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
  55. </field>
  56. <field id="search_suggestion_count" translate="label" type="text" sortOrder="91" showInDefault="1" showInWebsite="1" showInStore="1">
  57. <label>Search Suggestions Count</label>
  58. <depends>
  59. <field id="search_suggestion_enabled">1</field>
  60. </depends>
  61. </field>
  62. <field id="search_suggestion_count_results_enabled" translate="label" type="select" sortOrder="92" showInDefault="1" showInWebsite="1" showInStore="1">
  63. <label>Show Results Count for Each Suggestion</label>
  64. <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
  65. <comment>When you enable this option your site may slow down.</comment>
  66. <depends>
  67. <field id="search_suggestion_enabled">1</field>
  68. </depends>
  69. </field>
  70. <!--</group>-->
  71. </group>
  72. </section>
  73. </system>
  74. </config>