How show custom fields after product loop on shop page Woocommerce storefront?

32 Views Asked by At

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");
 }
}
0

There are 0 best solutions below