I am currently using WC()->shipping->get_shipping_methods() to recognize shipping methods at checkout
However, it is useful for me to know the shipping cost per product.
For this I have the id of the product that I get inside a foreach
as follows: $item['product_id']
Is there a hook or function to get the shipping cost by product id? or some function?
In summary what I am trying to do is some hook or some function that gives me the shipping cost by the product id.