=== Really Simple RfQ Form for WooCommerce ===
Contributors: denra, itinchev
Donate link: https://www.paypal.me/itinchev
Tags: request, quotation, quote, woocommerce, wc, product, form, submit, send, question, comment, integrate, page
Requires at least: 4.0
Tested up to: 6.6
Stable tag: 1.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Removes the 'Add to cart' button from WooCommerce and adds a simple 'Request for quotation' form on all product pages.

== Description ==

There are some products or services that cannot be sold directly via shopping cart. This plugin allows your prospective customers to easily request a quotation from you using a simple and easy to use contact form.

*It takes lots of efforts to develop and support a plugin. Please send us your feedback and questions to fix your issue before leaving a bad review.*

Are you satisfied by using this plugin? Consider leaving a [5 star review](https://wordpress.org/support/plugin/really-simple-rfq-form-for-woocommerce/reviews/?rate=5#new-post).

If you need support or more information about this free plugin please read the description and the F.A.Q. section below or write in the [Support Forum](https://wordpress.org/support/plugin/really-simple-rfq-form-for-woocommerce/).

== Features ==

* Simple and easy to use RfQ form with name, email, phone, questions or comments fields.
* Uses AJAX submission and the user does not leave the page while sending the request.
* Automatically adds the product name, SKU, picture and link in the request message.
* Emails the requests using the built-in wp_mail() WordPress function.
* No complicated settings. All is setup to go. Simply install it and it works.

== Installation ==

= From WordPress Dashboard =

1. Navigate to `Plugins` -> `Add New` from your WordPress dashboard.
2. Search for `Really Simple RfQ Form for WooCommerce` and install it.
3. Activate the plugin from the Plugins menu.

= Manual Installation =

1. Download the plugin file: `really-simple-rfq-form-for-woocommerce.zip`
2. Unzip the file
3. Upload the `really-simple-rfq-form-for-woocommerce` folder to your `/wp-content/plugins` directory (do not rename the folder).
4. Activate the plugin from the Plugins menu.

It will start doing it's job. That's all, folks!

== Frequently Asked Questions ==

= How can I hide/deactivate the cart icon of WooComerce in the menu? =
Your theme probably supports a method to hide this icon. If not, then you can use CSS to do it.

= Can I change the default quantity for quotation? =
Yes, you can (for all forms) by hooking to a special filter we have created. Put this in the functions.php of your child theme:
`add_filter('denra_plugin_rsrfqfwc_default_qty', 'my_company_change_default_qty', 20);
function my_company_change_default_qty($qty) {
    unset($qty);
    return 100; // change the qty to the one you wish e.g. 10 or 100
}`

= Can I hug you for making my life easier with this plugin? =
No. But you can leave a positive review and donate. ;)

== Screenshots ==
1. The form that is being added instead of the 'Add to cart' button.

== Changelog ==

= 1.0 =
* Initial release
