Support

Account

Home Forums Add-ons Repeater Field general use of variables in ACF Reply To: general use of variables in ACF

  • hi,

    as i said, it is not a real issue. i developed my own field type and in it i use the real acf pro field “repeater”. it is just, cause i can do all configurations directly in my config files and do not need to click through the acf setup pages. it just save A LOT of time for me.

    ofcourse i try to set up as few variables as i can to reduce my config files.

    newer versions of php throw errors, if a variable or an array value is not existing. its a common way to ask for the existing of a variable by using “isset()”. the way it is done often in the acf code is an old way, that php in newer version do not like.

    just turn on all error_reporting (EALL) and write something like:

    if( $variable) {
     ....
    }

    you should see an error output.