Support

Account

Home Forums General Issues Woocommerce+ACF return field value via functions.php Reply To: Woocommerce+ACF return field value via functions.php

  • Hi @avegas

    Please change your code to:

    add_filter( 'woocommerce_page_title', 'custom_title' );
    function custom_title( $title ) {
        $title = get_field("h1_title", "product_cat_" . $product_cat_object->term_id);
        return $title;
    }