Forum Activity for @michael

michael
@michael
07/04/15 09:14:54PM
7,832 posts

Mobile MCE editor popup problem


Design and Skin Customization

Have you tested this on an actual phone? Because a phone should not display the editor at all which means there is no access to embed.

When I looked at it I just squished the browser down to a really narrow width to see what you show in the photo.

--edit--
actually if the issue is just the table, I can get that changed.
updated by @michael: 07/04/15 09:22:03PM
michael
@michael
07/04/15 01:52:05AM
7,832 posts

Including templates in a module file


Jamroom Developers

and just to add to that, if your wanting to use jrCore_list and use a template from a module you can use 'tpl_dir='

eg:
{jrCore_list module="jrAudio" template="sometemplate.tpl" tpl_dir="myModule"}

That will look for sometemplate.tpl in
/modules/myModule/templates/sometemplate.tpl

instead of the current skin.
michael
@michael
07/04/15 01:01:42AM
7,832 posts

Privacy for Under 18s


Suggestions

The part I get stuck at is what to build. In order to build something I need to know what to build. I don't want to design the system for others to follow, just implement the system that is needed. And only for the locations were it is needed and wanted.

Kind of like "Peace on earth forever", nice concept, but how to implement it.
michael
@michael
07/04/15 12:56:31AM
7,832 posts

Aparna Suggestions


Suggestions

aparna created modules have a quota config tab. Is this something different?

NEW MODULE -> Quota Config -> ALLOWED ON PROFILE

Allows users in that quota to create that content type.
michael
@michael
07/04/15 12:52:23AM
7,832 posts

Mobile MCE editor popup problem


Design and Skin Customization

You should be able to click+drag that window where you want it by clicking on the title area and dragging it to where you want.

I'll see if I can get it to open a bit more centred for mobile devices.
michael
@michael
07/04/15 12:46:16AM
7,832 posts

Gallery Exif


Using Jamroom

Looking at the modules code, it checks to see if the php function exif_read_data() exists, so that will need to be available on your server.

If it is, the module tries to read the exif data and adds these keys to your datastore if they are set:
* 'FileDateTime'
* 'ImageDescription'
* 'Make'
* 'Model'
* 'ExposureTime'
* 'FNumber'
* 'ISOSpeedRatings'
* 'ShutterSpeedValue'
* 'ApertureValue'
* 'BrightnessValue'
* 'FocalLength'

From all .jpg, .jpeg, .tiff files.

It also adds date ranges to the search items function:
* exif_year
* exif_month
* exif_day

The System check will throw a warning and a link to: http://php.net/manual/en/book.exif.php

if
Quote: EXIF Image functions are not installed in PHP
michael
@michael
07/04/15 12:24:30AM
7,832 posts

Is there a way to delete users en masse?


Installation and Configuration

Try it now batch edit 1.0.7.

Profile and User modules have a datastore but dont return an _item_id so they weren't working well with Batch Edit. Should work now.

If you delete the profile, might want to delete the user account too.
michael
@michael
07/03/15 11:27:05PM
7,832 posts

Trying to get a (scrollbar)* slider on Activity Feed


Using Jamroom

To adjust a css file you'll need to access your server via SFTP. You get the username . password from here:
https://www.jamroom.net/perrie/hosting/server_config/34

or:
YOUR PROFILE -> HOSTING -> DASHBOARD -> SERVER SETTINGS

That is the info you need to access your server.

With that info you are able to login and see all the files that make your site run.

Navigate to:
/YOUR SITE/public_html/skins/paPerrieNingja/css/site.css

* download that to your computer
* open the file with a text editor like notepad
* add the code to the bottom
* upload the file back to the same place

That will change the contents of the version that is on your server and will make the changes your after.

--edit--
Here's a video on how to do it:
Updating CSS files via FTP
updated by @michael: 07/03/15 11:45:47PM
michael
@michael
07/03/15 04:34:42PM
7,832 posts

Image Slider on Elastic?


Design and Skin Customization

Templates have more flexibility than Site Builder. With templates you can do anything, with Site Builder you are limited to the widgets that currently exist.

You can have a slider via:
SITE BUILDER -> ADD WIDGET -> UPLOADED IMAGES -> (upload some images and check the checkboxes)

If there are multiple images they will appear in a slider the same as the elastic one. Just they wont be linked to the profiles.

---
Another way to do it would be to use the TEMPLATE CODE widget and just add the stuff from the elastic skin to make the profile slider. Here's the condensed version:
<script type="text/javascript">
    $(function() {
        $("#slider1").responsiveSlides({
            auto: true,          // Boolean: Animate automatically, true or false
            speed: 400,          // Integer: Speed of the transition, in milliseconds
            timeout: 4000,       // Integer: Time between slide transitions, in milliseconds
            pager: true,         // Boolean: Show pager, true or false
            random: true,        // Boolean: Randomize the order of the slides, true or false
            pause: true,         // Boolean: Pause on hover, true or false
            maxwidth: 560,       // Integer: Max-width of the slideshow, in pixels
            namespace: "rslides" // String: change the default namespace used
        });
    });
</script>

<div id="swrapper" style="padding-top:10px;">
    <div class="callbacks_container">
        <div class="ioutline">
            <ul id="slider1" class="rslides callbacks">
                  {jrCore_list module="jrProfile" order_by="_item_id desc" limit="10" search1="profile_active = 1" template="index_featured_slider.tpl" require_image="profile_image"}
            </ul>
        </div>
    </div>
    <div class="clear"></div>
</div>
Put that in to:
SITE BUILDER -> ADD WIDGET -> TEMPLATE CODE

And it will get the slider.
michael
@michael
07/03/15 04:21:51PM
7,832 posts

jrGeo_location usage


Using Jamroom

That looks pretty spccific:
"City Middle River, MD, United States 21220"

I suspect if you need more specific info you're going to need a more specific database than the free one provided.

I think the free one from http://www.maxmind.com that is included is only down to the city level.
  515