Forum Activity for @michael

michael
@michael
09/12/16 05:52:34PM
7,832 posts

How do I remove Follow from my Community profile?


Using Jamroom

Its found in the profile_header.tpl file in the jrNingja skin, so to alter it:
ACP -> SKINS -> NINGJA -> TEMPLATES -> profile_header.tpl -> MODIFY

The button code is on line 13 ish and looks like this:
{jrCore_module_function function="jrFollower_button" profile_id=$_profile_id title="Follow This Profile"}

So if you wrap that in a template block you can show it to just who you want to show it to.

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

I believe you have your community in its own separate quota, so maybe a quota block that checks which quota it is before showing the button.

In .tpl files you can add {debug} to figure out what variables are available on the page.

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

For you, you need to figure out which quota_id the 'community' profile is in and exclude all profiles with that quota_id from having the button. (or you could use the specific profile_id if you JUST wanted that profile only)

Suggested code:
{if $profile_quota_id != 3}
{jrCore_module_function function="jrFollower_button" profile_id=$_profile_id title="Follow This Profile"}{/if}
which reads "If the profile quota id is not 3 then show the FOLLOW button.". But you will need to make sure that it is quota id 3 that is the one you want to exclude of course. If 'community' is in quota 2, then change the 3 to a 2.
updated by @michael: 09/12/16 05:52:57PM
michael
@michael
09/12/16 04:54:46PM
7,832 posts

Ning Endangered?


Off Topic

jimmyk:.....My last post was more focused on venture capitalists and startups. Not many of those aforementioned are interested in funding / starting social networks.
startups - because there is no funding.
venture capitalists - aren't funding because they see FB as a beast that can't currently be beat... which is pretty much true and there isn't enough profit in niche sites.
That rings true to me. Where I see a systematic problem is the expectations it generates. Venture capitalists put in millions of dollars, then give away the product for unrealistic prices with the expectation that that will increase user adoption. Which it does, everyone loves something for nothing. Then they expect to be able to monetize it later on to recover their losses taken in the initial period.

In Ning's case that seams to be what is happening, they've been using Venture capital to subsidize community creation, monetizing it hasn't worked, now their trying to back out of that idea to a non-money-loosing one and that's generated the current mess.
michael
@michael
09/12/16 04:33:17AM
7,832 posts

Ning Endangered?


Off Topic

Nice insight Jimmy.

There seams like space for alternative networks to exist though. Facebook has a 'connection via people you know' setup, but for a lot of the time, I don't care that my friends aren't into what I'm into, but just want updates on what it is I'm interested in even if it doesn't come from someone I know.
michael
@michael
09/12/16 01:42:43AM
7,832 posts

How do I get Site Builder to display Forum topics, not forum posts?


Using Jamroom

Try this one then

* LIST MODULE: Forum
* SEARCH CONDITION 1: forum_post_count | is greater than | 0
* ORDER BY: forum_updated | descending
michael
@michael
09/12/16 01:22:17AM
7,832 posts

Two-word tags are displaying incorrectly in Tag Cloud


Using Jamroom

There is a new version 1.4.0 in the marketplace now, update from your ACP to get the most recent version.
ACP -> MODULES -> CORE -> MARKETPLACE -> SYSTEM UPDATE
michael
@michael
09/12/16 01:18:36AM
7,832 posts

Two-word tags are displaying incorrectly in Tag Cloud


Using Jamroom

You're doing nothing wrong. Its a bug in the current version of the tag module that crept in when it was adjusted to make it work with foreign language characters.

Then next version of the TAGS module will fix it. We'll get that out shortly.
michael
@michael
09/12/16 12:32:55AM
7,832 posts

Is it possible in Site Builder how do I show the latest images posted OR commented on?


Using Jamroom

The way the {jrCore_list} function works is it retrieves information stored in the modules datastore. One limit it has is that it needs you to select which datastore to retrieve the information from.

Images are stored in the Gallery datastore, while comments are stored in the Comments datastore. This makes it difficult to combine them into a single search.

From memory, I can remember setting up a system which listened for new comments being added to a datastore item and updated the _updated key for that item.

That again as an example to illustrate the concept: When a new comment gets added to a gallery image item, that gallery image item has its _updated time updated.

So its possible to do, but suspect it would require a module to behave like that. Easier would be to have 2 lists. "Latest images" and "Latest Comments"

Another option is to look at the "Item List (combined)" Site Builder widget provided by the "Seamless" module, then order by _updated on the Gallery and Comment modules. That would provide a list ordered by updated time, but would show a gallery image when it was a gallery, or a comment list item when it was a comment.
michael
@michael
09/12/16 12:23:10AM
7,832 posts

Tag cloud widget is only displaying 9 tags even though the limit is 30


Using Jamroom

Try setting it to 1 to see what happens. It should limit it to only show 1 tag. If it doesn't my suspicions go to the cache to start with.

Try
ACP -> MODULES -> CORE -> SYSTEM CORE -> TOOLS -> RESET CACHE

to see if that makes a difference.
michael
@michael
09/12/16 12:20:48AM
7,832 posts

How do I get Site Builder to display Forum topics, not forum posts?


Using Jamroom

Each Forum has a 'forum_group_id' that is common to all the posts in that forum. You can use the "Group By " List option for the Item LIst widget that you create to group by that.

So:
* Add a widget that is an "Item List" widget type
* LIST MODUE: Forum
* GROUP BY: forum_group_id

That should get you what your after. If you wanted to do it in with a "Template Code" widget, that would work too, the code for that would be:
{jrCore_list module="jrForum" limit="5" group_by="forum_group_id"}

If you want to, add the "Order By" _updated to get the newest ones to the top.
michael
@michael
09/11/16 09:43:45PM
7,832 posts

Stymied by Site Builder


Using Jamroom

Much better idea to throw each question into its own thread with a descriptive title about the goal otherwise things get so long and convoluted that nobody reads the thread and even those following get confused.

Topics I can see in your question:
* "How do I get Site Builder to just display Forum topics, not forum posts"
* "In Site Builder, how do I show the latest images posted OR commented on"
* "Tag cloud widget is only displaying 9 tags even though the limit is 30"

I love it when I can click the 'solved' button, this thread is past being solvable.
  356