rajeshsingh520
Forum Replies Created
-
When you calculate shipping we add the product to the cart virtually and then run the calculation of shipping cost and then we get the proper shipping cost
but we cant add product to the virtual cart with your custom fields (we only consider the variation field), so in your case we are adding the product to virtual cart without those custom field and your shipping cost is getting calculated based on the product without those custom fields
Hi,
Sorry it can’t be done in the free version
In the pro version there is a conditional rule using that you can disable a shipping method when a specific coupon gets applied
so you can make a shipping method with cost 0 and along with other conditions add an extra condition of “coupon” and set to to specific coupon (for which this method will not be shown)
View post on imgur.com
Hi,
You can change the text using this code
add_filter( 'woocommerce_email_subject_customer_order_cancel_request', function($subject, $order){
$order_no = $order->get_order_number();
return "Order cancellation request for order #{$order_no} is submitted successfully";
}, 10, 2);
add_filter( 'woocommerce_email_heading_customer_order_cancel_request', function($subject, $order){
$order_no = $order->get_order_number();
return "Order cancellation request for order #{$order_no} is submitted successfully";
}, 10, 2);Hi,
You can use this filter function to add custom text after the shipping method price
add_filter('pisol_ppscw_shipping_method_name', function($shipping_method_text, $rate){
$shipping_method_text .= '<br>Your text will come here';
return $shipping_method_text;
},10,2);Hi,
– Is there a way to make partial payment based on the fees of the shipping method selected. For example, if shipping selected costs 5$ then the partial payment would be only 5$.
=> Sorry this cant be done, you can either charge them a fixed amount as partial payment , or partial payment can be % of the total cost
2- To disable partial payment if certain shipping method is selected. For example, if local pick up is selected then the partial method is disabled and hidden in the page or removed.
=> You can do this in the pro version
View post on imgur.com
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Issues with the pluginhere is the screenshot
View post on imgur.com
that shortcode is not available in the free version
There are where you are adding does not support shortcode that’s why it is not been run
Sorry there is no issue in the plugin so that code wont be part of the plugin, the issue is specific to the payment method used by you so you will have to use that code snippet
add_filter('woocommerce_available_payment_gateways', function($gateways){
if(function_exists('WC') && isset(WC()->session) && is_object(WC()->session)){
WC()->session->set( 'stop_reload_do_ajax_again', null );
}
return $gateways;
}, PHP_INT_MAX);Add the above code in your theme functions.php file and then check
We have released a new version v1.1.74 upgrade to this new version this should solve the issue
We have identify a scenario when this is happening will be releasing a new update today, that should fix the issue for you
We are not able to reproduce the error on our end, it can be removed
here is the test site link https://thinkhistory.s4-tastewp.com/shop/?apply_coupon=S2UWSVDV
In your case some other plugin may be conflicting with our plugin and blocking the removal of the code
that is available in the pro version, in the pro version you can create a partial payment rule not to be applied when a specific coupon code is applied in the user cart
below is screenshot of how to disable partial cod when a coupon code “3u7mq2h6h”
View post on imgur.com