Forum Activity for @michael

michael
@michael
02/02/17 11:37:24PM
7,826 posts

Issue with mobile menu on iskin4 and followme skin.


Design and Skin Customization

jamesmanley:
I am also having issues with the iskin 4 and celebrity mobile template. You can see it here at www.planetimc.com. It works perfect 👌🏿 on desktop and smart tv 📺 but mobile malfunctions. Reinstalled skin but no joy. Any tips? Thank you 😊 in advance.

Malfunctions? what happens?
michael
@michael
02/02/17 11:34:33PM
7,826 posts

Updating an earlier skin with the Ningja skin


Design and Skin Customization

It would be very unusual to have the name of a different skin contained within your current skin.

When you clone a skin all instances of that skins name get replaced with the new skins name.

$_conf.jrNinja_twitter_name

Is a config setting that is set on the GLOBAL CONFIG tab of the Ninja skin. You could use that in your current skin and it would work but its strange and asking for a difficult issue to solve later on.
michael
@michael
02/02/17 05:05:19PM
7,826 posts

Updating an earlier skin with the Ningja skin


Design and Skin Customization

* install Ninja into your site via the ACP.
* switch to Ninja as your current active skin

See what is different between it and your current setup. If you like what you currently have more than the new one, stick with your current one.
michael
@michael
02/02/17 03:49:12PM
7,826 posts

A bit odd


Using Jamroom

should be fixed up in jrProfile v 1.6.0

if you go here:
http://yoursite.com/profile/admin/quota/hl=cap_type#ff-cap_type

you will see a quota limit type option
Quote:
The Quota Limit Type setting affects how items are shown on a Profile when a profile matches or exceeds the number of items allowed by their quota.

SOFT: All items are viewable on the profile but the profile owners will no longer be able to add any new items until the number of items falls below the amount allowed in their quota.

HARD: Items that exceed the number allowed in the quota will only be visible to admin users and profile owners. All other users will see a notification that the profile has exceeded the number if items allowed.
Default: Soft Limit on Items
michael
@michael
02/02/17 02:30:03PM
7,826 posts

Follow Me Timeline Question


Using Jamroom

Hard to say without seeing it happen or being able to reproduce it.

If you have some login details for an account where it happens I can try it from here to see if I see the same result.

Send them to support at jamroom dot net with a link to this thread.
michael
@michael
02/02/17 02:23:09PM
7,826 posts

Follow Me Timeline Question


Using Jamroom

That doesn't sound like its working right. For me, I click on the camera, click on the "Select image to upload", choose the image, add a title, and save the post.

The result is the image gets immediately displayed on the timeline.
michael
@michael
02/02/17 01:57:01PM
7,826 posts

The language file is not working on the profile page


Using Jamroom

izhmel:
Where do I find ? "create account"

/user/admin/language?search_string=create

Its id #31
michael
@michael
02/02/17 01:47:27PM
7,826 posts

Public page on a limited site


Jamroom Developers

The next option is to do it with a module. Then you can allow anything through.

Looks like you already know this, but will outline anyhow.

If you create a simple module it will have its unique module url, say 'info' ( call the module xxInfo )

Its url on your site will be
yoursite.com/info

which will display whatever is in the file found at:
/modules/xxInfo/templates/index.tpl

Use the index.php file in your module to create a 'view' at whatever page you want to display
yoursite.com/info/about

would correspond to this function in your modules index.php

function view_xxInfo_about($_post, $_user, $_conf)
{ $_rep = array(); return jrCore_parse_template('about.tpl', $_rep, 'xxInfo'); }

That function reads "When the url yoursite.com/info/about is accessed, go and find the template that exists at /modules/xxInfo/templates/about.tpl and display it."

So that takes care of getting the page displaying, put whatever you want in about.tpl. Its still not displaying for logged out users yet on limited privacy.

To get that working we need to register a listener in our include.php files _init() funciton. That looks like this:


function xxInfo_init(){

   jrCore_register_event_listener('jrUser', 'site_privacy_check', 'xxInfo_site_privacy_check_listener');

    return true;
}


function xxInfo_site_privacy_check_listener($_data, $_user, $_conf, $_args, $event)
{ switch ($_args['option']) { case 'about': $_data['allow_private_site_view'] = true; break; } return $_data; }

Is that enough to get you going?
michael
@michael
02/02/17 12:39:19AM
7,826 posts

Block Audio Download for Guests


Using Jamroom

Good news. Thanks for the update @paatie :)
  274