hi,
found an error in code, admin.php line 258 , missing $url variable
/**
* Add link to settings page on plugin page
*/
public function settings_link($links)
{
$settings_link = "<a href='$url'>" . __( 'Settings' ) . '</a>';
// Adds the link to the end of the array.
array_push($links, '<a href="'.admin_url('options-general.php?page=wp_utz_settings').'">' . __( 'Settings' ) . '</a>');
return $links;
}
thanks.