Thank you Paul it worked.
Can you explain what piece of code you changed? It seems odd that google analytics wouldnāt provide code that would work.
EDIT: There is this message on my website now:
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ā_returntrueā not found or invalid function name in /home2/andyvnguyen/yourcollegeblog.com/wp-includes/class-wp-hook.php on line 286
Here is a photo of the code:
http://puu.sh/BQO2X/5124c3fcd8.png
And here are lines 283 to 299
if ( $the_['accepted_args'] == 0 ) {
$value = call_user_func_array( $the_['function'], array() );
} elseif ( $the_['accepted_args'] >= $num_args ) {
$value = call_user_func_array( $the_['function'], $args );
} else {
$value = call_user_func_array( $the_['function'], array_slice( $args, 0, (int)$the_['accepted_args'] ) );
}
}
} while ( false !== next( $this->iterations[ $nesting_level ] ) );
unset( $this->iterations[ $nesting_level ] );
unset( $this->current_priority[ $nesting_level ] );
$this->nesting_level--;
return $value;
}