From c37736a88a58c53dfc8a56bd610349270e1d4d6b Mon Sep 17 00:00:00 2001 From: Lemuel Smyth <36257395+lemsmyth@users.noreply.github.com> Date: Sun, 13 Feb 2022 17:00:19 -0600 Subject: [PATCH] Update LBRY_Admin.php --- classes/LBRY_Admin.php | 49 ------------------------------------------ 1 file changed, 49 deletions(-) diff --git a/classes/LBRY_Admin.php b/classes/LBRY_Admin.php index de08a65..464e38d 100644 --- a/classes/LBRY_Admin.php +++ b/classes/LBRY_Admin.php @@ -339,55 +339,6 @@ class LBRY_Admin

Set Default to always Publish to LBRY, this can be adjusted when publishing a New Post.

', - 'lbry_default_publish_setting', - LBRY_SETTINGS, - - ); - } - - /** - * Prints select to choose a default to publish to channel - */ - public function default_channel_callback() - { - $options = ''; - $channel_list = LBRY()->daemon->channel_list(); - - if ( $channel_list ) { - foreach ( $channel_list as $channel ) { - $selected = $this->options['default_lbry_channel'] === $channel->claim_id; - - $options .= ''; - } - - printf( - '', - 'default_lbry_channel', - LBRY_SETTINGS, - $options - ); - } else { ?> -

Looks like you haven't added any channels yet, you can do that now on the Channels Tab

-