Forum Activity for @michael

michael
@michael
04/01/14 11:21:05PM
7,832 posts

Meta Tags Not Responding To Variable


Design and Skin Customization

"its not working" isn't really a good explanation of whats happening.
michael
@michael
04/01/14 11:19:52PM
7,832 posts

Add Multiple Profile IDs to News Section?


Design and Skin Customization

This is what you want:

"jrCore_list"
http://www.jamroom.net/the-jamroom-network/documentation/development/89/jrcore-list

Something like:
{jrCore_list module="jrBlog" limit="10"}
michael
@michael
04/01/14 11:17:47PM
7,832 posts

Replace "jrCore_media_player: no media found for player"


Design and Skin Customization

The issue seams like your allowing profiles to upload a song to their profile, then passing in the profile_id as the key to the song.

The problem is that there is no way of knowing if they have or not because the song details are not available in the template where your requesting the player.

The only thing I can think of is to output it to assign="some_var" then see what gets output. then check that string exists or not:

{jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" search="_profile_id = `$_profile_id`" order_by="audio_display_order numerical_asc" limit=100 autoplay=false assign="some_var"}

{if $some_var|strstr:"no media found for player"}
 Hey there, sorry, we didnt find any songs for this guy.
{else}
  {$some_var}
{/if}
michael
@michael
04/01/14 11:11:50PM
7,832 posts

Language changes when I login or logout


Design and Skin Customization

When I go here:
http://devocionmusical.com

then click 'spanish'
then go away and come back the site is still in spanish.

--
then I login, the site is still in spanish.
and log out, the site is still in spanish.

I guess there could be some overlap if the selected language is spanish and you login to an account where their chosen lanugage setting is in english

http://devocionmusical.com/user/account

while logged out, if you change the lanugage to something other than what your account settings are set to, then login the system is not going to know that the language you selected before logging in should be applied to the user you just logged in as.
michael
@michael
04/01/14 11:02:20PM
7,832 posts

fixed height div for social login box


Design and Skin Customization

heres the MT-09 (saw it on sunday at the Tokyo Motor Show 2014, great day.)
2014-Yamaha-MT-07.jpg 2014-Yamaha-MT-07.jpg - 129KB

updated by @michael: 04/01/14 11:02:35PM
michael
@michael
04/01/14 11:01:28PM
7,832 posts

fixed height div for social login box


Design and Skin Customization

MAD©:
Maybe @michael and his magnificent video skills could do a tute on using firebug?
I showed a client the other day the power of it, And he gave me a car....no sh$%
lol
If I do a video, anyone want to buy me a bike? Either of these would be great thanks

Honda NC700S:

Yamaha MT-09:
honda-nc700s-touring.jpg honda-nc700s-touring.jpg - 112KB

updated by @michael: 04/01/14 11:01:52PM
michael
@michael
04/01/14 10:46:56PM
7,832 posts

Temporary quota


Installation and Configuration

The FoxyCart module has an option for a "Trial Period" for each quota. You could set the trial period to 1 month so they could test out the system for X days.

I don't think the way you are asking for specifically has been built into a module, but it could be done by listening on the daily maintenance for the time period you want then moving all users past that time period out into another quota.

would require a module though.
michael
@michael
04/01/14 10:39:09PM
7,832 posts

Getting ERROR ON UPLOADS ON jAMROOM 4


Using Jamroom

500 is usually an "Internal Server Error" which is something that has gone wrong with the server.

Make sure your server is still running PHP 5.2 as that is the version JR4 is programmed for.

If the server has been upgraded to PHP5.3 or newer then JR5 is the way forward.
michael
@michael
04/01/14 03:47:51AM
7,832 posts

Adding a button in user login page


Jamroom Developers

Did you use the jrAparna module to create the base?

If not its quite possilble that you have forgotten something. Do you have a schema.php file for your module.

There is a course here:

"Developers Guide to Customizing Jamroom"
https://www.udemy.com/developers-guide-to-customizing-jamroom/

That is free to all members in the backstage area:

"100% off coupon for developers guide to customizing Jamroom Udemy course."
https://www.jamroom.net/backstage/forum/resources/3112/100-off-coupon-for-developers-guide-to-customizing-jamroom-udemycom-course

--edit--
This might also be useful:

"Datastores"
https://www.jamroom.net/the-jamroom-network/documentation/development/1023/datastores
updated by @michael: 04/01/14 03:50:38AM
michael
@michael
04/01/14 03:43:52AM
7,832 posts

img_url broken after 5.1.33 update


Jamroom Developers

Its not a directory on the file system. Its a 'magic view' which is taken care of via the jrImage module.

What it allows for is the ACP to over-ride the default image provided by the module.
  715