Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bdcrops/module-newsletter
Magento 2 extension provide extra filed of default newsletter ex. FirstName, LastName, Gender etc
https://github.com/bdcrops/module-newsletter
add field magento magento2-extension mysql-database newsletter php subscribe
Last synced: 3 months ago
JSON representation
Magento 2 extension provide extra filed of default newsletter ex. FirstName, LastName, Gender etc
- Host: GitHub
- URL: https://github.com/bdcrops/module-newsletter
- Owner: bdcrops
- Created: 2019-08-27T05:52:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-27T10:49:48.000Z (over 5 years ago)
- Last Synced: 2024-09-30T07:02:18.091Z (3 months ago)
- Topics: add, field, magento, magento2-extension, mysql-database, newsletter, php, subscribe
- Language: PHP
- Size: 84 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Newsletter-Magento2x
Magento2x Newsletter overwrite with new field First Name, Last Name , Gender etc using around plugin methods
Front End :
![Front End ](https://github.com/bdcrops/BDC_Newsletter/blob/master/view/frontend/web/images/newsletter-front.png)
Back End :
![Back End](https://github.com/bdcrops/BDC_Newsletter/blob/master/view/adminhtml/web/images/newsletter-backend.png)
## How to install & upgrade BDC_Newsletter
### 1. Copy and paste
If you don't want to install via composer, you can use this way.
- Download [the latest version here](https://github.com/bdcrops/BDC_Newsletter/archive/master.zip)
- Extract `master.zip` file to `app/code/BDC/Newsletter` ; You should create a folder path `app/code/BDC/Newsletter` if not exist.
- Go to Magento root folder and run upgrade command line to install `BDC_Newsletter`:```
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy[![Latest Stable Version](https://poser.pugx.org/bdcrops/module-newsletter/v/stable)](https://packagist.org/packages/bdcrops/module-newsletter)
[![Total Downloads](https://poser.pugx.org/bdcrops/module-newsletter/downloads)](https://packagist.org/packages/bdcrops/module-newsletter)### 2. Install via composer
We recommend you to install BDC_Newsletter module via composer. It is easy to install, update and maintaince.
Run the following command in Magento 2 root folder.
#### 2.1 Install
Run
```
composer config repositories.module-newsletter git
https://github.com/bdcrops/BDC_Newslettercomposer require bdcrops/module-newsletter:~1.0.0
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy
```#### 2.2 Upgrade
```
composer update bdcrops/module-newsletter
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy
```Run compile if your store in Product mode:
```
php bin/magento setup:di:compile# Ref#
https://devdocs.magento.com/guides/v2.3/extension-dev-guide/plugins.html
https://mage2gen.com/
https://github.com/astorm