And the other question is…. Can I show them in any section of the web? The idea is to show this content at the end of the page and not within the default price.
Hello! I am very interested in this…
I tried it but it didn’t work. What steps must be taken to make it work?
I have inserted in the function
//add ACF rule
add_filter('acf/location/rule_values/post_type', 'acf_location_rule_values_Post');
function acf_location_rule_values_Post( $choices ) {
$choices['product_variation'] = 'Product Variation';
//print_r($choices);
return $choices;
}
With that I can add fields from ACF but then in the product variation I don’t see them to be able to fill in. And then it’s the display of them in the frontend.
Can you help me?
Thank you.