by unknown_user
4.7 (3 reviews)
WC Gift Packaging
This plugin adds a 'Send this order packaged as gift' option on the WooCommerce checkout.
Tested up to WP 5.2 (Current: 6.9)
v1.5
Current Version v1.5
Updated 6 years ago
Last Update on 30 Jul, 2019
Synced 8 hours ago
Last Synced on
Rank
#14,372
-46 this week
Active Installs
100+
-42.2%
KW Avg Position
106.7
—
No change
Downloads
5K
+1 today
Support Resolved
0%
—
No change
Rating
94%
Review 4.7 out of 5
4.7
(3 reviews)
Next Milestone 200
100+
200+
1,051
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
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
Need 23 more installs to reach 200+
Rank Changes
Current
#14,372
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
4.7
3 reviews
Overall
94%
5
2
(67%)
4
1
(33%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 3 of 3| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| Packaging | 45 | — | Tag | 9 hours ago |
| Wrapping | 80 | — | Tag | 9 hours ago |
| gift | 195 | — | Tag | 9 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
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.5
- Last Updated
- Jul 30, 2019
- Requires WP
- 3.0+
- Tested Up To
- 5.2
- PHP Version
- N/A
- Author
- unknown_user
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.7
- Reviews
- 3
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about WC Gift Packaging
add_filter( 'wc_gift_packaging_field_hook', 'custom_hook_position' );
function custom_hook_position( $text ) {
return 'woocommerce_after_order_notes';
}
function custom_hook_position( $text ) {
return 'woocommerce_after_order_notes';
}
add_filter( 'wc_gift_packaging_checkout_field', 'my_checkbox_text' );
function my_checkbox_text( $text ) {
return __( "Send this order as awesome packaged gift" );
}
Is it possible to wrap the checkbox in some html
Yes. You can use the before_wc_gift_packaging_checkout_field and after_wc_gift_packaging_checkout_field hooks like this:
add_action( 'before_wc_gift_packaging_checkout_field', 'custom_start' );
function custom_start() {
echo '<div class="my-custom-html">';
}
add_action( 'after_wc_gift_packaging_checkout_field', 'custom_end' );
function custom_end() {
echo '</div>';
}
Is it possible to customize the note in the mail, order details or backend
Yes. You can use the wc_gift_packaging_admin_note, wc_gift_packaging_order_note or wc_gift_packaging_email_note filters to completely change the note. Here are two examples:
add_filter( 'wc_gift_packaging_admin_note', 'custom_note', 10, 2 );
function custom_note( $text, $is_gift ) {
if( $is_gift ):
return '<h3>' . __( "This is a regular order" ) . '</h3>';
else:
return '<h3>' . __( "This order is a gift" ) . '</h3>';
endif;
}
add_filter( 'wc_gift_packaging_order_note', 'html_wrap', 10, 2 );
function html_wrap( $text, $is_gift ) {
return '<div class="my-custom-html">' . $text . '</div>';
}
function my_checkbox_text( $text ) {
return __( "Send this order as awesome packaged gift" );
}
Is it possible to wrap the checkbox in some html
Yes. You can use the before_wc_gift_packaging_checkout_field and after_wc_gift_packaging_checkout_field hooks like this:
add_action( 'before_wc_gift_packaging_checkout_field', 'custom_start' );
function custom_start() {
echo '<div class="my-custom-html">';
}
add_action( 'after_wc_gift_packaging_checkout_field', 'custom_end' );
function custom_end() {
echo '</div>';
}
Is it possible to customize the note in the mail, order details or backend
Yes. You can use the wc_gift_packaging_admin_note, wc_gift_packaging_order_note or wc_gift_packaging_email_note filters to completely change the note. Here are two examples:
add_filter( 'wc_gift_packaging_admin_note', 'custom_note', 10, 2 );
function custom_note( $text, $is_gift ) {
if( $is_gift ):
return '<h3>' . __( "This is a regular order" ) . '</h3>';
else:
return '<h3>' . __( "This order is a gift" ) . '</h3>';
endif;
}
add_filter( 'wc_gift_packaging_order_note', 'html_wrap', 10, 2 );
function html_wrap( $text, $is_gift ) {
return '<div class="my-custom-html">' . $text . '</div>';
}