Forum Activity for @ultrajam

SteveX
@ultrajam
02/10/14 02:01:55AM
2,589 posts

Empty module features headings showing


Using Jamroom

Ah, the buttons aren't appearing because of my ad blocker.

Shouldn't comments and tags have an {if} around the header, or default text if there are none?
SteveX
@ultrajam
02/09/14 12:37:42PM
2,589 posts

Empty module features headings showing


Using Jamroom

Also, when not logged in the share buttons show but comments and tags headings are showing.

They should maybe be hidden, or a notice saying you need ot be logged in to read comments.
not-logged-in.png not-logged-in.png - 40KB

updated by @ultrajam: 02/09/14 12:38:05PM
SteveX
@ultrajam
02/09/14 12:36:20PM
2,589 posts

Empty module features headings showing


Using Jamroom

Looking at the docs page here:
https://www.jamroom.net/the-jamroom-network/documentation/development/1599/the-image-system

There is an empty Share This section showing. I probably don't have any share networks enabled.
share-this-title.png share-this-title.png - 56KB

updated by @ultrajam: 03/31/14 02:16:13AM
SteveX
@ultrajam
02/09/14 12:18:12PM
2,589 posts

add admin image to pj5 site news


Design and Skin Customization

For admin with user id=1:
{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=1 size="medium" crop="auto" alt="admin" class="img_shadow"}

Change '"module="jrUser" type="user_image"' to 'module="jrProfile" type="profile_image"' if you wnat the admins profile image instead.

The image function parameters are at the bottom of this docs page:
https://www.jamroom.net/the-jamroom-network/documentation/development/1599/the-image-system
which seems wrong, should really be at the top.
updated by @ultrajam: 02/09/14 12:18:52PM
SteveX
@ultrajam
02/08/14 11:11:06AM
2,589 posts

Pull in form fields into created tpl files


Design and Skin Customization

If you have to get the profile info directly into the template use jrCore_list or jrCore_db_get_item:
{$your_profile_id = 7}
{$_profiledata = jrCore_db_get_item("jrProfile",$your_profile_id)}
{$_profiledata.profile_bio}

If you need only the bio, you can use jrCore_db_get_item_key($module, $id, $key)to get only that:
{$your_profile_id = 7}
{$bio = jrCore_db_get_item_key("jrProfile",$your_profile_id,"profile_bio")}
{$bio}
SteveX
@ultrajam
02/08/14 10:56:44AM
2,589 posts

Marketplace updates- Sometimes have to install twice


Installation and Configuration

This happened to me yesterday - I assumed it was an isp thing and clicked all the buttons to update the modules one at a time.
SteveX
@ultrajam
02/07/14 05:49:05AM
2,589 posts

audio recording


Suggestions

Browsers can now do this using WebRTC (except IE of course) but it is still quite experimental and varies between browsers. So not ready for prime time but in the medium run it's probably the best direction for this type of thing.

This is a good one to watch in order to see the range of next gen features (and the current problems with them):
https://github.com/muaz-khan/WebRTC-Experiment
SteveX
@ultrajam
02/07/14 02:39:48AM
2,589 posts

Urgent - Serious Problems


Using Jamroom

Permissions are a server/hosting thing, not related to jamroom or any other script you might run on your server, so your server guy should have no problems repairing permissions.

I have moved a jr4 site into a sub directory and then installed jr5 in the main directory, both are running fine, so that should work for you. You need to follow the "moving jamroom to a different directory" instructions in the jr4 faq and then install jr5 making sure to use a different table prefix.
SteveX
@ultrajam
02/06/14 01:54:03PM
2,589 posts

Where can I download ujCategories ?


General

Yes, sponsorship could move it up the queue.
SteveX
@ultrajam
02/06/14 01:52:17PM
2,589 posts

item_action.tpl


Jamroom Developers

Try template="my_custom_item_action.tpl" in your list function with the template in the active skin dir.
  204