owebia / magento2-module-advanced-shipping

Other
90 stars 28 forks source link

Access to the store group #63

Closed Seb33300 closed 5 years ago

Seb33300 commented 5 years ago

Hello,

Can you please add the ability to access the store group?

With Magento, we are able to access to the store group with $store->getGroup().

I tried $store->group with your module but it seems to not work. I would like to get the store group code in order to add a condition on a specific store group.

Than you

owebia commented 5 years ago

Hi,

You can use $store->group_id to get the store group id or $store->getGroup() to get the group object (ex: $store->getGroup()->name).

Best Regards, A.L.