Home › Forums › Front-end Issues › Displaying all fields in a group › Reply To: Displaying all fields in a group
Just tried this and confirm it’s the hook you’re using.
If you switch to the below hook, you should see the message displayed whether an item is in or out of stock:
add_filter('woocommerce_short_description','add_content_after_short_description');
function add_content_after_short_description($description){
$text = "This will be displayed after the short des but before the add to basket";
return $description.$text;
}
So in theory, you can then start to add your fields back in:
add_filter('woocommerce_short_description','add_content_after_short_description');
function add_content_after_short_description($description){
#$text = "This will be displayed after the short des but before the add to basket"; #debug so remove
$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.
return $description.$text;
}
Not tested with the fields but definitely works with the correct hook!
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!
📣 “ACF Chat Fridays”
— Advanced Custom Fields (@wp_acf) January 31, 2023
The ACF team holds their first open office hours this Friday! Come and talk ACF, and ask questions about building sites with the plugin.
We’d love to see you there!
📆 Friday 3rd Feb - 3pm UTC
👉 Register here - https://t.co/3UtvQbE4CU pic.twitter.com/oTwW9K1XQ0
© 2023 Advanced Custom Fields.
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 Cookie Policy. If you continue to use this site, you consent to our use of cookies.