Forum Activity for @michael

michael
@michael
12/16/15 04:00:59PM
7,832 posts

newest ningja skins do not work right for me


Ning To Jamroom

Really need to do one thing at a time or its hard to get any issue to the solved state, the issue gets lost amongst all the reading needed to do to figure out what the issue is.

"issues:menu items vanish when activating skin"
* How do I setup here to see this happening?

What are the steps to take for me to see this happening on my machine. I need to know how to add something, then see it vanish.

(It might be happening on your machine, but that might be the result of a change you've made, so in order to understand it on your machine, I need to understand all the changes made to your machine, I don't want to go to that much effort unless its absolutely necessary.)
michael
@michael
12/16/15 01:52:38AM
7,832 posts

No SoundCloud Tracks found


Using Jamroom

Still working here as expected. Check on soundcloud to see if they have sent you any messages.

Check the error log in the ACP to see if there is any error messages about what could be happening.

If the module is up to date and the credentials are correct, then it should be going
michael
@michael
12/16/15 01:47:03AM
7,832 posts

Lost comments


Using Jamroom

dim:Do you planning to fix this problem?

So the problem is that his home profile does not automatically change to one of the other linked profiles if his home profile is deleted?

...not sure that is the correct decision.

eg: I am a power user and I create 50 profiles, then delete my home one. Which profile should be automatically selected? The next one created, the next one alphabetical ordering, the next one ________?

Seams like a choice for a human to make.
michael
@michael
12/16/15 12:41:24AM
7,832 posts

newest ningja skins do not work right for me


Ning To Jamroom

Hard for me to setup to test for what is happening.

"issues:menu items vanish when activating skin"
* How do I setup here to see this happening?

Without a way to setup to see it happen there is no way to know if changes that are made stop it from happening.

Lets start with one thing and work on that one thing until it is fixed.
michael
@michael
12/14/15 10:19:31PM
7,832 posts

Adding To Templates On A Per Url Basis


Using Jamroom

Put {debug} in there, see what matches the answer for "9" and then see what the variable is. There are probably a few options. There will be one in $_post for sure as $_post contains the stuff from the URL.

Ceri:...is there a way of adding unique content to a page anywhere on the site, in any module, something like the smarty currenturl variable?....

Too broad a question to answer. Probably yes, but it always depends on where and what.
michael
@michael
12/14/15 09:39:06PM
7,832 posts

How about Jamroom TinyURL ?


Suggestions

the jamroom url stops at:
http://www.dubmusic.com/thescientist/page/59/the-scientist-live-dub

The rest is some sort of tracking that's not added by jamroom.
michael
@michael
12/14/15 09:12:55PM
7,832 posts

Adding To Templates On A Per Url Basis


Using Jamroom

Yeah, best not to assume anything. Use {debug} to find out for sure.

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

So its the group id 9 that you want to show it for then? if so, thats going to be on the = side of the equation.

{if $group_whatever_id == "9"}......{/if}

Its probably going to end up being:
{if $group_id == "9"}......{/if}
OR
{if $item.group_id == "9"}......{/if}
OR
something similar.

--edit--
Oh, and that block can be as big as you need it to be, dont need to check for each line:
{if $group_whatever_id == "9"}
......
......
......
......
......
......
......
......
{/if}

updated by @michael: 12/14/15 09:16:20PM
michael
@michael
12/14/15 07:38:46PM
7,832 posts

Adding To Templates On A Per Url Basis


Using Jamroom

yes.

The rest of the details depend on what the url look like, which template you're altering and what the group id is.

The general idea/concept is to figure out a variable that will exist on in the template you're altering, then use that as a conditional to display/not-display the section.

Docs: "Template Blocks"
https://www.jamroom.net/the-jamroom-network/documentation/development/3126/template-blocks

So if you know the group_id turns up in that template, use that as the {if} condition.

{if $?????_group_id == "1"}.......{/if}
michael
@michael
12/14/15 06:11:04PM
7,832 posts

Video streaming questions


Using Jamroom

2. The original file will be downloaded.
michael
@michael
12/14/15 06:03:58PM
7,832 posts

moving the "up" button


Using Jamroom

Its the design for the skin, so the correct way is to do it in the CSS. Its not impossible from the templates, but it will start to make a mess for future stuff that you would need to remember all your changes later. If you really want to do it that way its possible in the templates by adding style="" to the element you want to adjust. (not a good idea though)
  453