Forum Activity for @michael

michael
@michael
02/16/18 07:17:18PM
7,826 posts

Profile datastore from purchase


Jamroom Developers

Sounds like you're wanting to make a module, nice one :)

Each module can have its own datastore, but only one datastore per module. (you can however have as many regular MySql tables as you need to support your module)

Developer docs are here:

Docs: Module Developers Guide
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide

Creating a datastore for the module is as easy as adding a line to its schema.php file. Take a look at other modules with schema.php files for reference.

"When a user purchases a specific item a function needs to happen to show exclusive items because they made this purchase. "

Thats the "Events and Listeners" system, add a listener to your module to an appropriate event to check whether the event meets all your required criteria.
michael
@michael
02/16/18 07:10:48PM
7,826 posts

How to you get comments to work on the wall


Design and Skin Customization

@annush if you have suggestions for improvements in the way things function now, add them to the suggestions forum category:

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

Otherwise if we just think its a request for how to customize your own site it will probably be treated as that and ignored once solved.

Thanks for helping make jamroom better :)
michael
@michael
02/15/18 07:57:57PM
7,826 posts

symbols in gallery/image name cause weird issues (urls)


Using Jamroom

Weird characters do not show up for me in a similar location on a skin that uses the default templates.

My biggest suspect is still a template override by your skin. Does the same issue still exist on a default jrElastic2 ?
characters.jpg characters.jpg - 268KB
michael
@michael
02/15/18 07:12:19PM
7,826 posts

symbols in gallery/image name cause weird issues (urls)


Using Jamroom

check your database has a jr_jrcore_emoji table.

those emoji should all be being replaced by the values in that table. They were put there when the items were entered into the system.


--edit--
Those emoji should not come out in the URL, use the _url item for url titles
gallery_title_url: starslingr
or escape with |jrCore_url_string eg:
{$item.video_title|jrCore_url_string}

updated by @michael: 02/15/18 07:14:55PM
michael
@michael
02/15/18 12:03:55PM
7,826 posts

Disable profile header for forum


Design and Skin Customization

sekeri:...I think hiding profile header and sidebar for a specific link or quota should be customizable.
It is customizable, its just a template edit and a flag.

You should be able to accomplish the same thing with template edits. The function exists so that modules dont need to ask you to make skin adjustments in order for them to work.

open another thread about what you're trying to accomplish and we can talk about how to get there.
michael
@michael
02/13/18 08:29:39PM
7,826 posts

Helping my members see their 'pending' Followers


Using Jamroom

What is your recommendation for understandable wording please? :)
michael
@michael
02/13/18 07:20:31PM
7,826 posts

Helping my members see their 'pending' Followers


Using Jamroom

im saying that the state of the checkbox is what ALL users profiles will be changed to, not what all users profiles are currently set at.

So if you checked it, then ran the tool, then all profiles would be checked.

If profileA then changed theirs to unchecked, most of your users would be checked, but some would be unchecked. There is no way to represent that "some users are one state while other users are another state" just by viewing a single checkbox.

If you want to make all users checked, check the checkbox and run the tool. If you want to make them unchecked, uncheck the checkbox and run the tool.

What you cant do is look at the checkbox and ascertain any knowledge about the state the profiles are in.
michael
@michael
02/13/18 06:46:12PM
7,826 posts

Make something show up only on an item for specific quota


Jamroom Developers

put code into [c o d e]the code goes in here[/ c o d e] blocks.

{* this is a comment, it will not show. *}
michael
@michael
02/13/18 06:44:33PM
7,826 posts

Groups Sidebar Question


Using Jamroom

You can have pretty much anything you want, just need to figure out what you want, then request it.

The main function for requesting stuff from a .tpl file is {jrCore_list}

Docs: "{jrCore_list}"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/89/jrcore-list

So first you would figure out where you want it to come out by putting:
WHERE DOES THIS COME OUT???????
into various templates until you figure out which template is the one you want. Then move it around that template until you get it into the location you want it.

Once you know the point, then you can use {jrCore_list} to get a list of whatever you want. Either by using a static number or by using one of the variables available to you in the template.
michael
@michael
02/13/18 06:39:28PM
7,826 posts

Helping my members see their 'pending' Followers


Using Jamroom

The box is not an indicator of state, its just a checkbox.

There is the form session system that tries to remember the contents of forms while they are being filled out, it could be remembering the state of the checkbox.

It also could be the default state of the checkbox.

Either way, the state the checkbox on the TOOL is set at is irrelevant, (the one on the GLOBAL CONFIG is an indicator, its important.) as that state is only used when the tool is run.
  149