Forum Activity for @michael

michael
@michael
02/10/15 08:33:18PM
7,832 posts

Bug in FAQ's


Using Jamroom

Check for any updates, im not seeing the same thing here. I create 5 FAQ's, then delete a couple from the middle. All working as expected.
michael
@michael
02/10/15 06:31:48PM
7,832 posts

getting digital content for sale to list in shops (seemless)


Using Jamroom

Not all smarty code works from the editor. Most wont. Only a few calls that are allowed by the items in the construction kit will.

{if}
wont work in the editor. If you need to add actual code, use the CODE section.

If you need to add javascript, use the CODE section.
michael
@michael
02/10/15 04:56:22PM
7,832 posts

seo metatag manager and custom form fields questions


Design and Skin Customization

soaringeagle:...
New: title tag now allowed on html code coming in from the editor
...

It means you can add tite="something" to items in the editor and they won't be stripped out.

Previously
<img src="somewhere.png" title="a picture of a goat">
would be stripped to
<img src="somewhere.png">
because title tag was not allowed. Now it is, so you can add title tags.
michael
@michael
02/10/15 04:06:50PM
7,832 posts

Event Calendar


Using Jamroom

SelfmadeClub:...
1) Do I take part with another artist in his event, is this not indicated, unfortunately, in my own timeline as news?
You can upload to any profile you are associated with. Events that are created on that profile will show on that profile. If you need them to show on multiple profiles, they will need to be created on multiple profiles. Profiles only show their own stuff.
SelfmadeClub:...
2) Do I take part with another artist in his event, will this not transfer, unfortunately, in my own calendar with?
If you need them to show on multiple profiles, they will need to be created on multiple profiles. Profiles only show their own stuff.

SelfmadeClub:...
3) Does the possibility insist that I invite own friends or Follower myself? Like with Facebook that invited then, however, can still decide whether them in it take part-> ;, yes, maybe, no
The events module has an "attending" button that users can use to state if they are coming to the event or not
"Profile Events" (module)
https://www.jamroom.net/the-jamroom-network/networkmarket/61/profile-events

"Profile Events" (documentation)
http://www.jamroom.net/the-jamroom-network/documentation/modules/276/jrevent

SelfmadeClub:...
4) Does the possibility insist that I give an address and then this is indicated via "Google Maps" at the same time? Also for routes calculation?

The google maps module is created by @ultrajam, here's the answer in their forum:

"Google Maps on Events"
http://www.jamroom.net/ultrajam/forum/googlemaps/15047/google-maps-on-events
michael
@michael
02/10/15 03:44:24PM
7,832 posts

getting digital content for sale to list in shops (seemless)


Using Jamroom

Looks spot on to me. Try pulling back on all the options to just one, then building up.

I added 3 audio files with a price to check it out here and they came back as expected with:
{jrSeamless_list modules="jrAudio" limit="5" search1="*price > 0" order_by="_created random"}
michael
@michael
02/10/15 02:35:38PM
7,832 posts

getting digital content for sale to list in shops (seemless)


Using Jamroom

Thanks SE for making that excellent video, and helping everyone understand the system. Really appreciated.

- Ken, take a look at this doc page:

"Making a skin site builder ready"
https://www.jamroom.net/site-builder/documentation/development/2349/making-a-skin-site-builder-ready

For the steps to change your skin to to make it work.

The .json file SE is referring to is one that sets up some defaults. You don't need that, you can build the page for yourself. (the ningja skin has one of those .json files if you wanted to try it. Find it at ACP -> SITE BUILDER -> PANELS -> TOOLS -> IMPORT to add some pre-setup stuff.)
michael
@michael
02/09/15 12:45:44AM
7,832 posts

Shrunken Videos Surrounded by Blackness


Using Jamroom

Got an example of it?

I suspect your talking about the aspect ratio of the videos. Sometimes videos in a 4:3 ratio will have black marks down the side if shown in a player that allows for 16:9 spacing.
michael
@michael
02/09/15 12:44:23AM
7,832 posts

Question about timeline mentions link going back to a list type page ?


Design and Skin Customization

mentions should show posts where there is an @john-bizley in the post while the other one should show the posts from people you follow regardless of whether your mentioned in them or not.
michael
@michael
02/09/15 12:44:23AM
7,832 posts

Images on profile tabs - is it possible?


Design and Skin Customization

John Bizley"] ...I would think this would be possible and could be done purely in css....
Good call John. If you wanted to go that way perhaps classes or ids of the target name:
<a href="{$entry.target}" class="tab_button tab_{$entry.target}"><div class="profile_menu_entry">{$entry.label}</div></a>

and use .tab_button (or whatever name you like) for the spacing and .tab_(the button specific) to add the pic.
michael
@michael
02/09/15 12:38:55AM
7,832 posts

Images on profile tabs - is it possible?


Design and Skin Customization

The way I'd do it is to put an image up in the skin that corresponds to the url output for the module:

/skin/(YOUR SKIN)/img/icon_action.png
/skin/(YOUR SKIN)/img/icon_blog.png
/skin/(YOUR SKIN)/img/icon_documentation.png
/skin/(YOUR SKIN)/img/icon_follow.png
/skin/(YOUR SKIN)/img/icon_page.png
etc...

Then use the .url that is coming out anyhow to output the image:
<a href="{$entry.target}"><div class="profile_menu_entry">{$entry.label}</div></a>
add in the image you want:
<a href="{$entry.target}"><div class="profile_menu_entry">{jrCore_image image="icon_`$entry.target`.png" width="64" height="64" alt="`$entry.label`"}{$entry.label}</div></a>

something like that.
  589