Forum Activity for @ultrajam

SteveX
@ultrajam
09/16/16 03:05:01AM
2,584 posts

Video Album button title


Using Jamroom

On a new install of the video module (no videos yet) the Create Album button has the title "Video". Shouldn't that be Create Album or Albums?
updated by @ultrajam: 12/18/16 04:50:28PM
SteveX
@ultrajam
09/15/16 12:30:45AM
2,584 posts

Nervous about re-sizing images


Using Jamroom

Create a copy of your site, then reduce the image size, then check the results.

If your results are generally acceptable (decompressing will affect different images in different ways) then make a backup so you have copies of all images, then go for it.

Make sure you have that backup so it is reversible.
SteveX
@ultrajam
09/13/16 03:23:27PM
2,584 posts

What causes a Youtube video to show the embed code instead of the video?


Using Jamroom

Have you installed and enabled the URLScan module?

You need to do that in order for the url to be converted to show the video.
SteveX
@ultrajam
09/09/16 04:27:03PM
2,584 posts

Scroll To Top Button not working on all the pages


Using Jamroom

pch:
Can someone just confirm me if the code I used above is correct.
Thanks.

I'd need to set up a test using your code to tell you if it works or not.

You already have that test on your system. Does it work?
SteveX
@ultrajam
09/09/16 01:26:30PM
2,584 posts

Bootstrap


Jamroom Developers

Buttons are the same as icons if you are using them in your skin. We use them like that here:
http://academicskills.uwe.ac.uk/has/workbooks/has-low/7205/academic-skills

But it's going to mean a lot of js and css if you want to "override" the core buttons. To do that you'd probably be better off using the less or sass features of bootstrap to restyle the core html. I stuck with the page submit and cancel buttons jamroom styling as it was a time-saving corner to cut.

You can replace core form fields by overriding them in your skin. e.g. place a file jrCore_page_notice.tpl in your active skin directory, copy in the contents of /modules/jrCore/templates/page_notice.tpl and then edit the html to suit your site's needs.

If you are going to restyle core form fields my best advice would be to avoid the ACP altogether - use jrAdminSkin to always use jrElastic in the ACP and then modify your jrElastic header and footer to more or less match your skin. Only admins see the Elastic look anyway, users see your custom skinned forms in the profile views.

You will have to deal with the differences between Jamroom and Bootstrap variable naming (like "error" in Jamroom and "danger" in Bootstrap, so the jrCore_page_notice.tpl might look like this:
{* page_notice shows notices, warnings, errors and success messages under a page_banner *}
{* NOTE: This is NOT SHOWN for AJAX response *}
{* $notice_label will contain the actual notice level - i.e. "error, "success", "warning", "notice" and in bootstrap: "danger, "success", "warning", "info" *}

{if $notice_type == 'success'}{assign var='alert_type' value=' alert-success'}{elseif $notice_type == 'error'}{assign var='alert_type' value=' alert-danger'}{elseif $notice_type == 'warning'}{assign var='alert_type' value=' alert-warning'}{elseif $notice_type == 'notice'}{assign var='alert_type' value=' alert-info'}{/if}
    <div id="page_notice" class="page_notice alert{$alert_type} alert-block">
    	<button type="button" class="close" data-dismiss="alert">×</button>
    	<strong>{$notice_label}!</strong>   {$notice_text}
    </div>

updated by @ultrajam: 09/09/16 01:35:31PM
SteveX
@ultrajam
09/09/16 12:27:47PM
2,584 posts

Bootstrap


Jamroom Developers

You can do this, for example the icons in bootstrap 3.

Include the icon css file in your skin header.
Include the icon font in your css.
Then use the icon spans wherever you like in your html.

http://getbootstrap.com/components/#glyphicons
SteveX
@ultrajam
09/08/16 01:33:23PM
2,584 posts

Datastorage userdata in serverroot and mysql


Installation and Configuration

No, I don't think that's possible.

You'd need a web server or hosting for your live site, then use localhost or your vm for development. Your backup strategy should really be better than you are imagining. Take a look at the Backup module and get an amazon account to manage your backups more easily.
updated by @ultrajam: 09/08/16 01:34:01PM
SteveX
@ultrajam
09/05/16 03:26:53PM
2,584 posts

how to set tags so only the owner can add tags?


Using Jamroom

Is your tag wait timer set to 10 minutes? You can change that in jrTags config: /tags/admin/global

Does it take a long time to show because your cache is set to show slightly older versions?
SteveX
@ultrajam
09/05/16 11:38:19AM
2,584 posts

Updates???


LifeStreams

Facebook stopped providing feeds, Instagram don't provide feeds.

You can configure which buttons and feeds show in the module settings, so you are in control and don't need to wait for an update.
SteveX
@ultrajam
09/05/16 02:22:59AM
2,584 posts

Scroll To Top Button not working on all the pages


Using Jamroom

{if isset($javascript_ready_function)}
...
{/if}
Anything inside that condition will only show if $javascript_ready_function has a value.

Try putting your js outside of that, in it's own document ready function and in it's own script tags.
  63