add ACF to woocommerce
-
Hi there,
i would like to add some additional text on the product archive pages, AFTER the product grid, using ACF (advanced custom field)
add_action( 'woocommerce_after_main_content', 'add_additional_text_function'); function add_additional_text_function() { ?> <?php if(get_field('add_additional_text_under_products')) { ?> <div class="more-text"><?php the_field('add_additional_text_under_products'); ?></div> <?php } }
what am i doing wrong?
i need help?
i really struggling with woocommerce, nothing seems simple. also i get sooo frustrated that there seems to be nothing on the internet, surely others what or have done this???
The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘add ACF to woocommerce’ is closed to new replies.