Support

Account

Home Forums Add-ons Gallery Field Gallery images not displaying on SOME pages Reply To: Gallery images not displaying on SOME pages

  • I don’t know if this will help, but I printed the values using two methods: get_fields and get_post_custom.

    get_fields:

    <?php $fields = get_fields( $post->ID );?>
    <pre> <?php var_dump($fields) ?> </pre>

    Printed:

    ["photos"]=>
    array(0) {
    }

    get_post_custom:

    <?php $images = get_field(‘photos’, $post->ID );?>
    <pre><?php $c = get_post_custom(); var_dump($c); ?></pre>

    Printed:

    ["photos"]=>
    array(1) {
    [0]=>
    string(62) “a:4:{i:0;s:3:”123″;i:1;s:3:”125″;i:2;s:3:”124″;i:3;s:3:”126″;}”
    }
    ["_photos"]=>
    array(1) {
    [0]=>
    string(19) “field_51dad81f8f6b2″
    }