Gift Wrapper for WooCommerce
Holidays and birthdays are always coming! Gift wrap your customer's purchase, per order, on the WooCommerce cart and checkout pages.
Next Milestone 4K
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 4 of 4| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| gift wrapper | 9 | — | Tag | 16 hours ago |
| gift wrap | 10 | — | Tag | 16 hours ago |
| wrap | 170 | — | Tag | 16 hours ago |
| gift | 197 | — | Tag | 16 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Support Threads Overview
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 6.32
- Last Updated
- Dec 03, 2025
- Requires WP
- 6.0+
- Tested Up To
- 6.9
- PHP Version
- 7.4 or higher
- Author
- WebFactory Ltd
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.6
- Reviews
- 52
- Support Threads
- 2
- Resolved
- 100%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Frequently Asked Questions
Common questions about Gift Wrapper for WooCommerce
Is the Gift Wrapper plugin activated?
Are you using WooCommerce version 7.2 or newer? Time to upgrade!
Are you using WooCommerce block-style (Gutenberg) cart/checkout? Sorry, Gift Wrapper is not compatible with blocks (yet) The plugin is intended to work with the old-school WC cart/checkout shortcodes.
Have you created at least one WooCommerce gift wrap product, given it a price (even if $0), saved it to a WooCommerce product category, and entered that product category in your Gift Wrapper settings?
Does the your-theme-or-child-theme/woocommerce/cart/cart.php file include at least one of the following hooks?
Gift Wrapper Plus (paid upgrade) allows for easy additional hook placements - just type in the name of the hook you want used.
Why isn't gift wrapping added when I click the button in the cart?
Have you added a gift wrapping as a WooCommerce product? This plugin works by creating a product that virtually represents gift wrapping. It is up to you whether that product is visible in the catalog or not, and how fleshed-out you make the product description. But there needs to be a product, and it needs to be in a category whether or not you make more than one wrapping types. That product category is used in the Gift Wrapping settings.
Finally, check your browser console for JavaScript errors. This plugin uses JavaScript and sometimes depends sometimes other plugins' broken JavaScript can interfere with ours.
Why make more than one type of wrapping?
Maybe you want to offer "Winter Holiday" wrapping and "Birthday" wrapping separately, or maybe you have other types of gift wrap service: wrapping paper or boxes you use that may incur different prices or shipping rules. It's up to you whether or not you make more than one wrapping product. You don't have to.
How can I style the appearance?
I've added CSS tags to every aspect of the cart and checkout gift wrap forms so you can style away. Please if you do not know basic CSS, hire a developer to do this for you. We need jobs, too!
If you would like to change the HTML structure of gift wrap lists and modals, you can use the Gift Wrapper templating system to do that easily.
You will need to create a folder called woocommerce in your theme — or better yet — child theme folder. Inside that folder, create another folder called wcgwp. Move any overwritten plugin template files into this wp-content/theme/woocommerce/wcgwp folder, and your changes will be visible. Read more information on WooCommerce templating here.
Can I change the giftwrap thumbnail size?
Yes, use the 'wcgiftwrap_change_thumbnail' hook in your (child) theme functions.php file as follows:
function my_custom_thumbnail_size( $thumbnail ) {
$thumbnail = 'medium'; // default WP sizes are 'thumb', 'medium', 'medium_large', and 'large'
return $thumbnail;
}
add_filter( 'wcgiftwrap_change_thumbnail', 'my_custom_thumbnail_size', 10, 1 );
This is just an example. Change 'medium' to the size desired, using an existing Wordpress image size slug. You can also use an image size slug created by an active plugin or theme. If thumbnails do not show in your size afterward, it's possible you need to clear caches or run thumbnail regeneration.
Gift Wrapper Plus (paid upgrade) allows users to set thumbnail size in the settings.
I don't want more than one wrapping added to the cart!
Yeah, that could be a problem. But rather than hard-code against that possibility I leave the settings to you, and for good reason. If you don't want more than one wrapping possible, make sure to set your wrapping product to "sold individually" under Product Data->Inventory in your Product editor. If you do this make sure your customer has a way to remove the gift wrapping from the cart on small screens, as sometimes responsive CSS designs remove the "Remove from Cart" button from the cart table for small screens.
I don't want gift wrap to incur a shipping cost
To prevent this happening, I recommend you set up your gift wrap products as WooCommerce "virtual" products (virtual but not downloadable). If setting them up as regular or variable products, make sure to arrange the shipping settings so they don't incur surprise shipping costs.
I don't want to show gift wrapping in my catalog
Visit your gift wrap product (WooCommerce product editor screen) and set Catalog Visibility to "hidden" in the upper right corner near the blue update button. If you have more than one gift wrap product, do this for each one.
I don't want to show a specific element on screen
This plugin is heavily CSS-tagged. If you don't want to show a part of what the Gift Wrapper displays, add custom CSS to your Wordpress theme settings, Wordpress theme css (usually style.css), or - better yet - Wordpress child theme CSS file (style.css). Wordpress also allows CSS to be added in the Customizer.
An example might be:
Let's hide the gift note textarea/textbox. Add this CSS to your theme:
.wcgwp-note-container textarea {display: none;}
or
.wcgwp-note {display: none;}
Both lines of CSS should work (version > 6.0). I cannot support all the requests for free custom theme help any longer! Please study up CSS or hire a developer to help you make custom theme and plugin modifications. WooCommerce has provided some recommendations for where to seek help. Thank you for understanding.
To hide the text "We offer the following gift wrap options:," use CSS or the 'wcgwp_hide_details' filter hook to hide it. To use the hook, add the following code to your functions.php file:
add_filter( 'wcgwp_hide_details', '__return_true' );
The CSS would be:
.wcgwp-details {display: none;}
You can also adjust the HTML output using the template system built into Gift Wrapper.
How can I hide gift wrapping when there are only virtual products in the cart?
Easy, add the following line of code to your (child) theme functions.php file:
add_filter( 'giftwrap_exclude_virtual_products', '__return_true' );
If you're unfamiliar with how to edit the functions.php file, add this code using the Code Snippets plugin.
How can I remove the COD payment option if gift wrap in cart (purchase is probably a gift) ?
Easy, add the following line of code to your (child) theme functions.php file:
add_filter( 'wcgwp_remove_cod_gateway', '__return_true');
How can I make this plugin work with WooCommerce Mix & Match or WooCommerce Composite Products?
Easy. The Plus version of this Gift Wrapper is compatible with the WooCommerce Mix & Match and WooCommerce Composite Products plugins.
I would like this plugin in my language, or to say something different on screen
There are SO many ways to customize this plugin - all the ways! Your developer will have an easy time customizing this exactly how you want it, using filter hooks, templates and/or string translations.
The PLUS version of this plugin allows for easy string translation by using a settings panel -- just type what you want it to say.
Filter hooks
The easiest option is probably to use Wordpress filter hooks included with most strings in this plugin. Here's an example for changing the "Add Gift Wrap?" text:
function my_change_wrap_prompt( $prompt ) {
$prompt = "Would you like to wrap this?";
return $prompt;
}
add_filter( 'wcgwp_add_wrap_prompt', 'my_change_wrap_prompt', 11, 1 );
Another less specific hook can be used to catch any string. Use the exact original string to match, then replace it:
function my_custom_wrap_strings( $string ) {
if ( 'Cancel gift wrap' === $string ) { // Check for default string
$string = 'Cancelar envolver regalo'; // Replace default string
} else if ( 'Cancel' === $string ) { // Check for default string
$string = 'Cancelar'; // Replace default string
} else if ( 'Note' === $string ) { // Check for default string
$string = 'Nota'; // Replace default string
} else if ( 'Note fee' === $string ) { // Check for default string
$string = 'Tarifa de nota'; // Replace default string
} // etc
return $string;
}
add_filter( 'wcgwp_filter_string', 'wcgwp_filter_strings', 11, 1 );
Now the text will say "Would you like to wrap this?" This PHP code could be added using the Code Snippets plugin if you do not have a child theme and are not comfortable editing your child theme functions.php file.
Templating
If you want to do more about styling gift wrap presentation, this plugin includes a templating system.
How can I translate the "Giftwrap Details" (found in Gift Wrapper settings) when using WPML?
This string is saved in the Wordpress options database table and so it takes a little extra work for WPML to find it. Follow these instructions in the WPML documentation to find the 'wcgwp_details' database value and translate it.
The popup (modal) doesn't work with my theme
Most likely this is due to your Wordpress theme conflicting with this plugin. Oftentimes, themes use aggressive CSS z-indexing to make page sections "float". This can cause third-party modals (from any plugin, not just this one) to fail. If you do not know how to correct z-index issues with some custom CSS, please bring this issue up with your theme author and/or your developer. Usually one short line of CSS code can fix this issue. I'd share it here but it hugely depends on which theme you are using.
This plugin doesn't look good or work with my theme
Learn more about possible theme issues. Gift Wrapper works with many themes, both paid and free, and is offered gratis and as is. Some themes just require very minor tweaking with a line or two of CSS for cooperation. If you have suggestions for how to make it work every time for your theme, we will consider hard-coding in your theme fixes. However, we are not responsible nor for hire to make this plugin work with every theme out there. Thank you for understanding.