Forum Activity for @michael

michael
@michael
03/01/16 09:47:36PM
7,832 posts

Problem loading a customise background image into header section


Using Jamroom

The location you should be editing is:
/skins/jrFlashback/css/header.css around line 3

The code you have there has 2 background-image elements, you're only allowed one, so if you want to add
background-image: url('{$jrFlashback_img_url}/bukcmap_header_bg_150x150_Png_50.png'); 
then you'll need to replace the
background-image: -webkit-gradient(linear, left top, left bottom, from(#108EB2), to(#0076A4)); /* @ignore */
michael
@michael
03/01/16 09:38:22PM
7,832 posts

changing owner for FAQ


Using Jamroom

The "Change Owner" module looks for a title, since the FAQ's don't have a title, they dont show up in the search field.

we've updated both the FAQ and the Change Owner modules so modules can register to have alternative locations searched for.

Update them from the marketplace and the change owner tool will work on the FAQ's question.
michael
@michael
03/01/16 08:06:25PM
7,832 posts

Group Search for Profile Display


Design and Skin Customization

Take a look at these docs:

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

The debug panel will tell you what variables you have to work with. take out some of the search stuff and put the {debug} in the $my_group_tpl template

Looking at the database structure now, you might need to create a custom smarty function to get the groups that the current profile is a member of because it looks like the members of a group are stored in their own table.

Docs: "Defining your own SMARTY function"
https://www.jamroom.net/the-jamroom-network/documentation/development/1569/defining-your-own-smarty-function

Need to see what data comes back with a debug in your template and a simple jrCore_list call:
{jrCore_list module="jrGroup" template=$my_group_tpl}

The group members might get added, you'd need to check.
michael
@michael
02/29/16 07:44:58PM
7,832 posts

Older Smileys not working?


Design and Skin Customization

url's a bit out:
https://www.punkbandpromotions.com/modules/jrCore/contrib/tinymce/plugins/emoticons/img/smiley-yell.gif

is where its at. The difference is 'emoticons' and 'tinymce' are different than your full URL.

I think the URL did change though because now there is a jrSmiley module and the URL's to the smileys look like this:
http://site.com/data/media/0/0/jrSmiley_2_smiley_image.png

Smiley module:
https://www.jamroom.net/the-jamroom-network/networkmarket/107/smiley-support

You've been running since JR5.0 so its quite likely that some things changed. There's been a lot of versions between there and 5.3

If its a huge job to replace them all, might try the "Parameter Injection" module to swap this string:
modules/jrCore/contrib/tiny_mce/plugins/emotions/img/
out for this string
/modules/jrCore/contrib/tinymce/plugins/emoticons/img/

That might do it, see this user-tip from curtis aobut how he did used it here:

"user tip: Removing Black Bars from Youtube Thumbnails"
https://www.jamroom.net/the-jamroom-network/forum/new_posts/35371/removing-black-bars-from-youtube-thumbnails

--edit--
alternatively you could put the old tiny_mce/plugins/emotions/img/ folder back into the module. It would break each time the updates happened though, but its a low-tech solution. Think the issue came about with an update of the tinymce editor.
updated by @michael: 02/29/16 07:48:05PM
michael
@michael
02/27/16 04:48:52PM
7,832 posts

Custom Skin - Form Designer


Design and Skin Customization

ah, hadn't thought of this scenario.

If you create an aparna module and add custom form fields to it, you can export that module and the extra fields by checking the "Export Form Designer" checkbox when you export the module via the Developer Tools -> Package Module.

But since the existing modules are jamroom modules jrXxxxxx, not your modules, they wont show up in the package module tool for you.

Think it would require a module built to export form designer settings and import them again regardless of who the module builder was to get what you're wanting working.

The other option is to export the settings via the database system, but thats a bit more complex.
michael
@michael
02/27/16 02:20:38PM
7,832 posts

Media player not working on custom templates


Installation and Configuration

I can see the error happening on the stream.

The issue is that the name is too long for the count_name column in the jr_jrcore_count_ip table.

You can change that manually to 64 if you like or we will have it fixed for the next release.

Thanks.

If you want to fix it up manually, go to phpmyadmin or the Developer Tools database browser, and change the varchar(32) to varchar(64)
michael
@michael
02/27/16 02:07:43PM
7,832 posts

Aparna Module - JrPlaylist


Design and Skin Customization

you can copy the item_playlist.tpl file from the audio file to your module and use it as a model.
  422