Forum Activity for @michael

michael
@michael
04/15/15 03:17:46AM
7,832 posts

Chart error


Installation and Configuration

The docs for the "Advanced Chart" module is here:

"Advanced Charts"
https://www.jamroom.net/the-jamroom-network/documentation/modules/274/jrcharts
updated by @michael: 10/25/15 02:16:33AM
michael
@michael
04/15/15 02:39:47AM
7,832 posts

graph support docs


Using Jamroom

Are you able to get it in any other format than a .txt file? because its hard to re-format an un-formatted document.

If they provide the data as a .json structure, then you would need a module to read it, then you could output it however you liked.

The key is to save the data to your datastore, so you have historic data too. an iframe is gone when they update their site.

--edit--
Perhaps even use aparna and the Form Designer to create that form, then enter it manually yourself every thursday. Nicer to not have to manually enter it, but there's not a lot of data there.
updated by @michael: 04/15/15 02:41:43AM
michael
@michael
04/14/15 02:05:32AM
7,832 posts

Sharethis not graving audio images to facebook timeline


Design and Skin Customization

Check to see if you have the URL shortener on for the share this module:
ACP -> USERS -> SHARETHIS -> GLOBAL CONFIG -> create short urls

If it is on, turn it off and see if the issue still happens.

Need to narrow down whether its a facebook change, a sharethis change or a jamroom change thats the cause of the issue.
michael
@michael
04/14/15 02:01:08AM
7,832 posts

possible seemless order by created bug?


Using Jamroom

dreadlockssite.com/gallery is controlled by the module, so its structure comes from:
/modules/jrGallery/templates/index.tpl

To over-ride that copy it to
/skins/(YOUR SKIN)/jrGallery_index.tpl

Then adjust the {jrCore_list ....} to order how you want it to order:

"{jrCore_list}"
http://www.jamroom.net/the-jamroom-network/documentation/development/89/jrcore-list

dreadlockssite.com/newest-photos looks like it is a template in your skin because i dont recognise the module name, so look for:
/skins/(YOUR SKIN)/newest-photos.tpl

and adjust the {jrCore_list} to whatever order your after.
michael
@michael
04/14/15 01:56:28AM
7,832 posts

Tag Cloud - Module specific


Design and Skin Customization

perhaps:
{jrTags_cloud search="profile_quota_id in 1,2,3" height=300}

to search for any tags whos profile_quota_id is either 1 or 2 or 3, but im not sure if thats what your after or not.
michael
@michael
04/09/15 02:08:18AM
7,832 posts

Reclaim Page URLS


Using Jamroom

did you spell it right? because that shouldn't happen. Check that there aren't any profiles called that name, and that there are no template over-rides in the TEMPLATE section of the ACP.
michael
@michael
04/08/15 02:29:46AM
7,832 posts

How To Move Groups From Profile Pages to Stand Alone Pages


Design and Skin Customization

Groups need to belong to a profile. They are not designed to work without a profile. You can use the
{jrProfile_disable_header}
{jrProfile_disable_sidebar}
functions in the groups item_detail.tpl page to disable the profile surround, but they need to be on a profile so the save functionalities work correctly.

--edit--
suggest you make a profile called 'old-school-oilfield' and put the groups in there. Put the profile in its own quota and use the jrExcludeProfile to stop it turning up in lists of stuff:

Forum thread about: "Profile excludes"
https://www.jamroom.net/the-jamroom-network/forum/using-jamroom/27848/bug-profile-excludes

Module Page: "Profile Exclude"
https://www.jamroom.net/the-jamroom-network/networkmarket/243/profile-exclude


updated by @michael: 04/08/15 02:33:11AM
michael
@michael
04/08/15 02:25:17AM
7,832 posts

Adding an RSS feed from my own site into an activity page on my own site


Design and Skin Customization

If you're using the Site Builder system, then change the steps to:
* open the CODE tab of the widget
* past in:
{jrFeed_list name="researchcooperative"}
* save, and drag it to where you want it.
michael
@michael
04/08/15 02:19:44AM
7,832 posts

Adding an RSS feed from my own site into an activity page on my own site


Design and Skin Customization

To get:
http://researchcooperative.org/activity/log/list?fmt=rss

coming out in a jamroom template:
* ACP -> LISTING -> FEED READER -> CREATE UPDATE
Feed Name: researchcooperative
Feed URL: http://researchcooperative.org/activity/log/list?fmt=rss

Then put:
{jrFeed_list name="researchcooperative"}
in whichever template you want to put it and the feed will show.

eg, I created a template at:
my-site.com/junk (/skins/(MY SKIN)/junk.tpl) and put this code in it:
{jrCore_include template="header.tpl"}

<div class="container">

    <div class="row">

        <div class="col3">
            {jrFeed_list name="researchcooperative"}
        </div>
    </div>
</div>

{jrCore_include template="footer.tpl"}

The result was:
- 98KB

updated by @michael: 04/08/15 02:19:58AM
  557