Recently QR-codes become more and more popular. Therefore why not to add in a window of a permanent link display including QR-code for it?
In general it is not difficult, though demands template modification post_permalink and adding of two phrases in language.
1. We open a template post_permalink and we search there for the following code:
We add at once under it:
In the same place hardly it is more low found:
We add at once under it:
2. Now we will need to add two phrases (title of the tab and the description).
qr_code_image - "QR-code"
qr_code_image_explain - "The Two-dimensional code for scanning by the mobile device"
3. Result on a screenshot (in Russian, but it is not basic)

In general it is not difficult, though demands template modification post_permalink and adding of two phrases in language.
1. We open a template post_permalink and we search there for the following code:
Code:
<ul class="Tabs tabs" data-panes="#IpPanes{$post.post_id} > li">
<li><a>{xen:phrase bb_code_link_snippet}</a></li>
<li><a>{xen:phrase html_link_code}</a></li>
We add at once under it:
Code:
<li><a>{xen:phrase qr_code_image}</a></li>
Code:
<ul id="IpPanes{$post.post_id}">
<li><label><input type="text" dir="ltr" class="textCtrl fillSpace" id="bb_code_link_snippet" value="[URL="{xen:link full:threads/post-permalink, $thread, 'post={$post}'}"]{$thread.title}[/URL]" />
<span class="explain">{xen:phrase bb_code_link_snippet_explain}</span></label></li>
<li><label><input type="text" dir="ltr" class="textCtrl fillSpace" id="html_link_code" value="<a href="{xen:link full:threads/post-permalink, $thread, 'post={$post}'}">{$thread.title}</a>" />
<span class="explain">{xen:phrase html_link_code_explain}</span></label></li>
Code:
<li><label><a href="http://qrcoder.ru" target="_blank"><img src="http://qrcoder.ru/code/?{xen:urlencode {xen:link full:threads/post-permalink, $thread, 'post={$post}'}}&4&0" width="132" height="132" border="0" title="QR код"></a>
<span class="explain">{xen:phrase qr_code_image_explain}</span></label></li>
2. Now we will need to add two phrases (title of the tab and the description).
qr_code_image - "QR-code"
qr_code_image_explain - "The Two-dimensional code for scanning by the mobile device"
3. Result on a screenshot (in Russian, but it is not basic)
