diff --git a/content/faq/community-top-bid.md b/content/faq/community-top-bid.md index e801c34f..c09add02 100644 --- a/content/faq/community-top-bid.md +++ b/content/faq/community-top-bid.md @@ -1,7 +1,7 @@ --- title: How does the Community Top Bids section of the LBRY App work? -category: other -order: 7 +category: publisher +order: 3 --- ### What are Community Top Bids? @@ -22,3 +22,7 @@ For more details on how naming works, please see: [Naming](https://lbry.io/faq/n 2. When filling out the Content URL, enter the desired claim you want to bid on (one, two, five, eight, etc.) 3. After you have entered the desired URL, the system will automatically show you the minimum amount of LBC you need to deposit to get the claim. This LBC remains yours and the deposit can be undone at any time. 4. Finish the rest of the publishing process. + +### How do I know if my content is overtaken? + +We do not have a mechanism in place to notify users when they are outbid but one is planned for a future release. For now, you can monitor the Community Top Bids section to see if your content is still available. diff --git a/content/faq/make-money.md b/content/faq/earn-income.md similarity index 98% rename from content/faq/make-money.md rename to content/faq/earn-income.md index 00c8ea77..94c4269f 100644 --- a/content/faq/make-money.md +++ b/content/faq/earn-income.md @@ -1,6 +1,7 @@ --- title: How does LBRY benefit content creators? Can I make money using LBRY? -category: other +category: publisher +order: 2 --- In our AMA title, we pitched LBRY as a “community-driven” YouTube alternative that could “save the internet.” That’s a lot of big talk, but what does it mean for the people who care most about the changes happening at YouTube – content creators? diff --git a/content/faq/how-to-publish.md b/content/faq/how-to-publish.md index 6031c817..fe7b1054 100644 --- a/content/faq/how-to-publish.md +++ b/content/faq/how-to-publish.md @@ -1,6 +1,7 @@ --- title: How do I Publish content to LBRY? -category: getstarted +category: publisher +order: 1 --- LBRY is a free, open, and community-driven digital marketplace which enables content sharing, monetization, discovery and consumption. Publishing in LBRY is the process by which you share your content on the network - you set the price per view (can be free too) which is paid directly to you. This process involves making a "claim" in the LBRY Blockchain which will be used to retrieve the content via a URL. Content can either be published anonymously or to a particular channel/identity which will group content together at a single location. Both channels and claims require a deposit(bid) of LBRY Credits (LBC) in order to reserve their location on the LBRY network. This deposit will be deducted from your balance as long as the claim is active. See our [naming document](https://lbry.io/faq/naming) for more information about claims and bids. diff --git a/controller/Controller.class.php b/controller/Controller.class.php index e82fef37..96674605 100644 --- a/controller/Controller.class.php +++ b/controller/Controller.class.php @@ -144,6 +144,7 @@ class Controller '/faq/Q4-credit-report' => '/credit-reports/2016-Q4', '/faq/Q1-17-CreditReport' => '/credit-reports/2017-Q1', '/faq/how-to-report-bugs' => '/faq/support', + '/faq/make-money' => '/faq/earn-income', ]; $tempRedirects = [ diff --git a/controller/action/ContentActions.class.php b/controller/action/ContentActions.class.php index e46054f2..52ea97a0 100644 --- a/controller/action/ContentActions.class.php +++ b/controller/action/ContentActions.class.php @@ -88,6 +88,7 @@ class ContentActions extends Actions 'LBRY 101' => 'Intro to LBRY', 'getstarted' => 'Getting Started', 'setup' => 'Installing and Running LBRY', + 'publisher' => 'Publishers and Creators', 'troubleshooting' => 'Help and Troubleshooting', 'wallet' => 'Wallet and Transactions', 'mining' => 'Mining LBC',