惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
博客园_首页
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog
V
Visual Studio Blog
美团技术团队
IT之家
IT之家
罗磊的独立博客
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
月光博客
月光博客
Microsoft Azure Blog
Microsoft Azure Blog
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
博客园 - 叶小钗
M
MIT News - Artificial intelligence
B
Blog RSS Feed
有赞技术团队
有赞技术团队
Y
Y Combinator Blog

Example blog

Ghost routing explained with routes.yaml examples — routes, collections & taxonomies Ghost redirects explained with practical redirects.yaml examples How to Serve JSON or XML Data in Ghost How to Change Your Default Post Template in Ghost Ghost Custom Theme Settings How to add Google Fonts to Ghost Themes How to Configure Ghost with Mailgun Ghost Theme Structure & Organization How to Make Custom Templates in Ghost Themes How to Install Ghost CMS via Ghost-CLI How to Add Syntax Highlighting to Ghost The best Ghost CMS hosting platforms Ghost 6.0 — Social Web and Native Ghost Analytics Ghost CMS Social web beta, email 2FA and more author social links How to keep custom design settings when updating your Ghost theme How to use the public preview card in Ghost How to add members-specific sections in Ghost How to customize the default content CTA in Ghost How to build a custom homepage in Ghost An overview of Ghost editor cards and and how they work Ghost CMS News: One-time payments & collecting sales tax How to customize the private site access template in Ghost How to add custom fonts in Ghost themes Ghost CMS News: Additional payment methods & internal linking How to use Code Injection in Ghost How to set meta data of your custom routes & collections in Ghost Ghost CMS News: TK reminders, ActivityPub and improvements How to format dates and use the date helper in Ghost Ghost CMS internationalization, custom fonts & spam protection Understanding and optimizing post and page settings in Ghost CMS
How to integrate the Applause Button into your Ghost theme
Bright Themes · 2023-08-05 · via Example blog

In the fast-paced digital world, user engagement is crucial for any website or blog to thrive. Engaging your readers and making them feel connected to your content can significantly impact their overall experience. One way to achieve this is by incorporating interactive elements that encourage user participation.

In this blog post, we'll explore the benefits of integrating the Applause Button into your Ghost theme and guide you through the process.

What is the Applause Button?

The Applause Button is a simple yet powerful tool that allows readers to express their appreciation for your content. It presents a visual and interactive way for users to show their support, similar to the popular "clap" feature on Medium.

By integrating the Applause Button into your Ghost theme, you create an opportunity for your readers to actively engage with your posts and enhance the sense of community surrounding your site.

You can see the plugin in action on Scott Logic blog.

Integrate the applause button

To add this functionality to your articles, you have to include the Applause button JavaScript and stylesheet in your theme, then add the applause-button element, and you're good to go!

  1. Add the script and stylesheet.

The easiest way to add these is from your Ghost Admin Settings → Code Injection, by adding the following:

<!-- add the button style & script -->
<link rel="stylesheet" href="https://unpkg.com/applause-button/dist/applause-button.css" />
<script src="https://unpkg.com/applause-button/dist/applause-button.js"></script>
  1. Add the <applause-button> to your post

In this step you need to edit your post.hbs file and place the button in the place where you want it to appear. This can be next to the title, right before the content or after your content, or maybe even in multiple places.

Here's the code:

<applause-button style="width: 58px; height: 58px;">
</applause-button> 

The above code will render the applause button for your post, with a height and width of 58px.

There is more configuration available so let's explore what you can do with it.

Styling and configuration

First of all, the button is responsive so it's size should adapt to your container. Other properties you can change:

  • color - you can change the color of the button via its color attribute, e.g.<applause-button color="red" />, or you can apply CSS to set custom colors.
  • multiclap - by default, users can only clap once. If you'd like them to be able to add multiple 'claps', set the multiclap attribute to true.
  • url - you can specify the URL explicitly via the url attribute, e.g. <applause-button url="{{url}}" />

Example with the above configuration:

<applause-button 
  url="{{url}}" 
  multiclap="true" 
  style="width: 58px; height: 58px;">
</applause-button> 

More than that:

  • you can programmatically access the clap count, the button exposes a initialClapCount property, which returns a Promise which resolves to the initial count.
  • you can programmatically determine when claps occur, the button fires a clapped event
  • you can host your own back-end, you can use the api property to point to your end-point.

Here's an example of how the applause button works and looks like in a Ghost theme, Fumio in this case. See it live on Packetswitch.

Applause button integration in the Fumio theme
Applause button integration in the Fumio theme

Add clap count to post cards

You can even display the clap count on the post cards on the homepage. For this we can use the initialClapCount, here's a short example of how this can be done:

const button = document.querySelector('.applause')
button.initialClapCount.then(function(count) {
  document.querySelector('[data-count]').innerText = count
})

The above code is:

  1. Looking for the applause button with the class applause.
  2. Using the initialClapCount property to get the count value.
  3. Setting the value on the element with the data-count property.

Conclusion

By integrating the Applause Button into your Ghost theme, you can foster greater user engagement and encourage active participation from your readers. The visual and interactive nature of the button adds an extra layer of interactivity to your content, making it easier for readers to express their appreciation.