Forum Activity for @michael

michael
@michael
02/20/15 06:04:29PM
7,832 posts

forum posting issues


Ning To Jamroom

soaringeagle:
also as i said before my replies acrtivity doesnt show in the activity feed

im wondering if its only affecting admin accounts

If an admin user changes something on a profile that is not their home profile that won't show up in their activity timeline. Maybe thats what your seeing.
michael
@michael
02/20/15 05:51:57PM
7,832 posts

My playlist as a list of songs


Using Jamroom

You can use this code to get playlist #1
{capture name="row_template" assign="template"}
{literal}
    {if isset($item.playlist_items) && is_array($item.playlist_items)}
    {jrCore_module_url module="jrAudio" assign="murl"}
    {foreach $item.playlist_items as $_i}
    <br>
    the item name is {$_i.audio_title}
    {/foreach}
    {/if}
    {debug}
{/literal}
{/capture}

{jrPlaylist_util mode="embed_playlist" playlist_id=1 template=$template}

The {debug} in there will popup the dialog and show you what all the variables you can use are. Remove it once your happy with the layout of your template.
michael
@michael
02/20/15 05:23:20PM
7,832 posts

Question Regarding Seamless Module Function


Using Jamroom

@gary, your talking about profiles, while @derrickhand300 is asking about top level templates. They are related but also separate issues. For the profiles, to combine 2 things, you'd need to add a third module that just adds a tab so you have a template there. Perhaps Aparna, then edit the index.tpl in that module.

---
so for this particular issue of seamless in the templates.
 {jrSeamless_list modules="jrYouTube,jrVideo" order_by="_created numerical_desc" require_image="video_image" pagebreak=28 page=$_post.p pager=true template=$tpl}
reads "Get me the 28 newest videos from the Youtube and Video modules. Make sure they have an image. Show the prev/next buttons. and make the layout how i describe it in this template $tpl"

So probably what you are getting is 28 videos back but they are not laid out in a way that you like. The part you need to adjust is whatever is in that $tpl variable.

Probably thats been created inside a {capture} section just above where you put the {jrSeamless_list ....
michael
@michael
02/20/15 01:32:15AM
7,832 posts

Question Regarding Seamless Module Function


Using Jamroom

Seamless is for combining the datastores of different modules into a single list, what you seam to be asking for is a single module that can take different video formats.
michael
@michael
02/20/15 01:27:16AM
7,832 posts

RE: 2.0 + Design Studio?


Genosis

Not sure what the Ning Style Design studio is. Its not something we've released (I don't think....)
michael
@michael
02/20/15 01:05:00AM
7,832 posts

syntax error in your template


Using Jamroom

There was a check put in place in a recent version to make sure the template code you put there wont break the panels for the Site Builder.

Previously it would allow it to be saved, then break when it tried to be displayed. Not breaking seamed the better option.
michael
@michael
02/19/15 12:08:36PM
7,832 posts

Brackets / Atom


Off Topic

Nice one Jimmy

The editor I used to use before PhpStorm was eclipse:
https://eclipse.org/

Its totally free too. Haven't used it in years though.

You're right, not everyone needs a full IDE for development. Firing up Eclipse (or PhpStorm ) for a few template tweaks is total overkill.
updated by @michael: 02/19/15 12:08:59PM
michael
@michael
02/18/15 08:58:07PM
7,832 posts

Google Maps Module


Off Topic

It should auto install just like any other module.

ACP -> MARKETPLACE -> (search) maps -> INSTALL
michael
@michael
02/18/15 04:50:30PM
7,832 posts

How can I add buy now button ?


Using Jamroom

derrickhand300:
Wow- right under our noses the whole time- Thanks! Now I am wondering if I can clone the paypal module and use the xxpaypal to sell albums...

nope. If you want to sell albums, you need the foxycart module.
michael
@michael
02/18/15 04:47:46PM
7,832 posts

Admin Tools Image Upload


Jamroom Developers

try deleting the module, clear out any related stuff in the database. check the settings table and the modules table for anything with your modules prefix, then start again.

Could be that you've removed the input box from the form, but that value has already been saved in the datastore.
  582