Forum Activity for @michael

michael
@michael
09/15/16 10:48:58PM
7,826 posts

PayPal Buy It Now


Installation and Configuration

The "buy it now price" will only show on the create form if that profile has entered their "paypal email address" on their /profile/settings page.

Its that email address where the money will be sent to. Check that is set.
michael
@michael
09/15/16 10:15:47PM
7,826 posts

events setting time options for GMT 0 (NOT London), predicament international RSVPers


Suggestions

Could you rephrase this in a way that allows me to setup a test environment to understand if there is a problem with the system.

As Im reading it: "Our server is in london, the timezone is set to londons timezone, but when I add an event, that event is displaying 1 hour later than the actual start time of the event."

Is that close?
michael
@michael
09/15/16 10:09:50PM
7,826 posts

Auto-follow ALL Profiles OR release lists from follow condition?


Using Jamroom

Sounds like you want an item list of all activity on the site listed by newest first.

When you follow someone you see what they posted in their timeline on your profile. As I understand it you want a list of what everyone posts in any profile anywhere.

I know you've used Site Builder before, so lets stick with that system.

Add an "Item List" widget to a new page, maybe call the page /activity it will be a page that shows anybodys updates anywhere on any timeline to anyone regardless of whether you are following them or not.

Widget: Item List
List Module: timeline
Order By: _created | descending

That should do it.

Then if some of your members decide that there is too much stuff in the main activity timeline and they want to keep track of a few specific members, they can follow them, and just get THEIR updates in their profile timeline.

One timeline location where everyone sees everything, and another that may not be used, if they want to follow specific people.
michael
@michael
09/15/16 09:58:17PM
7,826 posts

Still struggling with Search option in the JamRoom Forum


Suggestions

You want to add tags to pages like this one here? What tags would you add to this page?

Guess we could turn that on for everyone, see how it goes.

Tags are here on this page, just not visible to everyone.
michael
@michael
09/15/16 09:46:41PM
7,826 posts

How do I remove items so they don't show in a profile "latest activity"


Using Jamroom

analogy, is jamroom the leggo of community building, or is it a leggo technic set.

--edit--
If its the technic set, then whats the goal.
lego.jpg lego.jpg - 108KB

updated by @michael: 09/15/16 09:49:10PM
michael
@michael
09/15/16 09:40:59PM
7,826 posts

How do I remove items so they don't show in a profile "latest activity"


Using Jamroom

Hardest part would be finding a system to record and compare the desired data. Like what is different between your site and elise site strumelia. What is the same. What did you both decide to do. Did you both decide to create the same number of quotas? Stuff like that.
michael
@michael
09/15/16 09:21:30PM
7,826 posts

Adding right side column to all pages


Design and Skin Customization

For that specific page your-site.com/group the controling template is found at:
/modules/jrGroups/templates/index.tpl

Docs: "Altering a Modules template"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/1051/altering-a-modules-template

It looks like this:
{jrCore_include template="header.tpl"}

<div class="block">

    <div class="title">
        {jrSearch_module_form fields="group_title,group_description"}
        <h1>{jrCore_lang module="jrGroup" id=1 default="Groups"}</h1>
    </div>

    <div class="block_content">
        {jrCore_list module="jrGroup" order_by="_item_id numerical_desc" pagebreak=10 page=$_post.p pager=true}
    </div>

</div>

{jrCore_include template="footer.tpl"}

You could wrap the inner of that in a row.
{jrCore_include template="header.tpl"}

<div class="row">
 <div class="col9">


<div class="block">

    <div class="title">
        {jrSearch_module_form fields="group_title,group_description"}
        <h1>{jrCore_lang module="jrGroup" id=1 default="Groups"}</h1>
    </div>

    <div class="block_content">
        {jrCore_list module="jrGroup" order_by="_item_id numerical_desc" pagebreak=10 page=$_post.p pager=true}
    </div>

</div>

 </div>

 <div class="col3">
   PUT YOUR ADVERT IN HERE
  </div>
</div>


{jrCore_include template="footer.tpl"}
michael
@michael
09/15/16 09:16:33PM
7,826 posts

Adding right side column to all pages


Design and Skin Customization

The colXX is a 12 column structure, col12 is full width of the page, col6 is half width of the page.

so:
<div class="row">
  <div class="col6">this is half the row </div>
  <div class="col6">this is the other half the row </div>
</div>

or 3 rows of 4
<div class="row">
  <div class="col4">first one third</div>
  <div class="col4">second one third</div>
  <div class="col4">third one third</div>
</div>

You CAN have nested rows:
<div class="row">
  <div class="col6">
    // going to add another row in here
 </div>
  <div class="col6">this is the other half the row </div>
</div>
so
<div class="row">
  <div class="col6">
      <div class="row">
        <div class="col4">first one third</div>
        <div class="col4">second one third</div>
        <div class="col4">third one third</div>
     </div>
 </div>
  <div class="col6">this is the other half the row </div>
</div>

So what I would do is in these templates in the ningja skin, the main content body is defined:
profile_item_detail.tpl
profile_item_index.tpl
profile_item_list.tpl

They set the main body width to col9. If you reduced that to col6 then you would have space for a col3 on the right hand side. You could add the advert there.
  350