Title: Gift Wrapping for WooCommerce
Author: Gift Wrapping for WooCommerce
Published: <strong>January 30, 2022</strong>
Last modified: March 1, 2025

---

Search plugins

![](https://ps.w.org/gift-wrapping-for-woocommerce/assets/banner-772x250.png?rev
=2669367)

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://ps.w.org/gift-wrapping-for-woocommerce/assets/icon-256x256.png?rev=2669367)

# Gift Wrapping for WooCommerce

 By [Gift Wrapping for WooCommerce](https://profiles.wordpress.org/giftwrapping/)

[Download](https://downloads.wordpress.org/plugin/gift-wrapping-for-woocommerce.1.2.4.zip)

[Live Preview](https://wordpress.org/plugins/gift-wrapping-for-woocommerce/?preview=1)

 * [Details](https://wordpress.org/plugins/gift-wrapping-for-woocommerce/#description)
 * [Reviews](https://wordpress.org/plugins/gift-wrapping-for-woocommerce/#reviews)
 *  [Installation](https://wordpress.org/plugins/gift-wrapping-for-woocommerce/#installation)
 * [Development](https://wordpress.org/plugins/gift-wrapping-for-woocommerce/#developers)

 [Support](https://wordpress.org/support/plugin/gift-wrapping-for-woocommerce/)

## Description

This plugin allows customers to select a gift wrapper for their orders, via a checkbox
in the checkout page.

With focus on performance and flexibility, this lightweight plugin adds the gift
wrapper cost, using the WooCommerce Fees API.

Through simple and straight-forward settings, you can set a cost for the gift wrapper
or offer it for free, select the tax class, or change the checkbox position on the
checkout.

#### Full features list (free version)

 * Customers can select a gift wrapper for their order through a checkout field 
   on the checkout page.
 * Set an extra cost if gift wrapper is selected. Of course, you can also offer 
   it for free if you want.
 * Select if the extra cost is taxable and select its tax rate.
 * If selected, an extra fee appears on the checkout totals table, adding the gift
   wrapper cost to the cart total. The fee also appears on the thank you page and
   the admin and customer emails.
 * Customize checkout label text.
 * Store managers can easily identify which orders have a gift wrapper selected 
   through a small icon in the order list. Also, gift wrapper full info and cost
   appear in the order page, at the order items section.
 * Customer’s checkbox selection is saved on WooCommerce customer session, so it
   doesn’t get lost on page refresh.
 * Translation ready. Compatible with all plugins supporting wpml-config.xml (WPML,
   Polylang etc.) and TranslatePress.
 * High-Performance Order Storage (HPOS) compatible.
 * Developer friendly, as you can customize pretty much everything via plugin’s 
   settings and carefully placed filters. See FAQ below for more info.

## Screenshots

[⌊Plugin settings.⌉⌊Plugin settings.⌉[

Plugin settings.

[⌊Checkout gift wrapper input.⌉⌊Checkout gift wrapper input.⌉[

Checkout gift wrapper input.

## Installation

 1. Download the plugin from [Official WP Plugin Repository](https://wordpress.org/plugins/gift-wrapping-for-woocommerce/).
 2. Upload Plugin from your WP Dashboard ( Plugins>Add New>Upload Plugin ) the gift-
    wrapping-for-woocommerce.zip file.
 3. Activate the plugin through the ‘Plugins’ menu in WordPress Dashboard.
 4. Go to Woocommerce > Settings > Gift Wrapper, enable and setup the Gift Wrapper.

## FAQ

### Can I add a cost to gift wrapper?

Yes, you can add a cost easily through the plugin settings.

### Can I offer gift wrapper for free?

Yes, just set the gift wrapper cost to zero (0).

### Can I modify the gift wrapper cost on the fly?

Yes, you can do this using the `tgpc_wc_gift_wrapper_cost` filter.
 Simple example:

    ```
      add_filter('tgpc_wc_gift_wrapper_cost', function($cost){
         //Do magic here
         return $cost;
      });
    ```

You should add this code in your child theme’s functions.php file or a Code Snippets
plugin.

### Can I change the icon on the checkout?

Yes, you can use the filter `tgpc_wc_gift_wrapper_icon_url` in order to return the
public url of the image you want
 OR the filter `tgpc_wc_gift_wrapper_icon_html`
in order to filter the printed html of the icon.

### How can I hide the gift wrapper icon?

You can do this easily with the following php snippet:

    ```
      add_filter('tgpc_wc_gift_wrapper_icon_html', function($icon_html){
         return '';
      });
    ```

### The gift wrapper icon is not perfectly aligned with the checkbox. How to fix it?

This highly depends on your theme’s CSS, and there is no universal solution. If 
the icon is not aligned with the checkbox and the label, then you have to add some
CSS to fix this.

Try setting a vertical align property to the icon to align it correctly:

    ```
      .tgpc-enable-checkout-gift-wrapper--label_icon {
         vertical-align: middle;
      }
    ```

See [here](https://developer.mozilla.org/en-US/docs/Web/CSS/vertical-align) the 
list of all available vertical-align CSS property values.

### Can I change gift wrapper checkbox position?

Yes, you can choose between several checkout page locations through the plugin settings.

If you want to use some other hook, read below.

### Can I set different gift wrapper checkbox position, instead of these in dropdown in the plugin settings?

Yes, you need to define the hook that prints the input. And maybe the hook’s priority.

 * To change the hook add this line to your wp-config.php:
    define( ‘TGPC_GIFT_WRAPPER_CHECKOUT_CHECKBOX_LOCATION_HOOK_NAME’,‘
   new_hook_name’ );
 * To change the hook’s priority (default is 15), you will need to add a constant
   in your wp-config.php:
    define( ‘TGPC_GIFT_WRAPPER_CHECKOUT_CHECKBOX_LOCATION_HOOK_PRIORITY’,
   12 );

### Can I apply my own styling to the gift wrapper checkbox?

Yes, you can write your own CSS to style it as you like. There are appropriate classes
in all the right places, so you can apply your CSS wherever you need to.

### Can I translate this plugin to any language?

Yes. All strings in this plugin use the gettext functions, plus an always updated.
pot template file is included. This means that they can be translated to any language
using a translation plugin like WPML, Polylang, Loco Translate etc.

For texts like the checkout checkbox label which is user defined in plugin’s settings,
translation is also supported for all plugins that support the wpml-config.xml protocol
like WPML, Polylang etc., and also TranslatePress.
 For example, if you use WPML,
use “String Translation” and search for (a) “admin_texts_tgpc_gift_wrapper_checkbox_label”
domain, or (b) “tgpc_gift_wrapper_checkbox_label” option name, or (c) simply your
own text you inserted in the admin field.

### Is this plugin compatible with multi-currency plugins?

Yes, but not out of the box, you have to add some code yourself. You have to use
the filter `tgpc_wc_gift_wrapper_cost` and modify the gift wrapper cost depending
on the selected currency.
 You can find some examples in the [support forum](https://wordpress.org/support/plugin/gift-wrapping-for-woocommerce/).

## Reviews

![](https://secure.gravatar.com/avatar/3206ecdec93e45cf35597aafcba0bab8f2e416ad737e3352f942cdb44158d4f0?
s=60&d=retro&r=g)

### 󠀁[Perfect! Simple! Effective!](https://wordpress.org/support/topic/perfect-simple-effective-2/)󠁿

 [Nikos Kavvadas](https://profiles.wordpress.org/nikoslefkas/) November 6, 2025 
1 reply

Perfect! Simple! Effective!

![](https://secure.gravatar.com/avatar/5e9addc5e5adf913ccf5e983122f326436766029a6a5b3677dd0ad74c71d5c9a?
s=60&d=retro&r=g)

### 󠀁[Perfect!](https://wordpress.org/support/topic/perfect-10491/)󠁿

 [Stelios Chatzis](https://profiles.wordpress.org/scprojectsgr/) August 26, 2024

Keep the nice work guys! We always prefer Greek developers!

![](https://secure.gravatar.com/avatar/b02363edf94845f7dac1da6673e0f6d1fe7d7d04d0f254e3703cc9c5af80632d?
s=60&d=retro&r=g)

### 󠀁[simply good](https://wordpress.org/support/topic/simply-good-38/)󠁿

 [sayna](https://profiles.wordpress.org/sayna/) February 29, 2024

It’s easy to use and works as described. Thanks 🙂

![](https://secure.gravatar.com/avatar/b934de0e40b3d8c951ddf5c86f0543c41f426d35efcc28324f775c307ba63890?
s=60&d=retro&r=g)

### 󠀁[Simple to use and Dev friendly](https://wordpress.org/support/topic/simple-to-use-and-dev-friendly/)󠁿

 [xariklios](https://profiles.wordpress.org/xariklios/) March 15, 2022

Simple to use and covers the need of gift wrapping in checkout. Also developer friendly
as hell with many filters to interfere if you wish. Nice!

![](https://secure.gravatar.com/avatar/d9c7a953ca09edc94c7d4596d2378d58b4952bb1d7cd65a31da19ff5fa1e6fd2?
s=60&d=retro&r=g)

### 󠀁[Exactly what I needed](https://wordpress.org/support/topic/exactly-what-i-needed-846/)󠁿

 [pantelisgk](https://profiles.wordpress.org/pantelisgk/) February 24, 2022

Amazing free plugin. Exactly what I needed. Well done mates! <3 Hard to find it 
although…

![](https://secure.gravatar.com/avatar/b94e2b2546b8ceb0637a68a2ea522c1dcd9ff376bd944a1c3e186263223466f6?
s=60&d=retro&r=g)

### 󠀁[It does what it says](https://wordpress.org/support/topic/it-does-what-it-says-95/)󠁿

 [panon](https://profiles.wordpress.org/panon/) February 7, 2022

Simple and to the point. Works like a charm

 [ Read all 7 reviews ](https://wordpress.org/support/plugin/gift-wrapping-for-woocommerce/reviews/)

## Contributors & Developers

“Gift Wrapping for WooCommerce” is open source software. The following people have
contributed to this plugin.

Contributors

 *   [ Gift Wrapping for WooCommerce ](https://profiles.wordpress.org/giftwrapping/)
 *   [ Pexle Chris ](https://profiles.wordpress.org/pexlechris/)
 *   [ Theo Gkitsos ](https://profiles.wordpress.org/theogk/)

“Gift Wrapping for WooCommerce” has been translated into 3 locales. Thank you to
[the translators](https://translate.wordpress.org/projects/wp-plugins/gift-wrapping-for-woocommerce/contributors)
for their contributions.

[Translate “Gift Wrapping for WooCommerce” into your language.](https://translate.wordpress.org/projects/wp-plugins/gift-wrapping-for-woocommerce)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/gift-wrapping-for-woocommerce/),
check out the [SVN repository](https://plugins.svn.wordpress.org/gift-wrapping-for-woocommerce/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/gift-wrapping-for-woocommerce/)
by [RSS](https://plugins.trac.wordpress.org/log/gift-wrapping-for-woocommerce/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.2.4

 * Compatibility: Tested up to WP 6.7.x and WC 9.6.x
 * Change author from `Pexle Chris, Theo Gkitsos` to `Pexle Chris & Theo Gkitsos`

#### 1.2.3

 * Compatibility: Tested up to WP 6.6.x and WC 9.2.x
 * Add a new filter `tgpc_wc_gift_wrapper_cost` to modify the gift wrapper cost 
   on the fly.

#### 1.2.2

 * Compatibility: Tested up to WP 6.5 and WC 8.7.x.
 * Add WordPress Playground blueprint.

#### 1.2.1

 * Compatibility: Tested up to WP 6.3 and WC 8.0.x.

#### 1.2

 * Feature: Add actions before and after checkout field to add custom data.
 * Performance: Plugin settings not auto-loaded anymore to prevent them from loading
   to all pages.

#### 1.1

 * Feature: Add option to change checkbox label on checkout.
 * Feature: Remove gift wrapping option if order has only virtual products.
 * i18n: Added multilingual support.
 * i18n: Updated .pot file.
 * Compatibility: Checked WP & WC compatibility.
 * Compatibility: Plugin made HPOS compatible!

#### 1.0

 * Initial release.

## Meta

 *  Version **1.2.4**
 *  Last updated **1 year ago**
 *  Active installations **1,000+**
 *  WordPress version ** 5.3 or higher **
 *  Tested up to **6.7.5**
 *  PHP version ** 5.6 or higher **
 *  Languages
 * [English (US)](https://wordpress.org/plugins/gift-wrapping-for-woocommerce/),
   [French (France)](https://fr.wordpress.org/plugins/gift-wrapping-for-woocommerce/),
   [Greek](https://el.wordpress.org/plugins/gift-wrapping-for-woocommerce/), and
   [Portuguese (Brazil)](https://br.wordpress.org/plugins/gift-wrapping-for-woocommerce/).
 *  [Translate into your language](https://translate.wordpress.org/projects/wp-plugins/gift-wrapping-for-woocommerce)
 * Tags
 * [gift box](https://wordpress.org/plugins/tags/gift-box/)[gift wrapper](https://wordpress.org/plugins/tags/gift-wrapper/)
   [gift wrapping](https://wordpress.org/plugins/tags/gift-wrapping/)[woocommerce](https://wordpress.org/plugins/tags/woocommerce/)
   [Wrapping](https://wordpress.org/plugins/tags/wrapping/)
 *  [Advanced View](https://wordpress.org/plugins/gift-wrapping-for-woocommerce/advanced/)

## Ratings

 5 out of 5 stars.

 *  [  7 5-star reviews     ](https://wordpress.org/support/plugin/gift-wrapping-for-woocommerce/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/gift-wrapping-for-woocommerce/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/gift-wrapping-for-woocommerce/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/gift-wrapping-for-woocommerce/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/gift-wrapping-for-woocommerce/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/gift-wrapping-for-woocommerce/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/gift-wrapping-for-woocommerce/reviews/)

## Contributors

 *   [ Gift Wrapping for WooCommerce ](https://profiles.wordpress.org/giftwrapping/)
 *   [ Pexle Chris ](https://profiles.wordpress.org/pexlechris/)
 *   [ Theo Gkitsos ](https://profiles.wordpress.org/theogk/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/gift-wrapping-for-woocommerce/)