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?
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.