Which Template has the thank you page - subscriptions
Design and Skin Customization
This is not in a template, it is hard coded in the jrSubscribe module.
What are you trying to accomplish?
Thanks!
{if jrCore_is_mobile_device()}
{jrCore_module_function
function="jrImage_display"
module="jrAudio"
type="audio_image"
item_id=$item._item_id
size="xlarge"
crop="auto"
class="img_scale"
alt=$item.audio_title
style="max-width:72px;max-height:72px;"
}{else}
{jrCore_module_function
function="jrImage_display"
module="jrAudio"
type="audio_image"
item_id=$item._item_id
size="xlarge"
crop="auto"
class="img_scale"
alt=$item.audio_title
width=false
height=false
}{/if}
{if jrCore_is_mobile_device()}
{jrCore_module_function
function="jrImage_display"
module="jrAudio"
type="audio_image"
item_id=$item._item_id
size="xlarge"
crop="auto"
class="img_scale"
alt=$item.audio_title
width=72
height=72
}{else}
{jrCore_module_function
function="jrImage_display"
module="jrAudio"
type="audio_image"
item_id=$item._item_id
size="xlarge"
crop="auto"
class="img_scale"
alt=$item.audio_title
width=false
height=false
}{/if}
{if $info.total_pages > 1}
<div class="block">
<table style="width:100%;">
<tr>
<td style="width:25%;">
{if isset($info.prev_page) && $info.prev_page > 0}
<input type="button" value="{jrCore_lang module="jrCore" id=26 default="<"}" class="form_button" onclick="jrLoad('#forumdiv','{$jamroom_url}/index_forum_list/p={$info.prev_page}/pb={$info.pagebreak}');$('html, body').animate({ scrollTop: $('#foradiv').offset().top -100 }, 'slow');return false;">
{/if}
</td>
<td style="width:50%;text-align:center;">
{if $info.total_pages <= 5}
{$info.page} / {$info.total_pages}
{else}
<form name="form" method="post" action="_self">
<select name="pagenum" class="form_select" style="width:60px;" onchange="var sel=this.form.pagenum.options[this.form.pagenum.selectedIndex].value;jrLoad(‘#forumdiv','{$jamroom_url}/index_forum_list/p=' +sel+'/pb={$info.pagebreak}');$('html, body').animate({ scrollTop: $('#foradiv').offset().top -100 }, 'slow');">
{for $pages=1 to $info.total_pages}
{if $info.page == $pages}
<option value="{$info.this_page}" selected="selected"> {$info.this_page}</option>
{else}
<option value="{$pages}"> {$pages}</option>
{/if}
{/for}
</select> / {$info.total_pages}
</form>
{/if}
</td>
<td style="width:25%;text-align:right;">
{if isset($info.next_page) && $info.next_page > 1}
<input type="button" value="{jrCore_lang module="jrCore" id=27 default=">"}" class="form_button" onclick="jrLoad('#forumdiv','{$jamroom_url}/index_forum_list/p={$info.next_page}/pb={$info.pagebreak}');$('html, body').animate({ scrollTop: $('#foradiv').offset().top -100 }, 'slow');return false;">
{/if}
</td>
</tr>
</table>
</div>
{/if}