Posted 9 years ago
·
Author
I recently added the following to my blog at triggerless.com:
The “My Room” panel currently on an avatar’s home page is incredibly lame. Recently, there was this post on the Homepage Building forum, where the OP wondered if it would be possible to put actual public room info, picture, status, etc. right on your home page. The answer might be a flat out “no”, but I took this as a challenge to see if I could find a tricky way to this.
If you want to show public room info on your HP, here’s the TL;DR version. I explain how I did it in the full blog post.
1) First make sure your “My Room” panel is visible to all. You can change that if you need to on the Account page.
2) Copy/paste the following codes to the Custom HTML/CSS editor:
3) If your page background is light, change DisplayRoomDark.css to DisplayRoomLight.css, otherwise leave it as is.
4) Change your-room to the actual name of your room, which you can look at at http://www.imvu.com/rooms.
5) (optional) If you have more rooms to display than one, then copy and paste the whole <script>...</script> tag for your-room and give each room parameter the name of each room. It’s best not to duplicate the same room more than once (why would you?) because that might not work.
6) Click the Save button, then reload the page. And voilà, everything worked. If it didn’t, and you get “Unknown Room”, then you probably got the name of the room wrong. If it still doesn’t work, PM me and we can figure it out.
7) Read more on my blog post: http://triggerless.com/web/2015/04/16/public-room-home-page/
The “My Room” panel currently on an avatar’s home page is incredibly lame. Recently, there was this post on the Homepage Building forum, where the OP wondered if it would be possible to put actual public room info, picture, status, etc. right on your home page. The answer might be a flat out “no”, but I took this as a challenge to see if I could find a tricky way to this.
If you want to show public room info on your HP, here’s the TL;DR version. I explain how I did it in the full blog post.
1) First make sure your “My Room” panel is visible to all. You can change that if you need to on the Account page.
2) Copy/paste the following codes to the Custom HTML/CSS editor:
<script type="text/javascript">
/* Triggerless.com Public Room Codes */
$(document).ready(function() {
$('#room_panel_colRow').empty();
$('#room_panel_header').find('.paneltitletext').text('My Public Rooms');
});
</script>
<link rel="stylesheet" href="http://www.triggerless.com/imvu/DisplayRoomDark.css" />
<script type="text/javascript" src="http://www.triggerless.com/imvu/DisplayRoom.ashx?room=your-room">
</script>
3) If your page background is light, change DisplayRoomDark.css to DisplayRoomLight.css, otherwise leave it as is.
4) Change your-room to the actual name of your room, which you can look at at http://www.imvu.com/rooms.
5) (optional) If you have more rooms to display than one, then copy and paste the whole <script>...</script> tag for your-room and give each room parameter the name of each room. It’s best not to duplicate the same room more than once (why would you?) because that might not work.
6) Click the Save button, then reload the page. And voilà, everything worked. If it didn’t, and you get “Unknown Room”, then you probably got the name of the room wrong. If it still doesn’t work, PM me and we can figure it out.
7) Read more on my blog post: http://triggerless.com/web/2015/04/16/public-room-home-page/