源码集成 / module-quickbo-search-bar
直接从后台仪表板快速搜索产品、订单、客户、CMS页面或块
100.0.1
2023-01-31 22:29 UTC
Requires
- php: ^7.4 || ^8.0
- ext-json: *
- magento/framework: ^103.0
- magento/module-backend: 102.0.*
README
在后台仪表板添加快速搜索栏,用于查找产品、订单、客户、CMS页面或块
设置
需要使用Magento 2开源版或商业版。
Composer安装
运行以下composer命令
composer require sorciento/magento2-quickbosearchbar
设置模块
运行以下magento命令
bin/magento setup:upgrade
启用模块
在后台,转到 商店 > 配置 > 源码集成 > 快速后台搜索栏 并将 状态 设置为 启用。
如果需要,不要忘记清理缓存。
如何使用
一个“快速搜索”区域将出现在您的后台仪表板顶部。
通过以下字段输入您希望查找的数据。您可以通过添加一个由冒号(双点字符)分隔的过滤器来搜索特定的信息。
搜索格式: {searched data}:{filter} 示例: MB:sku
- 产品(括号内为过滤器键)
- entity_id (
prod) - sku (
sku)
- entity_id (
- 订单
- order_id (
inc) - increment_id (
ord@) - customer_email (
order) - grand_total (
total)
- order_id (
- 客户
- entity_id (
cust) - email (
cus@) - first_name (
lname) - last_name (
fname) - 出生日期 (
dob)
- entity_id (
- CMS页面
- page_id (
cmspid) - identifier (
cmspkey) - title (
cmspti) - content (
cmspco)
- page_id (
- CMS块
- block_id (
cmsbid) - identifier (
cmsbkey) - title (
cmsbti) - content (
cmsbco)
- block_id (
许可证
本项目采用MIT许可证 - 请参阅许可证详细信息。
这就全部了!