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.

Captures d’écran

  • Plugin settings.
  • Checkout gift wrapper input.

Installation

  1. Download the plugin from Official WP Plugin Repository.
  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. Aller à WooCommerce > Réglages > Gift Wrapper, activer et configurer Gift Wrapper.

FAQ

Puis-je ajouter un coût à l’emballage cadeau ?

Oui, vous pouvez facilement ajouter un coût via les réglages de l’extension.

Puis-je offrir un emballage cadeau gratuitement ?

Oui, fixez simplement le coût de l’emballage cadeau à zéro (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.

Comment puis-je masquer l’icône de l’emballage cadeau ?

Vous pouvez le faire facilement avec l’extrait PHP suivant :

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

L’icône de l’emballage cadeau n’est pas parfaitement alignée avec la case à cocher. Comment faire ?

Cela dépend fortement du CSS de votre thème et il n’existe pas de solution universelle. Si l’icône n’est pas alignée avec la case à cocher et le libellé, vous devez alors ajouter du CSS pour résoudre ce problème.

Essayez de définir une propriété d’alignement vertical de l’icône pour l’aligner correctement :

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

Voir ici la liste de toutes les valeurs de propriété CSS d’alignement vertical disponibles.

Puis-je modifier la position de la case à cocher de l’emballage cadeau ?

Oui, vous pouvez choisir entre plusieurs emplacements de page de commande dans les réglages de l’extension.

Si vous souhaitez utiliser un autre crochet Web, lisez ci-dessous.

Puis-je définir différentes positions de case à cocher de l’emballage cadeau, au lieu de celles-ci dans la liste déroulante des réglages de l’extension ?

Oui, vous devez définir le crochet Web qui injecte l’entrée. Et peut-être la priorité du crochet.

  • 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 );

Puis-je appliquer mon propre style à la case à cocher sur l’emballage cadeau ?

Oui, vous pouvez écrire votre propre CSS pour le styliser comme vous le souhaitez. Il existe des classes appropriées aux bons endroits, vous pouvez donc appliquer votre CSS partout où vous en avez besoin.

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.

Avis

29 février 2024
It’s easy to use and works as described. Thanks 🙂
15 mars 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!
5 février 2022
Simple to install, useful to create gift wrapping for our clients! I have installed already in some e-shops and works perfectly. Really helpful adn dev friendly also as it has filters for almost everything. And with no pro version, full features on free! Thanks!
Lire les 6 avis

Contributeurs/contributrices & développeurs/développeuses

« Gift Wrapping for WooCommerce » est un logiciel libre. Les personnes suivantes ont contribué à cette extension.

Contributeurs

“Gift Wrapping for WooCommerce” a été traduit dans 3 locales. Remerciez l’équipe de traduction pour ses contributions.

Traduisez « Gift Wrapping for WooCommerce » dans votre langue.

Le développement vous intéresse ?

Parcourir le code, consulter le SVN dépôt, ou s’inscrire au journal de développement par RSS.

Journal

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.