autocircle
Forum Replies Created
-
Forum: Plugins
In reply to: [Product Total Price for WooCommerce] Use Total Price value in Google FeedHi are you still using this plugin? Do you still need help to solve this issue related to Google Feed? Let me know. Sorry for the huge late reply.
Please update the plugin. I have added a new filter
wcptp_any_other_condition
using this filter return false based of your tiered product.See following example
add_filter( 'wcptp_any_other_condition', function( $bool, $product, $allowed_product_types ){ if( condition == true ) { return false; } else { return true; } }, 3, 10 );
Hope your issue will be solved. Sorry for late reply
Forum: Plugins
In reply to: [Product Total Price for WooCommerce] place total price above RRPPlease update the plugin. I have added shortcode [WOO-TOTAL-PRICE] and also added 2 new filter. Using those filter you can relocation the position of the Total Price Text.
Hope your issue will be solved. Sorry for late reply.
Forum: Plugins
In reply to: [Product Total Price for WooCommerce] ShortcodePlease update the plugin. I have added shortcode [WOO-TOTAL-PRICE]
Hope your issue will be solved. Sorry for late reply
Forum: Plugins
In reply to: [Product Total Price for WooCommerce] Suffix after total priceHello sir,
I have updated my plugin as your need. Now you can show suffix/prefix with these filters.
apply_filters( 'wcptp_prefix', __return_false() );
apply_filters( 'wcptp_suffix', __return_false() );Here an example:
add_filter( 'wcptp_suffix', function(){
return "(excl. VAT)";
});Forum: Plugins
In reply to: [Product Total Price for WooCommerce] Not working with Elementor add to cart@webboxmaster thanks for your suggestion. I’ll try to add the feature. Or if you want to contribute you are very much welcome. Github repo link https://github.com/autocircled/woo-total-price
Regards
I have checked your shop it looks nice. The issue you said is that the price is not showing on the variable product page. Is it only not showing when you visit the variable product page, but on select any variation it shows, right? Because there are not selected any variables by default. The total price will only show when the specific product is selected.
For example, on a single product page, the selection is already made by woocommerce. The price is fixed. So we can display the total price based on quantity. But for variable products users must have to select a variation on the product page or you as shop admin must have to select the default variation when creating the product and then our plugin can display the price.
Hope you understand.
- This reply was modified 2 years, 11 months ago by autocircle.
- This reply was modified 2 years, 11 months ago by autocircle.
Forum: Plugins
In reply to: [Product Total Price for WooCommerce] Hide price on variable productHello @mikesimon1920,
Yes you can disable our plugin on specific product type page like if you don’t want to show total price on variable product page simply copy below code snippet in your active theme’s functions.php file or you can use code snippet plugin.
add_filter( 'wcptp_allowed_product_type', function(){ return array( 'simple' ); } );
You can return those products types here to show the total price section.
I hope your issue will be solved. Let me know if you need further help at https://join.skype.com/invite/nbMUHWfJ3ybB
Regards
Forum: Plugins
In reply to: [Product Total Price for WooCommerce] Variable product bundleFrom now this plugin fully supported with WPC Product Bundles for WooCommerce plugin. Thanks for using our plugin.
Forum: Plugins
In reply to: [Product Total Price for WooCommerce] Variable product bundleHi @damon01,
You can directly talk with me at skype https://join.skype.com/invite/nbMUHWfJ3ybBI need to check your issue.
- This reply was modified 3 years, 1 month ago by autocircle.
Forum: Plugins
In reply to: [Product Total Price for WooCommerce] Variable product bundleHello @damon01,
Sorry for late reply.
I have solved the issue you mentioned above. To solve the issue follow below instructions:
1. First uninstall the plugin and then again install (because I have updated the plugin. Version not changed, that’s why you didn’t get any notification)
2. Add following code snippet to your active theme’s functions.php file or you can use Code Snippets pluginadd_filter( 'wcptp_allowed_product_type', function( $types ){ $types[] = 'woosb'; return $types; }, 10 );
Please let me know if you need further help.
RegardsForum: Plugins
In reply to: [Product Total Price for WooCommerce] price don’t change by arrowI can see its now working. Its amazingly working. How you did this?
Forum: Plugins
In reply to: [Product Total Price for WooCommerce] language changeYes its possible to change to any language. You can do this by directly change by filter hook or you can use any multilingual plugin.
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 ); }
Replace Order Total to any custom text.
If you need any further assistance please let me know.
Thank youForum: Plugins
In reply to: [Product Total Price for WooCommerce] Variable product price not changingThank you for your awesome feedback. I’ll try to make this plugin elementor compatible.
Forum: Reviews
In reply to: [Product Total Price for WooCommerce] Perfect…in GutenbergThank you for your awesome review. It gives me more energy to more develop the plugin. I’ll try to add elementor and other page builder support very soon also.
- This reply was modified 3 years, 6 months ago by autocircle. Reason: typo spelling