by autocircle
5 (2 reviews)
Product Total Price for WooCommerce
An addon for WooCommerce that will help visitors to understand the final product price when product's quantity changes.
Tested up to WP 6.2.8 (Current: 6.8.2)
v1.1.4
Current Version v1.1.4
Updated 2 years ago
Last Update on 10 Apr, 2023
Synced 20 hours ago
Last Synced on
Rank
#13,628
—
No change
Active Installs
100+
—
No change
KW Avg Position
N/A
—
No change
Downloads
3.4K
—
Total downloads
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(2 reviews)
Next Milestone 200
100+
200+
297
Ranks to Climb
-
Growth Needed
194
Current Installs
Need 6 more installs to reach 200+
Rank Changes
Current
#13,628
Change
Best
#
Active Installs Growth
Current
194+
Growth
Peak
194
Downloads Growth
Downloads
Growth
Peak
Reviews & Ratings
5.0
2 reviews
Overall
100%
5
2
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
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.1.4
- Last Updated
- Apr 10, 2023
- Requires WP
- 4.0.0+
- Tested Up To
- 6.2.8
- PHP Version
- 5.3 or higher
- Author
- autocircle
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 2
- 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 Product Total Price for WooCommerce
Yes! You really don't need anything for this plugin.
Yes! Here is the shortcode [WOO-TOTAL-PRICE]
Yes! There is an filter hook called wcptp_custom_location_by_action_hook. This filter hook returns array of action hooks. By adding or removing hook you can easily control the location. Also you can display product total price text in multiple location by add your desired location hooks. Example: add_filter( 'wcptp_custom_location_by_action_hook', function( $hooks ){ $hooks[] = 'your_new_location_hook'; return $hooks; } );
Yes! There also a filter hook called wcptp_any_other_condition. This filter hook return true. You can disable or hide Product Total Price text by simply returning false based on any condition. Exxample: add_filter( 'wcptp_any_other_condition', function( $bool, $product, $allowed_product_types ){ if( condition == true ) { return false; } else { return true; } }, 3, 10 );
Yes!
You can paste this code to your current theme's functions.php: add_filter( 'wcptp_price_html', 'wcptp_price_html' ); function wcptp_price_html( $wcptp_price_html ) { return str_replace( 'Total Price', 'Order Total', $wcptp_price_html ); } This is an example that will change "Total Price" to "Order Total".
Yes allmost with all plugins and themes.
Yes, that could be easily done by adding following code snippet to your theme's function.php file. add_filter( 'wcptp_allowed_product_type', function( $types ){ $types[] = 'woosb'; return $types; }, 10 ); The above code snippet will allow you to show the Total Product Price for almost any types of products.
To show text as prefix and suffix of total price there are 02 filters. Use these filters to display your desired text. apply_filters( 'wcptp_prefix', __return_false() ); apply_filters( 'wcptp_suffix', __return_false() ); Example: add_filter( 'wcptp_suffix', function(){ return "(excl. VAT)"; });