Forum Activity for @douglas

douglas
@douglas
07/02/18 10:15:50AM
2,804 posts

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!
douglas
@douglas
06/19/18 06:02:20AM
2,804 posts

[AudioPro] On Sale Now thumbnail too big


Design and Skin Customization

music412:
Hi Douglas

Thanks for your help.

The code works!

But the layout still looks kinda not right.

See the attached print screen.

Will "Audio Pro" template continue to be improved? There are a few things that I have came across which could be bugs.


You'll want to modify the index_item_1.tpl file in order to get the desired layout you want.

Hope this helps!
douglas
@douglas
06/18/18 09:59:17AM
2,804 posts

[AudioPro] On Sale Now thumbnail too big


Design and Skin Customization

Change it to this:

{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}

Hope this helps!
douglas
@douglas
06/18/18 05:54:35AM
2,804 posts

How do The Newest Artists/Members get added to the index page on Projam 5


Design and Skin Customization

There is also a require image in the skin settings, if that is set to yes, and the profile does NOT have an image, then it will not show in that section.

Hope this helps!
douglas
@douglas
06/18/18 05:52:32AM
2,804 posts

[AudioPro] On Sale Now thumbnail too big


Design and Skin Customization

You'll find the code in you index_item_1.tpl.

So using Paul's code it would look something like this:

{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}

Hope this helps!
douglas
@douglas
06/16/18 08:32:25AM
2,804 posts

How do The Newest Artists/Members get added to the index page on Projam 5


Design and Skin Customization

ukdenny:
I cannot see how these profiles get added to the space provided on the index page. Could someone explain please.

What skin are you using?

Thanks!
douglas
@douglas
06/15/18 08:27:15AM
2,804 posts

Skin Templates


Design and Skin Customization

PatriaCo:
However, periodically for no known reason, that tpl file is being deleted from the skin directory....

This will also happen if you are not using a cloned skin.

Hope this helps!
douglas
@douglas
06/12/18 03:45:35PM
2,804 posts

Help removing pager


Using Jamroom

Strumelia:
I put a QQQQ right BEFORE that core list function, and the QQQQ appears at the TOP of the section's forum posts there in that block/section, right below the section's Title bar. Then I put the QQQQ right AFTER the core list call, and the Qs appeared right UNDERneath the pager I'm trying to get rid of.

I'm not seeing any pager in the template after the code lines in question. It just goes on to create the remaining blocks of content in different areas, but no specific paging mentions.
This has got me all like scratchin' ma head. =8-\


Just checked this for you and I see that pagination is coded in your index_forum.tpl, remove this:

                    {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="&lt;"}" 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} &nbsp;/ {$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>&nbsp;/&nbsp;{$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="&gt;"}" 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}

and it will remove the page buttons.

Hope this helps!
douglas
@douglas
06/12/18 03:37:34PM
2,804 posts

Help removing pager


Using Jamroom

Strumelia:
I put a QQQQ right BEFORE that core list function, and the QQQQ appears at the TOP of the section's forum posts there in that block/section, right below the section's Title bar. Then I put the QQQQ right AFTER the core list call, and the Qs appeared right UNDERneath the pager I'm trying to get rid of.

I'm not seeing any pager in the template after the code lines in question. It just goes on to create the remaining blocks of content in different areas, but no specific paging mentions.
This has got me all like scratchin' ma head. =8-\


Check your index_forum.tpl and make sure pagination is NOT coded in.

Hope this helps!
updated by @douglas: 06/12/18 03:43:06PM
  43