If you need help installing the plugin you may want to review our Install Guide prior to reading this user guide.
Product Type Support
Enable / Disable Offers for a Single Product
- In your WordPress admin panel go to Products and find the product you would like to adjust. Click to edit.
- From within the offers tab on the left side of the screen, click the check box to Enable Offers.
- Save your changes by clicking the Update button.
Enable / Disable Offers for Multiple Products
- In your WordPress admin panel click on the Products tab on the left.
- Check the box for each product you would like to adjust.
- Select the desired action from the “Bulk Actions” drop-down selection box.
- Click the Apply button to save the changes.
Managing Offers - List
- From the WordPress admin panel, go to WooCommerce -> Offers.
- You may use the action links provided to accept, decline, or submit a counter-offer.
- You may easily browse your offer history using the filter links at the top which will display only Pending, Accepted, Countered, Expired, Completed, or Declined offers.
- To view more details for an individual offer you can click on the email address for the offer.
Managing Offers - Details
- Product Details – This section provides details about the product that the offer is for, the regular price set in WooCommerce for the product, and any stock information that may be available for the product.
- Buyer Details – This section provides details about the potential buyer including their name and contact information.
- Original Offer – This section provides details about the original offer including the original quantity and price per unit offered.
- Counter Offer – This section provides the current quantity and price per unit. If the offer was simply accepted this will match the Original Offer details. If you have submitted a counter-offer this will be reflected accordingly here.
- Offer Note to Buyer – Add a note here when updating the status of the offer to have the note included with the offer email the potential buyer will receive. You can use this to explain to the buyer why you may have accepted, countered, or declined their original offer.
- Offer Status – This section allows you to set whether or not you are accepting, declining, or countering the offer. You may also set additional options here like a “final offer” or an expiration date for the offer.
- Offer Activity Log – This section is a running history of the offer details. Any status updates, notes, etc. will be included here for your review.
- Add Offer Note – This section can be used to add an additional note to the offer without updating the status of the offer. This is typically used for internal notes that only you will see, however, there is an option to email the note to the buyer.
Managing Offers - Declined Offer Coupon
When you choose “Declined Offer” for the Offer Status the Coupon List drop down box will appear with all of your currently active coupons codes listed. Select any coupon code to have it included with the declined offer email notification the buyer receives.
Managing Offers - Auto Accept / Decline Offers
- From the WordPress admin panel, go to Products, and then enter the edit screen for the product you would like to adjust.
- Click on the Offers tab to view the offer options for the product.
- Check the box(es) to enable the Auto-Accept and/or Auto-Decline feature(s).
- Enter the percentage values for auto-accepting / auto-declining offers in relation to the original price.
This sample will automatically accept any offer that is at least 80% of the original price, and will automatically decline any offer that is 50% or less than the original price.
If you would like to adjust the auto-accept / auto-decline settings on multiple products at once, go to Settings -> Offers for WooCommerce -> Tools. Here you will find the bulk edit tool for updating the auto-accept / auto-decline features.
Plugin Settings - General Settings
Plugin Settings - Display Settings
Plugin Settings - MailChimp / ConstantContact / MailPoet
- From the WordPress admin panel, go to Settings -> Offers for WooCommerce.
- Click on the tab for the newsletter management tool that you will be using.
- Enter your API credentials for the newsletter management tool (if applicable) and check he box to enable the feature.
- Click Save Changes to submit your changes.
Plugin Settings - Emails
- From the WordPress admin panel, go to WooCommerce -> Settings.
- Click on the Emails tab. Here you will see links for New offer, New counter offer, Offer received, Accepted offer, Declined offer, Countered offer, Offer on Hold, and Offer note. Click any of these to adjust the settings for that particular email.
- Adjust the options to suit your needs and then click Save changes to update the settings.
Bulk Enable / Disable Offers Tool
- From the WordPress admin panel, go to Settings -> Offers for WooCommerce.
- Click on the Tools tab.
- Choose Enable Offers or Disable Offers from the Action drop-down list.
- From the Target drop-down option, choose All Products, Featured Products, or use the Where option to define filters for which product(s) should be enabled/disabled.
- If you chose “Where” in Step 4, then you’ll choose the filter option and enter your filter value. In this sample screenshot we are enabling offers for all products where the price is greater than 99.99.
- Click the Process button to run the bulk update accordingly.
Send Myself a Copy of Custom Notice Emails
To do this, add the following code snippet into your theme’s functions.php file (or wherever you are comfortable placing it.)
wc_countered_offer_email /** * Function sends BCC of accepted and countered offers * * @param string $headers The default headers being used * @param string $object The email type/object that is being processed */ function add_bcc_to_certain_emails( $headers, $object ) { // email types/objects to add bcc to $add_bcc_to = array( 'wc_accepted_offer', // Accepted Offer message 'wc_countered_offer', // Countered Offer message ); // if our email object is in our array if ( in_array( $object, $add_bcc_to ) ) { // change our headers $headers = array( $headers, 'Bcc: NAME ' ."\r\n", ); } return $headers; } add_filter( 'woocommerce_email_headers', 'add_bcc_to_certain_emails', 10, 2 );
Developer Hooks
Need Additional Help?
Schedule a live meeting with Drew Angell, PayPal Certified Developer, and get all of your questions or concerns answered.
Featured PayPal Products and Services
-
PayPal Help
$100.00 -
PayPal for WooCommerce
FREE! -
WooCommerce Multiple PayPal Accounts Plugin
$99.99 -
PayPal Shipment Tracking for WooCommerce
$49.99 -
Sale!
PayPal for WooCommerce – Credit Card Split Payment
$99.99$49.99 -
Offers for WooCommerce
$59.99 -
WordPress PayPal Invoice Plugin
FREE! -
WordPress Maintenance
$100.00 on the 1st of each month
Good morning Andrew,
Last question, here in europe we use the next price format:
€ 1.500,00 instead of € 1,500.00
How can we change this?
Kind regards,
Thomas
It should be working based on the currency set in WooCommerce. Are you seeing otherwise?
How to translate the text from english to french ?
Hi Christian,
There is a translation template file included with the plugin. Are you familiar with using that to translate WordPress plugins in general?