One of the most exciting applications utilizing the cryptocurrency for payments — with a huge potential to change the way web monetization works — is . XRP Coil Already today, Coil is fully functional and allowing content creators to instantly receive donations from viewers who are subscribed to Coil while they consume the creators’ content. In this article, I give you as a WordPress content creator a step-by-step tutorial on how to install Coil on your WordPress website. What is Coil Web Monetization? Coil is being developed by a San Francisco-based startup, which is working on a new business model for the web. It is enabled by the and enables online content creators to monetize their content. Web Monetization API Coil subscribers are paying a monthly subscription ($ 5 as of right now, with different packages available in the future). Whenever they visit a Coil-enabled website, every second a small amount of XRP is being donated to the content creator. Those real-time micropayments offer a much more attractive monetization option compared to being dependent on ads. If you want to learn more, I can recommend checking out . Coil’s Help Center In the following, I will introduce three different ways showing how you can setup Coil on WordPress: Using the official WordPress Plugin Using a Child Theme > adding code to the functions.php Using a Parent Theme > adding code to the header.php Let’s get right into it! Prerequisites Create Your Coil Account As the very first step, you need to sign up to Coil. All you have to do is go to the and go through the signup process. Only if you want to subscribe to Coil in order to donate to websites having Coil integrated, you need to submit your credit card details. To monetize your own content and to receive donations through Coil, you don’t need to wait for that. Coil website Get Your Payment Pointer The next thing you need is a payment pointer. This will tell Coil where to send the donations that are coming in from Coil subscribers visiting your WordPress site. You can easily set up your payment pointer from the settings panel in your profile on the Coil website. Simply navigate to the settings page and click on the tab. “Payout” You will find an overview of different payout options including setup options to follow. I can recommend the option, which allows you to receive your payments in one of many fiat or crypto currencies. Uphold After you went through the setup process, the payment pointer should be shown right there in the “ ” tab. Payout FYI, the payment pointer is not confidential and bears no direct security risks, so don’t worry about hiding it. That’s it, now we are ready to install Coil on your WordPress website. Method #1 — Using the Official WordPress Plugin Meanwhile, Coil has launched their own . Not only does the plugin allow you to implement your own payment pointer to receive payment streams, it also gives you a set of tools to make your content (or parts of it) available only to Coil subscribers. official WordPress plugin I recommend using the plugin from now on, as the plugin will be kept up-to-date by Coil in case they change something. You can find and install it through your WordPress dashboard, simply look for . “Coil Web Monetization” Once you have installed and activated the plugin, you will find a new tab for it in the WordPess dashboard menu. All that’s left to do here is going to the where you will find a field to input your own payment pointer. “Global Settings”, Save your changes, then you’re good to go. If you are curious what else you can do with the Coil WordPress plugin, I suggest you to take a look at . the official documentation page In case you are interested what other functionality the Coil plugin brings to WordPress, I invite you to check out . If for some reason you don’t want to use the plugin, you can also install your payment pointer manually. this walkthrough video I made Method #2 — Modifying Your Child Theme’s functions.php The preferred way of running your WordPress website is always by utilizing a child theme. This allows you to make any kind of customization to your theme, while at the same time always being able to update the theme you are using, without losing your customizations in the process. The same goes for setting up Coil on WordPress. If you don’t know what a child theme, I strongly recommend you to look it up, for example . here We need to add a little bit of code to our child theme’s . For that, go into your , then make sure that your child theme is selected in the top right corner. Then open the in the editor by clicking on it on the right. functions.php WordPress Dashboard > Appearances > Editor functions.php Then all you have to do is copying the following piece of code and pasting it at the end of the code that you should see now. This piece of code simply adds the required meta tag to your website’s section. <head> Attention: Don’t forget to put in your own Payment Pointer! { <meta name=”monetization” content=”YOUR_PAYMENT_POINTER” /> } add_action(‘wp_head’, ‘custom_meta_tags’); // Coil Web Monetization Integration function custom_meta_tags () ?> <?php It should look like this: Don’t forget to click the Button when done. “Update File” That’s it! Method #3 — Modifying Your Parent Theme’s header.php If you are not using a child theme, then you can still install Coil by editing your theme’s . header.php To do this, go into your and make sure the right theme is selected in the top right corner. Then open the in the editor by clicking on it on the right. WordPress Dashboard > Appearances > Editor header.php All you have to do now is copying the following piece of code, which you can also find in your Coil account’s dashboard, and pasting it into the editor right under the marker. <head> Attention: Don’t forget to put in your own Payment Pointer! <meta name=”monetization” content=”YOUR_PAYMENT_POINTER” /> It should look like this: Don’t forget to click the Button when done. “Update File” That’s it! With this method you have to remember that whenever you update your theme and its gets overwritten, you need to manually add the meta tag again by following these steps. That is the benefit of using a child theme, theme updates can not break your own modifications. header.php Check If It’s Working To check if installing Coil on your WordPress page worked, you will need to install the Coil or extension. Once installed in your browser, head over to your website. Chrome Firefox If you followed the steps correctly, the Coil extension should now indicate that the website is web-monetized. If you are not subscribed to Coil yet, the window will still show whether or not a page is web-monetized. Another easy way to check if your Coil integration was successful is by using the created by . Just enter your website’s URL and click . Coil Checker Wietse Wind “Check” You have now successfully installed Coil Web Monetization on your WordPress website and are part of the future of the internet – with a monetization method . far better than ads Instant micro-payments for creators and the potential for a completely new way of sharing content with your followers. Welcome to the future of the internet, powered by XRP! Having done that, I highly recommend you to sign up for a Coil subscription and to start supporting content creators. For the cost of a cup of coffee per month you can take a stance on how the internet should work from now on. You can check out all , which I create to track the development and perceived adoption of Coil. my monthly Coil income reports If you have any questions or need help with the process of setting up your own WordPress page, feel free to leave a comment below the article . on my blog