Hi @shoppingexpress,
Sorry for not replying earlier. We will add this option in next plugin version, meanwhile, you can add it with some PHP code. You need to add this to your (child) theme’s functions.php file:
add_action( 'woocommerce_after_shop_loop_item', 'alg_add_checkout_fees_info', 10 );
if ( ! function_exists( 'alg_add_checkout_fees_info' ) ) {
function alg_add_checkout_fees_info() {
echo do_shortcode( '[alg_show_checkout_fees_lowest_price_info]' );
}
}
If you need full fees info, instead of lowest fee only, you need to replace
echo do_shortcode( '[alg_show_checkout_fees_lowest_price_info]' );
with
echo do_shortcode( '[alg_show_checkout_fees_full_info]' );
You can also try different priority (instead of 10
) and positions (instead of woocommerce_after_shop_loop_item
) to move the info. Here are some more possible positions:
woocommerce_before_shop_loop_item
woocommerce_before_shop_loop_item_title
woocommerce_shop_loop_item_title
woocommerce_after_shop_loop_item_title
Hope that helps.
Best regards,
Tom