I’m trying to add a fee of £3 per product if any of the products in the basket have the category ID “160”.
This is working great but I also only want this fee to apply if certain shipping methods are chosen.
What I have so far:
function df_add_ticket_surcharge( $cart_object ) {
global $woocommerce;
$specialfeecat = 160; // category id for the special fee
$spfee = 3.00; // initialize special fee
$spfeeperprod = 3.00; //special fee per product
foreach ( $cart_object->cart_contents as $key => $value ) {
$proid = $value['product_id']; //get the product id from cart
$quantiy = $value['quantity']; //get quantity from cart
$itmprice = $value['data']->price; //get product price
$terms = get_the_terms( $proid, 'product_cat' ); //get taxonamy of the prducts
if ( $terms && ! is_wp_error( $terms ) ) :
foreach ( $terms as $term ) {
$catid = $term->term_id;
if($specialfeecat == $catid ) {
$spfee = $spfee * $quantiy;
}
}
endif;
}
if($spfee > 0 ) {
$woocommerce->cart->add_fee( 'Ticket Concierge Charge', $spfee, true, 'standard' );
}
}
add_action( 'woocommerce_cart_calculate_fees', 'df_add_ticket_surcharge' );
I have tried integrating the function from this post: https://stackoverflow.com/a/47732732/12019310 but can’t seem to get it functioning without a critical notice.
Any advice would be greatly appreciated!
2
Answers
The following code
This post served me fully, but the script did not work for me if I have other cities with fixed shipping costs.
so this worked for me!