Forum Activity for @douglas

douglas
@douglas
06/12/18 03:45:35PM
2,797 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,797 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
douglas
@douglas
06/08/18 01:33:47PM
2,797 posts

Video Issue


Installation and Configuration

At a guess, maybe the ffmpeg binary is not in the correct directory for your server, or the permissions are not set correctly.

If the file has the correct permissions set, should be 755, then you'll want to contact your hosting provider to find out where you are alowed to run binary files.

If that is all working, then chances are there might be something wrong with the video file itself.

Hope this helps!
douglas
@douglas
06/08/18 01:29:18PM
2,797 posts

Regarding Youtube


Installation and Configuration

I've not tried this, but from what I can tell you can add &rel=0 to the end of the embed URL's in the modules/jrYouTube/templates/youtube_embed_iframe.tpl and youtube_embed_object.tpl.

hope this helps!
douglas
@douglas
06/05/18 02:55:26PM
2,797 posts

Video Issue


Installation and Configuration

What about your system check, does everything pass?

/core/system_check
douglas
@douglas
06/05/18 11:59:00AM
2,797 posts

Video Issue


Installation and Configuration

Are you getting any entries in your Activity Logs, Debug Logs or PHP Error Logs?

ACP > Dashboard > Acitivity Log
/core/dashboard/activity
douglas
@douglas
05/22/18 08:56:13AM
2,797 posts

latest Ninja update... where to find?


Using Jamroom

Strumelia:
The newest update says:
"Ninja Skin changelog
Version 2.0.10:
- New: Styling for range form field"

This sounds like something I might like to add to my custom skin... but where to find the code change? Is it not in a Ninja template?


That was an addition to the form_input.css file.

Quote:
/* @title Text Input */
/* @help Format for Text Input form elements */
.form_range {
color:#000000;
font-size:14px;
padding:5px; /* @ignore */
margin:0 2px; /* @ignore */
background-color:#FFFFFF;
border:0;
vertical-align: middle;
}

Hope this helps!
douglas
@douglas
05/14/18 07:30:24AM
2,797 posts

Media Pro - Home page


Design and Skin Customization

We'll get a fix for this for the next release.

For now, you can modify the header.tpl and change this:
<body{if isset($spt) && $spt == 'home'} class="loading"{/if}>

to this:

<body>

Hope this helps!
douglas
@douglas
05/14/18 07:13:25AM
2,797 posts

Media Pro - Home page


Design and Skin Customization

Hello,

Seeing the same, we'll check it out.

Thanks!
  43