Support

Account

Home Forums Front-end Issues Displaying all fields in a group Reply To: Displaying all fields in a group

  • Hmm, what if you add a conditional to the function:

    <?php
    add_filter('woocommerce_short_description','add_content_after_short_description');
    function add_content_after_short_description($description){
    	
    
    	$field = get_field_object('field_6155c03d20d5c');	
    	$text = $field['label'].': '.$field['value'].'<br/>'; #first $text doesn't need a . before the =
    	
    	$field = get_field_object('field_61712d2256ff2');	
    	$text .= $field['label'].': '.$field['value'].'<br/>';	#note the . before the = as we wish to join/concate them
    	
    	$field = get_field_object('field_6155bf1660b3c');	
    	$text .= $field['label'].': '.$field['value'].'<br/>';	
    	# etc.
    	
    	if( is_product() ):
    		return $description.$text;
    	else:
    		return $description;
    	endif;
    }

    Does that work?