Rotation parameter
In the standard setup, URLs look like http://domain/gallery/cool/index.html?12x34x567, where the numbers at the end are the Rotation Parameter. It is used to track thumb-click statistics and calculate Cell K.
In Thumb CMS there are several ways to work with this:
1. You can use the old variant http://domain/gallery/cool/index.html?12x34x567 and it will work the same way. In this case you get 100% transfer of the rotation parameter.
2. Passing via AJAX In this case, the rotation parameter will be passed only if the user has JS enabled. Clicks from users without JS will not be counted, which may be good.
How to set it up:
The base template should look something like this:
<script type="text/javascript" src="/scj/includes/js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('a[rot_id]').each(function(){
$(this).bind('click', function(){
$.get('/scj/cgi/out.php',
{
'link': 'images/' + $(this).attr('rot_id'),
'url': 'counter',
'click_count': 'rotation_only'
},
function(data) {
}
);
});
});
});
</script>
<thumb num=1-10>
<a href="/gallery/<!--GALLERY_SLUG-->/index.html" target=_blank rot_id='<!--THUMB_LINK-->'> text </a>
<br>
</thumb>
3. Without rotation parameter
In this Rotation - Settings there is a parameter Use Magic Rotation Parameter. In this case the script tries to guess where the click was made.
In this case you don't need to add the rotation parameter at all.
These are the available link options:
So the general rule: in rotation a click can be credited if at least one of the conditions is met
Note on options 2 and 3
If a user clicks out.php?url=/blabla/something/other/, the script can determine which gallery is behind that URL only if the user is actually redirected to the gallery. In that case the rewrite runs and the script receives the gallery slug. If you send the user to a trader instead, the rewrite never runs, so the script does not know which gallery this is and cannot count CTR.
So for these links, thumb clicks are counted only when the user actually reaches the gallery. If skimming is 50, CTR will be roughly cut in half; if skimming is 0, thumb clicks will not be counted at all.
What to do: