WordPress Plugin – Ajax_the_views (RETIRED)

6 Feb 2018: This plugin has now been retired and is no longer available. If you are using it, it is strongly recommended that you stop using it. Why? I have no time to maintain it. It has not been updated in many years and should have been retired long ago!

The Ajax_the_views WordPress plugin extends the WP-PostViews plugin by Lester Chan, so that the number of post views is displayed via Ajax, meaning it will be accurate even if a caching plugin is being used.

Note: WP-PostViews 1.50 can count views when caching plugin is being used, but can’t display the count. This fixes that.

Requirements

This plugin requires WordPress 2.8 or above.

This plugin requires the WP-PostViews plugin to be installed and active.

Usage

First, install the plugin and activate it.

Second, clear the page cache. How to do this will differ depending on which caching plugin you are using (ie W3 Total Cache, WP Super Cache, etc).

How Does It Work?

To show the number of pages views on a post / page etc, you will have already added the following line to your theme:

[sourcecode language=”php”]
<?php if(function_exists(‘the_views’)) { the_views(); } ?>
[/sourcecode]

Unfortunately, when page is cached, the count is cached as well. Although WP-PostViews can count page views behind the scenes, it won’t be able to display them. Each time the page is cleared from the cache (for example when a comment is made), the count will be updated, but then the page will get cached again and the count will freeze until the cache is next cleared.

This plugin filters the_views function and replaces the count with the text “Please wait”, wrapped in span tags with an id containing the post ID. It also adds some JavaScript to the footer of the page, which finds all the counts on the page (there may be more than one) and builds a list of post IDs.

The plugin then sends an Ajax request to the server, which looks up the counts for these posts and sends them back to the requesting page, which then updates the count fields.

Performance

The point of using a caching plugin is to minimise server resources and speed up page loading.

This plugin is going to take up more server resources than it would otherwise: The server script will run once for each page load and will look up the database to get the count. On pages with more than one post, such as the home page, it will have to look up each one.

In the bigger scheme of things, you are only losing a small bit of what you’ve gained by using a caching plugin (a normal page load without caching will use a lot more resources than this), but nonetheless you need to be aware it will have some impact on performance.

Installation

  1. Download the plugin file and unzip it.
  2. Upload the `ajax-the-views` folder to the `wp-content/plugins/` folder.
  3. Activate the Ajax_the_views plugin within WordPress.

Alternatively, you can install the plugin automatically through the WordPress Admin interface by going to Plugins -> Add New and searching for Ajax_the_views.

Upgrade

  1. Download the plugin file and unzip it.
  2. Upload the `ajax-the-views` folder to the `wp-content/plugins/` folder, overwriting the existing files.
  3. Deactivate the Ajax_the_views plugin within WordPress, then reactivate it (to make sure any new settings are created).

Alternatively, you can update this plugin through the WordPress Admin interface.

Support

This plugin is not supported.

Disclaimer

This plugin is released under the GPL licence. I do not accept any responsibility for any damages or losses, direct or indirect, that may arise from using the plugin or these instructions. This software is provided as is, with absolutely no warranty. Please refer to the full version of the GPL license for more information.

Changelog

1.0 (17th September 2010)

  • Initial Release