remp / crm-products-module
CRM Products Module
Installs: 26 853
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 9
Forks: 6
Open Issues: 1
Requires
- php: ^8.1
- dev-master
- 3.5.0
- 3.4.0
- 3.3.1
- 3.3.0
- 3.2.0
- 3.1.0
- 3.0.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.0
- 2.4.0
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.0
- 1.2.3
- 1.2.1
- 1.2.0
- 1.1.0
- 1.0.0
- 1.0.0-beta2
- 1.0.0-beta1
- 0.39.0
- 0.38.0
- 0.37.0
- 0.36.1
- 0.36.0
- 0.35.0
- 0.34.0
- 0.33.0
- 0.32.0
- 0.31.0
- 0.30.0
- 0.29.0
- 0.28.0
- 0.27.0
- 0.26.0
- 0.25.0
- 0.24.0
- 0.23.0
- 0.22.0
- 0.21.0
- 0.20.0
- 0.18.0
- 0.17.0
- 0.16.0
- 0.15.0
- 0.14.0
- 0.13.0
- 0.12.0
- 0.11.0
- 0.10.0
- 0.9.0
- 0.8.2
- 0.8.1
- 0.8.0
- 0.7.0
- 0.6.0
- 0.5.0
- 0.4.2
- dev-dependabot/npm_and_yarn/terser-4.8.1
This package is auto-updated.
Last update: 2024-10-25 12:18:30 UTC
README
Configuration
Payment gateways
To configure which gateways are available on the checkout page, you need to register the gateway and add it's label in your config.neon
file.
Please add following snippet with the (available) gateways you want to use:
services: # ... checkoutFormFactory: setup: - addPaymentGateway(paypal, "Paypal") - addPaymentGateway(cardpay, "Credit card")
Terms and Conditions URL
If you want the customer to agree to the terms and conditions, you need to configure URL in settings (category Shop).
Checkbox with the link to the terms and conditions will be displayed (and required) at the checkout before the customer confirms the order.
E-books
Product module can handle orders of ebooks and provides download links in the user's section.
To display the download links of e-books you have to register your own implementation of EbookProviderInterface
in configuration:
ebookProvider:
setup:
- register(Crm\DibukModule\Models\DibukEbookProvider())
And register link on library into user's section menu:
public function registerFrontendMenuItems(MenuContainerInterface $menuContainer)
{
...
$menuItem = new MenuItem($this->translator->translate('products.menu.books'), ':Products:Orders:Library', '', 155);
$menuContainer->attachMenuItem($menuItem);
}
Components
DonatedSubscriptionListingWidget
Simple badge showing subscription donor e-mail.
GiftCoupons
Dropdown listing of gift subscriptions with modal detail.
ProductItemsListWidget
Payments listing single payment item widget.
ProductStats
Products stats listing component.