Wednesday, May 5, 2021

Drupal 9 commerce - get product type by product ID

Get product type by product ID:

$product = \Drupal\commerce_product\Entity\Product::load((int)$product_id);
var_dump($product->bundle());

Happy coding!

No comments:

Post a Comment

Workflow of WordPress project in a team with Git

1. We should not push any Wordpress core folders or files to github. 2. Only push custom theme and custom plugin into github. 3. So, in this...