Support Forum ยป User Profile

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: sub group gets only one value #8909
    PhaidonasPhaidonas
    Participant

    i used this kind of method:

    <?php
    	$group_press = rwmb_meta('press_group');
    	$group_press_files = $group_press['press_files_group'];
    foreach($group_press_files as $group_press_file){
    echo	'<a href="',$group_press_file['press_file_input_2'],'">',$group_press_file['press_name_file'],'</a>';
    }
    	?>

    But thanks

    in reply to: Metabox group does not appear #8886
    PhaidonasPhaidonas
    Participant

    hello, it works, thanks a lot

    in reply to: Metabox group does not appear #8808
    PhaidonasPhaidonas
    Participant

    I fixed it, but with this call:

    <?php
    
    			$group_press_values = rwmb_meta( 'press_group');
    			if ( ! empty( $group_press_values ) ) {
    			    foreach ( $group_press_values as $group_press_value ) {
    
    						echo $group_press_value['wysiwyg_3'];
    			    }
    			}else{
    				echo 'empty';
    			};
    
    		?>

    It only calls the first character of the text, i also removed the clone option from the press_group

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