I created an ACF for the shop page ACF how do i show it after the products loop? SHOP PAGE
I tried to use this code, but no work
add_action( 'woocommerce_after_shop_loop', 'woocommerce_after_shop_loop' ); function woocommerce_after_shop_loop() {
if ( is_product_category() ) {
echo esc_html__("Custom content", "amc");
}
}