Skip to content

Commit 7e8df76

Browse files
committed
added files
0 parents  commit 7e8df76

File tree

2 files changed

+64
-0
lines changed

2 files changed

+64
-0
lines changed

README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
## ElasticSuite Blog search for Ves Magento 2 Blog
2+
3+
4+
This module connecting between each other [ElasticSuite](https://github.com/Smile-SA/elasticsuite) search extension and [Ves](https://magefan.com/magento2-extensions) [Magento 2 Blog extension](https://landofcoder.com/magento-2-blog-extension.html)
5+
6+
It allows to index Magento 2 Blog posts into the search engine and display them into the autocomplete results, and also on the search result page.
7+
8+
### Requirements
9+
10+
* For version 1.x.x: Magento Community Edition 2.3.* - 2.4.* or Magento Enterprise Edition 2.3.* - 2.4.*
11+
12+
The module requires :
13+
14+
- [ElasticSuite](https://github.com/Smile-SA/elasticsuite)
15+
- [Ves Blog](https://landofcoder.com/magento-2-blog-extension.html)
16+
17+
### How to use
18+
19+
1. Enable it
20+
21+
``` bin/magento module:enable Lof_ElasticsuiteBlog ```
22+
23+
3. Install the module and rebuild the DI cache
24+
25+
``` bin/magento setup:upgrade ```
26+
27+
4. Process a full reindex of the Blog Post search index
28+
29+
``` bin/magento index:reindex elasticsuite_blog_fulltext ```
30+
31+
Forked from Repo: [ComWrap ElasticsuiteBlog](https://github.com/comwrap/Comwrap_ElasticsuiteBlog)

composer.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "landofcoder/module-elasticsuite-blog-search",
3+
"type": "magento2-module",
4+
"version": "1.0.0",
5+
"license": ["OSL-3.0", "AFL-3.0"],
6+
"description": "Landofcoder Elasticsuite - Blog Post Search Module for Smile Elasticsuite.",
7+
"repositories": [
8+
{
9+
"type": "vcs",
10+
"url": "ssh://git@github.com:landofcoder/module-elasticsearch-blog.git"
11+
}
12+
],
13+
"require": {
14+
"magento/framework": ">=100.1.0",
15+
"magento/module-store": ">=100.1.0",
16+
"magento/module-backend": ">=100.1.0",
17+
"magento/module-catalog": ">=100.1.0",
18+
"magento/module-catalog-search": ">=100.1.0",
19+
"magento/magento-composer-installer": "*",
20+
"smile/elasticsuite": ">=2.1"
21+
},
22+
"require-dev": {
23+
"smile/magento2-smilelab-quality-suite": "1.0.0"
24+
},
25+
"autoload": {
26+
"files": [
27+
"registration.php"
28+
],
29+
"psr-4": {
30+
"Lof\\ElasticsuiteBlog\\": ""
31+
}
32+
}
33+
}

0 commit comments

Comments
 (0)