Hi M.,
I am very thankful for your sharing.
I have a shipping method which will send the product to a user-specified convenient store.
Thus, I need to email the customer to remind him/her about the convenient store's info.
I wonder how should I apply the conditional logic, like:
<?php
if (shipping_method=="convenient_store")
{ echo "the convenient store address is:XXX" ; }
But I do not know what is the correct form to write shipping_method=="convenient_store" ? Should I check the id of that shipping method?
THank you so much.