Forum Activity for @michael

michael
@michael
03/24/15 02:52:08AM
7,832 posts

How to Create a Calendar on the Main Page that Shows All Events


Ning To Jamroom

That code can go in the CODE tab of the widget.

There will be no $month or $year in that location so you will need to put in the month/year you want it for.

So you could do it like this:
{if isset($_post.month) || isset($_post.year)}
    {assign var="month" value=$_post.month}
    {assign var="year" value=$_post.year}
{else}
    {assign var="month" value=$smarty.now|jrCore_date_format:"%-m"}
    {assign var="year" value=$smarty.now|jrCore_date_format:"%Y"}
{/if}
{jrEvent_calendar month=$month year=$year template="small_calendar.tpl" tpl_dir="jrEvent"}

That would give you the current month unless there was a month variable coming in from the url.

So if the url was:
your-site.com/our_events

it would show this months one, but if you put
your-site.com/our_events/month=02/year=2014

it would show the events for feb, 2014
michael
@michael
03/24/15 02:47:10AM
7,832 posts

Trying To Sort Videos By Tags


Using Jamroom

derrickhand300:
Sorry I have to reopen this-using
search1="video_tags LIKE %educational%"
brings in all my jrVideo videos but does not bring in my youtube and vimeo videos?

Try:
search1="*_tags LIKE %educational%"
michael
@michael
03/21/15 08:26:53PM
7,832 posts

Is it possible to automatically display all profiles in a gallery?


Using Jamroom

researchcooperative:...Still, I think adding further networking-friendly search functions to the Ningja skin might work well for most networks coming from Ning, and the members of those networks who enjoy browsing other member profiles in multiple ways.....

I don't know what you're asking for here. I hear "Still needs some other stuff". Without a path to follow, that stuff is unlikely to be built.

For specific feature suggestions, throw them in the SUGGESTIONS thread here:

"Jamroom Suggestions"
https://www.jamroom.net/the-jamroom-network/forum/suggestions

so they don't get lost. :)
michael
@michael
03/21/15 08:19:51PM
7,832 posts

Configuring a group for my forum


Installation and Configuration

sbmenu/create is for adding menu items to the top level system menu. Not for creating groups.

To create groups, the module needs to be enabled for that profile. Go to:
ACP -> PROFILE GROUPS -> GROUP SUPPORT -> QUOTA CONFIG

And check the "Allowed on Profile" checkbox after selecting the quota that that COMMUNITY profile is in from the dropdown list.

That will enable the GROUPS tab to show on the profile that is in your screenshot. From there you will see all the options to create groups.

Right now in your screenshot there is no GROUPS tab on the profile menu.
michael
@michael
03/21/15 07:29:38PM
7,832 posts

combined audio/video setting order by....


Ning To Jamroom

Its pretty easy to hide a button you don't want. Just click on that sliding meter looking button that has the title "Configure these buttons and the order they appear in" (next to the create/album/reorder buttons on the item list page.)

Then on the button you dont want to show, click MODIFY.
* Uncheck the ACTIVE checkbox

and the button will be de-activated.
michael
@michael
03/21/15 07:25:09PM
7,832 posts

How to add a contact link to the profile?


Installation and Configuration

Form submissions from within the skin is something you'd need to do custom. The Form pages do a lot of checking that the form was sent from the site and not some hacking attempt. When you put the form in the skin, you'd have to implement that yourself.

Not so hard, just need to do know where the form was coming from and was located.
michael
@michael
03/21/15 07:21:53PM
7,832 posts

Sign In


Using Jamroom

go to: YOUR-SITE.com/user/signup and click on the 'Form Designer' button.

"Using the Form Designer"
http://www.jamroom.net/the-jamroom-network/documentation/getting-started/1275/using-the-form-designer
michael
@michael
03/21/15 07:19:46PM
7,832 posts

Extended Days to purchase modules for none paying members.


Jamroom Developers

New modules have a 30 day wait for non subscribers. That means non-subscribers have to wait 30 days after a new module has been released to purchase it.

That's all. If you're hosted with Jamroom Hosting then you get all the modules for free as soon as they come out.

Any module that is older than 30 days is available for anyone to purchase (if paid) or download for free.

This does not apply to updates, just initial releases. So any module that is older than 30 days is open for everyone.
michael
@michael
03/21/15 07:14:25PM
7,832 posts

Updates


Using Jamroom

Because if we over-wrote it it might look like this

----old----
file1
file2
file3

---new----
file1
file5
file6

If we wrote it into the same folder you would have a mix of both. But writing it into a new folder ensures that what we sent you is what is there.

It also allows you to revert back to older versions if you like.

and in some cases people add or change stuff in the modules (which you should never do, use 'events' and 'listeners' instead) and those changes would be lost if we wrote into the folder. They would then ask how to get those changes back and the answer would be "cant, there gone." :(

So its a safeguard method.

Yes you can delete any older versions if you want to.
  564