Can Bricks work with multiple values from a custom field?

Hi there,

I am trying add images to a custom post type: cars.
The images are stored in a custom field “images_ebay”.

Displaying the first images works like a charm with the dynamic tag set to {cf_images_ebay}.

However, I know that there are multiple values in that field but only the first ist displayed. If I output the meta values via “var_dump($meta_values);” I get the following.

array(84) {

[“images_ebay” ]=> array(25)
{
[0]=> string(105) “url1”
[1]=> string(105) “url2”
[2]=> string(105) “url3”

}

}

My question is: How can I get all the values from that array instead of only the first value?

1 Like