Support

Account

Home Forums Add-ons Options Page Select specific repeater rows from an options page Reply To: Select specific repeater rows from an options page

  • This needs to be changed

    
    if( in_array( $title == $selection ) ) {
    

    to this if $selection is an array

    
    if( in_array( $title, $selection ) ) {
    

    or this if $selection is a single value

    
    if( $title == $selection ) {