Forum Activity for @michael

michael
@michael
07/28/16 08:51:08PM
7,832 posts

Getting errors when trying to do system updates


Using Jamroom

Maybe try downloading the b3 core from the marketplace on jamroom.net and uploading it via FTP

Marketplace: System Core 5.4.0 beta 3
https://www.jamroom.net/the-jamroom-network/networkmarket/340/system-core-540-beta-3

Marketplace: Marketplace - Beta 1.4.0b1
https://www.jamroom.net/the-jamroom-network/networkmarket/341/marketplace-beta-140b1
michael
@michael
07/28/16 07:56:27PM
7,832 posts

If statement from an array


Jamroom Developers

I would recommend against changing the $_item.

This part is wrong:
{$_item._item_id = $parent_id}
You're looping over all the arrays inside $_item, so if you want to set the array of the particular one that your working on to a different value, you have to identify it.

Each item in $_items has a key, so you need to use that to target the current subject of the loop.
{foreach $_items as $key => $item}   
   {$_items[$key]['_item_id'] = $parent_id}

This is not normally code that goes into templates, it feels more like it should be a module altering the $_items array before it gets to here.

Docs: "Events and Listeners"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/1011/events-and-listeners
michael
@michael
07/28/16 05:20:44PM
7,832 posts

How to undo Update Changes?


Using Jamroom

For the padding around the images, click on the image, then click on the left align, center align, right align buttons to add/remove padding alignment.
screenshot_tinymce_alignment.png screenshot_tinymce_alignment.png - 8KB
michael
@michael
07/28/16 04:52:25PM
7,832 posts

If statement from an array


Jamroom Developers

{$a_flag = false}
{if(isset($_items) && is_array($_items)}
  {foreach $_items as $item}
     {if $item.comment_parent_id == "something"}
        {$a_flag = true}
     {/if}
  {/foreach}
{/if}

{if $a_flag}
  // that flag was found in the array so do something......
{/if}
michael
@michael
07/28/16 04:22:00PM
7,832 posts

What are YOUR first steps in setting up a Jamroom site?


Using Jamroom

This is frekkin' awesome! Thank you curtis and strumelia. :)

Skin alteration is something I wasn't sure about how to get to explaining because "is it a developer thing?" but I can see how it needs to be explained now. :)
michael
@michael
07/27/16 11:12:05PM
7,832 posts

dnsquery.org insecure connection



I normally use:
whois.sc/jamroom.net
michael
@michael
07/27/16 06:08:29PM
7,832 posts

What are YOUR first steps in setting up a Jamroom site?


Using Jamroom

Thanks very much, very helpful :)

I'm writing the "Getting Started" docs

Docs: Getting Started
https://www.jamroom.net/the-jamroom-network/documentation/getting-started

and realize the way I do it, I jump around a lot, so its probably not the recommended method. I'll get your ways added in too.
michael
@michael
07/27/16 06:04:15PM
7,832 posts

Next Item


Jamroom Developers

The gallery module does it, look at an item_detail page on the gallery module. It does it the way brian suggested with jrCore_list calls.
michael
@michael
07/27/16 06:02:25PM
7,832 posts

FoxyCart Transaction Method


Suggestions

There is not in jamroom. The whole reason for using foxycart is to have a single location that can handle multiple payment processors and not have to worry about where the payment came from, just that it was made.

The info is probably available in the foxycart admin panel though.
  374