Forum Replies Created
Viewing 5 posts - 1 through 5 (of 5 total)
-
AuthorPosts
-
totalmarc
ParticipantApplied 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?
totalmarc
ParticipantThanks for this, it worked. It seems hiding groups after the latest update (1.08) is not working yet?
totalmarc
ParticipantWorks great, much appreciated!
totalmarc
ParticipantIs 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>'; }totalmarc
ParticipantWorks great, thanks so much!
-
AuthorPosts
Viewing 5 posts - 1 through 5 (of 5 total)