Support

Account

Home Forums Front-end Issues Show field only on first woocommerce category page Reply To: Show field only on first woocommerce category page

  • You’ll need a way of detecting which page is being handled by the pagination. If you can access the $page variable then you can put a loop around the render of the ACF field like:

    if( $page == 1 ) {
     print get_field('field');
    }