Forum Activity for @michael

michael
@michael
08/14/16 05:28:54PM
7,826 posts

Image gallery error on save


Jamroom Developers

Are you using a BETA version or STABLE version. If its a BETA version, make sure you're up-to-date.
michael
@michael
08/14/16 05:15:00PM
7,826 posts

Suggestions for Lightbox view


Suggestions

You have total control over your site, if you want a lightbox on anywhere, you can alter the skin to put a lightbox anywhere.

Example, if you wanted a lightbox from each of the images in the gallery page where the "View Images in Lightbox" was shown, the template is /modules/jrGallery/templates/item_gallery.tpl . You can over-ride it with this method:

Docs: "Altering a Module's Template"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/1051/altering-a-modules-template

Currently the code is already there for the lightbox and starts at position 0, but you can start it on any image by adding a link containing the item_id, eg:
<a href="{$jamroom_url}/{$murl}/image/gallery_image/{$item._item_id}/1280" data-lightbox="images" title="{$_items['0'].gallery_alt_text}">open in a lightbox</a>
around line 75 to check its working (as thats inside the foreach loop), then style it however you like.

That will add a 'open in a lightbox' link to each of the images.
michael
@michael
08/14/16 05:02:30PM
7,826 posts

Comments item_action - Use module_name


Design and Skin Customization

Ah, the title of the module. to me "module name" meant "jrAudio" "jrVideo", I thought you wanted that.

In the {debug} output there is probably a {$_mods} section with all of the active modules and their data. You can target the 'module_name' from that section by giving it the module name you're getting, eg:
{$_mods.jrAction.module_name}
will output "Timeline" or
{$_mods.jrAudio.module_name}
will output "Uploaded Audio" if thats what its set to in the ACP.

So using this structure, you can pass in the variable that contains your 'jrAudio' and get back the display name for the module.

Try:
{$_mods[$item.action_data.comment_module].module_name}


Related docs:

Docs: "{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/development/1477/debug

Docs: Smarty Docs
http://www.smarty.net/docs/en/index.tpl
michael
@michael
08/14/16 04:45:04PM
7,826 posts

Users dont get the file they paid for


Using Jamroom

Nothing has changed with the paypal module since 08 Dec 2015 so if this started happening after that date, then something must have changed somewhere.

We'll recheck the module from here. You should check your paypal for any errors or notices.
michael
@michael
08/14/16 04:23:03PM
7,826 posts

New Jamroom Hosting Features Questions


Jamroom Hosting

Yes you can use the ONEALL module:

Docs: "Oneall Social"
https://www.jamroom.net/the-jamroom-network/documentation/modules/284/oneall-social

To allow users to use a single sign on account to sign in to all systems. Each would need to be logged into individually though.

Unless you built a module to connect all the sign on systems.

I purchase my domains through namecheap ( https://www.namecheap.com ).

Another popular one is enom ( http://www.enom.com/ )

You can use whoever you like. We don't have a dashboard button to do it.
updated by @michael: 08/14/16 04:39:59PM
michael
@michael
08/13/16 11:45:23PM
7,826 posts

New Jamroom Hosting Features Questions


Jamroom Hosting

1.) The help text for that reads "Free Marketplace Items: Jamroom Hosted Subscribers can install as many modules and skins (created by the Jamroom Network) on their sites as they would like." So if you have the 4G hosted package which has 1 "Free Modules & Skins" then you can create one domain. eg: great-skateboarding-videos.com and use any of the modules and skins created by the Jamroom Network for free on that domain. You can look through those module here: https://www.jamroom.net/the-jamroom-network/networkmarket all the ones with a price on will be free for one domain.

If you then want to add another domain eg: best-ballet-dancer-videos.com you would either need to upgrade to the 8G plan to get all the modules and skins free for that one, or purchase the ones that you need if you stayed on the 4G plan because it only comes with Free Modules and Skins for one domain.

If you go with the 24G plan you can add as many domains and create as many communities on each of those domains as you like, its unlimited.

2.) It depends on which module you use. The most robust module is the Foxycart module which allows you to sell subscriptions, sell videos and items etc, and for the system admin to keep any percentage that they like. foxycart is a shopping cart service and to use it you need to sign up for their system too which cost around $15/month, so only use it if you are setting up a sales as a main feature. If you want a tack on system just in case someone may want to buy something, there is the paypal module. you cant sell subscriptions with it, and you cant take a percentage. the money goes directly to the seller of the item.

3.) We have never provided a chat system package for Jamroom, perhaps you are thinking of cometchat which is a separate company that has a chat module that can work with jamroom. Its not provided by us.

If AV chat or Video whisper work on our hosting you can use them, but we dont install extra software to make other packages work. A common one that is required is ion-cube loaders. if they require that, it will not work on our servers.
michael
@michael
08/13/16 05:33:23AM
7,826 posts

Different Skin for mobile site version


Design and Skin Customization

I can help with issues you encounter here in the forum but not to a degree where I build it and you copy+paste it into a module.

Look at how the Admin Skin module works and use that as a guide.
michael
@michael
08/13/16 02:16:08AM
7,826 posts

Users dont get the file they paid for


Using Jamroom

izhmel:
That's not the file look @ the date (03/17/16 11:53:42AM)

So it was working but then stopped. Did you change anything at paypal? What was the song that was purchased?
michael
@michael
08/13/16 12:39:52AM
7,826 posts

Comments item_action - Use module_name


Design and Skin Customization

That question could use a little more info, you're working the abstraction parts of my brain too hard :)

the way {jrCore_module_url} works is you pass it the module name, eg 'jrAudio' and it returns the currently assigned url 'audio' or 'uploaded_audio' or whatever else the admin decided to change it to.

So if you're wanting 'jrAudio' instead of 'audio' then from your example what you want is already there:
{$item.action_data.comment_module}

--edit--
Docs: "{jrCore_module_url}"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/761/jrcore-module-url
updated by @michael: 08/13/16 12:40:44AM
michael
@michael
08/12/16 11:33:15PM
7,826 posts

Different Skin for mobile site version


Design and Skin Customization

Its possible, but there hasn't been a simple "turn it on" method released as a module.

Ideas on how to possible ways approach this problem:
1.) There is a template function jrCore_is_mobile_device() that checks to see whether the device viewing the page is a mobile device or not, you could use that to structure the page differently for mobile vs desktop browsers.

Docs: "{if jrCore_is_mobile_device()}{/if}"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/3191/if-jrcore-is-mobile-device-if

2.) install one version of jamroom into each of the URLs so they each get their own database, then find a way to use all of the tables from the main site on the secondary site EXCEPT for the 'settings' table, so it will have its own settings.

3.) create a module that detects which URL the page is being displayed on, then use the same concept as the "Admin Skin" module to switch the active skin depending on the URL. (This is probably the first way I would try to do it, it seams the simplest.)
  370