Forum Replies Created
-
AuthorPosts
-
September 29, 2025 at 9:44 PM in reply to: ✅Advanced image field not functional on some posts #49063
Amanda RM
ParticipantAhh - I missed it because it came from eLight Support instead of Metabox. I will respond there. Thank you.
September 29, 2025 at 9:06 PM in reply to: ✅Advanced image field not functional on some posts #49061Amanda RM
ParticipantI sent a message via the contact form a few days ago. Did you receive it?
September 23, 2025 at 11:15 PM in reply to: ✅Advanced image field not functional on some posts #49034Amanda RM
ParticipantMay 12, 2021 at 2:34 AM in reply to: ✅Subfields not displaying within Oxygen Custom Field/Meta Options #28112Amanda RM
ParticipantHi again - can you please respond to my last message?
Amanda RM
ParticipantThat did the trick. Thanks so much!
May 4, 2021 at 12:22 AM in reply to: ✅Subfields not displaying within Oxygen Custom Field/Meta Options #27865Amanda RM
ParticipantThank you for the links.
I feel competent with html and css - not at all with php. Will php be necessary to be able to use the full functionality of Meta Box even when/if Meta Box integrates with Oxygen?
Can you tell please me where I would input the following (snippet code or code block)?
(It's a cloneable group)$group_value = rwmb_meta( 'group_id' );array( 'sub_field_1_key' => 'sub_field_1_value', 'sub_field_2_key' => 'sub_field_2_value', 'sub_field_3_key' => 'sub_field_3_value', //... )$value = isset( $group_value[$sub_field_key] ) ? $group_value[$sub_field_key] : ''; echo $value; // Display sub-field valuearray( array( 'sub_field_1_key' => 'sub_field_1_value', 'sub_field_2_key' => 'sub_field_2_value', 'sub_field_3_key' => 'sub_field_3_value', //... ), array( 'sub_field_1_key' => 'sub_field_1_value', 'sub_field_2_key' => 'sub_field_2_value', 'sub_field_3_key' => 'sub_field_3_value', //... ), //... )$group_values = rwmb_meta( 'group_id' ); if ( ! empty( $group_values ) ) { foreach ( $group_values as $group_value ) { $value = isset( $group_value[$sub_field_key] ) ? $group_value[$sub_field_key] : ''; echo $value; // Display sub-field value } }Amanda RM
ParticipantAhh - yes, that detail was missed on my end. Thank you so much! It's working now :). Thank you for your patience!!
Amanda RM
ParticipantThank you for your reply.
I am getting the return of 'function does not exist'.
I have this code snippet created: https://moveyourfamilyabroad.com/wp-content/uploads/2021/05/Screenshot-2021-05-02-104348.png
I used the PHP Function Return Value. I am unclear what is entered in the argument line. I've tried entering various values with all the same result: https://moveyourfamilyabroad.com/wp-content/uploads/2021/05/Screenshot-2021-05-02-104431.png
Can you tell me please if I'm entering the wrong info into the Php return value option or where else I may be going wrong? Thanks!
Amanda RM
ParticipantCan you please tell me how to make this work?
Would I put this in a code block element? If so, would I replace the custom field ID with the one I've created?
$value = rwmb_meta( $field_id );
echo do_shortcode( wpautop( $value ) );I need some more support to get this to work. Thanks.
-
AuthorPosts