How to reset a custom theme

If you look into the file includes/admin/theme-admin.php you’ll see that the theme’s options are stored in 'themezee_options'. You can either delete these options per database manager or per a plugin.

If you aren’t familiar with database operations, copy the following code into a PHP file, install it as plugin and activate it once. Then deactivate it immediately.

/**
 * Plugin Name: Reset zeeBizzCard options
 */

register_activation_hook( __FILE__, 'reset_zeebizzcard_options' );

function reset_zeebizzcard_options()
{
    delete_option( 'themezee_options' );
}