Forum Activity for @michael

michael
@michael
11/04/16 11:22:52PM
7,832 posts

Border of Text Editor and Uploading Issue


Design and Skin Customization

Its some CSS you have on your skin. Its difficult to guess at without seeing the actual URL.

Its most likely an
overflow:hidden
on the container with a width of 100% and a margin or border or padding on the left, so the border which is there is pushed off the right of the area and hidden.

It will not effect performance in any way at all and may display differently in different browsers.
michael
@michael
11/04/16 05:25:56AM
7,832 posts

easy ajax pagination in sitebuider


Suggestions

If the 'container settings' for that widget block is set to TABBED then pagination will happen via ajax.

SITE BUILDER -> CONTAINER SETTINGS -> CONTAINER LAYOUT -> Tabbed - each widget is located on its own tab inside the container.
michael
@michael
11/04/16 12:09:58AM
7,832 posts

JR6 youtube incorrect URL link issue


Using Jamroom

You've got a mistake in your custom templates, you need to include /youtube/ to make the links point to the correct location in your template list.

All of the links on this page:
http://www.dubmusic.com/dubtube/youtube

are missing the /youtube/ part of the url so instead of going to:
www.dubmusic.com/dubtube/youtube/997/marvin-gaye-meets-the-scientist-remix-1
They point to:
www.dubmusic.com/dubtube//997/marvin-gaye-meets-the-scientist-remix-1
michael
@michael
11/03/16 09:57:09PM
7,832 posts

private blog issue?


Ning To Jamroom

Blog posts set to a future date are not shown in lists.

If the link to that post was posted somewhere, the visitor would see "404 Not Found"

Admin will always be able to see everything on their site.

If "Show on Timeline" is checked when the blog is created that WILL show on the users timeline, the link will link nowhere.
michael
@michael
11/03/16 09:50:01PM
7,832 posts

JR6 youtube incorrect URL link issue


Using Jamroom

Not able to open your link to http://www.dubmusic.com/dubtube page just never loads.

I've tried importing the video though in elastic on JR6 and all works as expected.

Unable to reproduce the error.
michael
@michael
11/01/16 11:37:42PM
7,832 posts

How do you backup a skin?


Using Jamroom

no. The style tab does not have a built in revision system.
michael
@michael
11/01/16 11:27:24PM
7,832 posts

How do you backup a skin?


Using Jamroom

Depends on how you are developing your skin. If you are doing it via the file system and adjusting files via SFTP in the /skins/(YOUR SKIN)/ directory then there are version control systems that you can use to keep track of changes.

If you are adjusting the template via the ACP via the TEMPLATES -> template.tpl -> MODIFY then there are no backups unless you've copy+pasted and saved the contents somewhere.

You could revert the server to a previous state from here:
https://www.jamroom.net/perrie/hosting/backup_browser/34/id=344

But thats not just the skins, its the data too.
michael
@michael
11/01/16 09:27:58PM
7,832 posts

Reversing the order of replies to forum discussion (newest first)


Using Jamroom

actually, that will only reverse the order of the items on the page, if there's more than all of the posts on the page thats not going to work. Will only be any good if you are NOT using pagination.
michael
@michael
11/01/16 09:25:03PM
7,832 posts

Reversing the order of replies to forum discussion (newest first)


Using Jamroom

in your Forum item_detail.tpl page you can reverse the output order of the items by using the array_reverse() function

ACP -> MODULES -> PROFILE -> FORUM -> TEMPLATES -> item_detail.tpl -> MODIFY

locate the section that starts the {foreach loop for all of the forum posts. Around line 40 ish. Probably looks like this:
 <div class="block_content">
    {foreach $_items as $_itm}
.......

flip the order of that array by adding this one line:
 <div class="block_content">
    {$_items = array_reverse($_items)}
    {foreach $_items as $_itm}
.......
michael
@michael
11/01/16 06:47:06PM
7,832 posts

Main picture representing a gallery


Design and Skin Customization

Think I understand. You're not getting why the whole gallery is being shown when you just want the images. The reason is the gallery modules item_list.tpl template is setup to show the full gallery.

You want just the single image, so you need a different row template. The correct results are being returned.

Try this:
{capture assign="row_template"}
{literal}
{if is_array($_items)}
 {foreach $_items as $item}
  {jrCore_module_function function="jrImage_display" module="jrGallery" type="gallery_image" item_id=$item._item_id size="large" alt=$item.gallery_alt_text}</a>
 {/foreach}
{/if}
{/literal}
{/capture}

{jrCore_list module="jrGallery" search="gallery_main = on" template=$row_template}
  321