Support Forum ยป User Profile

Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • in reply to: Fields with same ID bug? #2437
    totalmarctotalmarc
    Participant

    Applied changes, and it didn't work.

    I reverted back to a standard Meta Box 4.8.3 and after some research it seems I only have this issue with the Image Advanced field type. So far it looks like other field types with the same ID work ok.

    If you register multiple meta boxes with unique ID, with a field type image_advanced with the same ID, changes are not saved when updating a page.

    Can you confirm this?

    in reply to: Hide fields on multiple parent pages & hiding groups #1856
    totalmarctotalmarc
    Participant

    Thanks for this, it worked. It seems hiding groups after the latest update (1.08) is not working yet?

    in reply to: Help displaying group #1160
    totalmarctotalmarc
    Participant

    Works great, much appreciated!

    in reply to: Help displaying group #1154
    totalmarctotalmarc
    Participant

    Is it possible the return the value of a select_advanced field with multiple => true so it shows multiple page links selected?

    I have:

    array(
    				'name'        => __( 'Inititavie Links', 'test' ),
    				'id'          => "intiative_links",
    				'type'        => 'post',
    				'post_type'   => 'page',
    				'field_type'  => 'select_advanced',
    				'multiple'    => true,
    				'placeholder' => __( 'Select an Item', 'test' ),
    				'query_args'  => array(
    					'post_status'    => 'publish',
    					'posts_per_page' => - 1,
    				)
    			),

    Is something like this possible?:

    $group_value = rwmb_meta( 'initiatives_group' );
    foreach ( $group_value as $row_value )
    {
        echo '<div class="the_image"><img src="' . $row_value['initiative_image'] . '"></div>
            <div class="the_title">' . $row_value['initiative_title'] . '</div>
            <div class="the_links">' . $row_value['intiative_links'] . '</div>';
    }
    in reply to: Help displaying group #1153
    totalmarctotalmarc
    Participant

    Works great, thanks so much!

Viewing 5 posts - 1 through 5 (of 5 total)