Call For Price
Overview
The Call For Price Magento module allows you to hide the add to cart button and show custom text instead of the price for specific customer groups. This can be useful for a variety of purposes, such as:
- Hiding prices from competitors
- Encouraging customers to contact you for a quote
- Showing different prices to different customer groups
At the admin product edit page, a Call For Price section will be added where you can configure the module. The configuration is per product and consists of:
- Show/hide add to cart button
- Enable/disable custom text instead of price
- List of customer groups where this configuration is applied for
Features
The Call For Price Magento module has the following features:
- Ability to hide add to cart button for specific customer groups
- Ability to show custom text instead of price for specific customer groups
- The custom message instead of price can be specified for each product
- Support for Simple, Bundle, Configurable and Grouped product types
- Easy to install and configure
Benefits
The Call For Price Magento module offers the following benefits:
- Increased customer engagement: Customers are more likely to contact you if they can't see the price of a product.
- Improved customer satisfaction: Customers appreciate being able to get a quote for a product before they buy it.
- Increased sales: Hiding prices can lead to increased sales by encouraging customers to contact you for a quote.
How to use
To use the Call For Price Magento module, you will need to:
- Install the module.
- Configure the module in the admin panel.
- Set the custom message for each product.
The Call For Price Magento module will start to work automatically.
Magento Compatibility | 2.3.x, 2.4.x |
---|---|
License | GNU General Public License v3.0 (GPL-3.0) |
Composer Package | thesgroup/module-callforprice |
Automatically Add The Repository
Through an SSH connection, all you have to do is run the following command from your Magento installation directory
composer config repositories.www.sashas.org composer https://www.sashas.org
Manually Add The Repository
The typical Magento 2 installation has repositories section of composer.json like this:
{
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
]
}
You will need to add a repository by appending an object to the repositories object
{
"repositories": {
"0": {
"type": "composer",
"url": "https://repo.magento.com/"
},
"www.sashas.org": {
"type": "composer",
"url": "https://www.sashas.org"
}
},
}
How To Install The Module
Once the repository is added to the composer.json file, you can now install the packages that are available through it.
For example, let’s say you want to install the thesgroup/module-callforprice module through composer. Run the command below to install it:
composer require thesgroup/module-callforprice