Can someone help me with outputting of my content from my group?
This is my code:
$product_group = rwmb_meta( 'products' );
$sku_key = 'sw_swsku';
$sku_value = isset( $product_group[$sku_key] ) ? $product_group[$sku_key] : false;
And this is the results of my var_dump()
var_dump( $product_group);
array (size=1)
0 =>
array (size=4)
'sw_swsku' => string 'ip616gray' (length=9)
'sw_swdescription' => string 'Apple iPhone 6 16Gb Space Gray' (length=30)
'sw_swprice' => string '984' (length=3)
'sw_swqty' => string '1' (length=1)
var_dump( $sku_key );
string 'sw_swsku' (length=8)
var_dump( $sku_value );
boolean false