Tuesday, January 26, 2021

Get commerce product field value drupal 8

Get commerce product field value drupal 8:

In preprocess function:

function HOOK_preprocess_commerce_product(&$variables) { 
  $product = $variables['elements']['#commerce_product'];
$fieldValue = $product->get('field_name')->getValue()[0]['value'];
}

This would also work I think
$product->field_mchine_name->value

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...