Forum Activity for @michael

michael
@michael
06/03/15 01:28:56AM
7,832 posts

'Normal' users cannot upload photos in 'Embed Local Media'


Using Jamroom

just added it to a comment here:
your-site/iamtimbo/blog/9/test

--edit--
and here:
your-site/iamtimbo/gallery/347/newcastle-street-london-1907
updated by @michael: 06/03/15 01:30:30AM
michael
@michael
06/03/15 12:59:40AM
7,832 posts

'Normal' users cannot upload photos in 'Embed Local Media'


Using Jamroom

working for me:
your-site/iamtimbo/blog/9/test
michael
@michael
06/03/15 12:55:36AM
7,832 posts

'Normal' users cannot upload photos in 'Embed Local Media'


Using Jamroom

where did you send it, haven't got it yet.

--edit--
ignore that, got it. thanks.
updated by @michael: 06/03/15 12:56:01AM
michael
@michael
06/03/15 12:34:33AM
7,832 posts

Configuring the Homepage with SiteBuilder


Using Jamroom

My preferred way is to put it in the skin, because I like working with the filesystem more than control panel settings.

I'd rather use the search functionality of my IDE than go clicking around in a web browser. Whatever works for you is the right way. :)
michael
@michael
06/03/15 12:31:52AM
7,832 posts

Reassigning action_title in Activity Feed


Using Jamroom

and there in lies the challenge/difficulty. A rating is not going to have an 'image_title' because its not an image. The activity stream has lots of different types of things in it.

What your after is the 'image_title' but when are you after it. That's what you need to create a structure to explain.

You can output anything you like anywhere you like if you can explain what it is you want. (and have a place to start.)

Quote: ....and my 'target' is comment_item_title.
Great, you have a place to start. So from there we need to explain it.

What I think you want is:
* In the action timeline on a users profile, if there was a comment left on an image in a gallery, then instead of showing the user image of the user who wrote the comment, show the gallery image.

The steps to locate that are:
* figure out what template controls the list items for the actions. in this case its:
/modules/jrActivity/templates/item_list.tpl
* locate where you want to output whatever.
-- type STUFF, OTHER STUFF, ELEPHANTS, A DIFFERENNT MARKER and refresh the page until you see one of the markers your after that goes where you want it to go. In this case its:
LINE 115 ish that currently reads:
    {jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="icon" crop="auto" alt=$item.user_name class="action_item_user_img img_shadow img_scale"}

use the debug here to figure out what variables would give you what your actually after, in this case its:
{if $item.action_item.comment_module == "jrGallery"}
    {jrCore_module_function function="jrImage_display" module="jrGallery" type="gallery_image" item_id=$item.action_item.comment_item_id size="icon" crop="auto" alt=$item.action_item.comment_text  class="action_item_user_img img_shadow img_scale"}{else}
    {jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="icon" crop="auto" alt=$item.user_name class="action_item_user_img img_shadow img_scale"}{/if}
* and make sure you leave the part that is not related to what you want to change un-effected so other stuff still works normally
michael
@michael
06/03/15 12:11:04AM
7,832 posts

How do we resize the image slideshow in the new site builder?


Using Jamroom

It would be achievable via templates, but there is no sitebuilder system to do it.

The closest site builder integration would be a {jrCore_list} call in the "Template Code" section.
michael
@michael
06/03/15 12:08:50AM
7,832 posts

Activity Timline


Design and Skin Customization

What are you suggesting? Right now there is no way to add an image to the activity timeline without using the editor as the editor provides the interface for modules to tap into. (specifically jrEmbed exists in the editor.)
michael
@michael
06/03/15 12:06:15AM
7,832 posts

'Normal' users cannot upload photos in 'Embed Local Media'


Using Jamroom

got a normal user login that I could login and see please?
michael
@michael
06/03/15 12:05:34AM
7,832 posts

Configuring the Homepage with SiteBuilder


Using Jamroom

Either:
1.) put the changes in the .css file for your skin.

OR
2.) use the STYLE tab of the module or skin
ACP -> SKINS -> YOUR SKIN -> STYLE -> (whatever style your changing)
ACP -> MODULES -> SOME MODULE -> STYLE -> (whatever style your changing)
michael
@michael
06/02/15 11:59:57PM
7,832 posts

Site Builder Menu on Mobile Device


Using Jamroom

you can add it to the mobile site header menu by putting:
{jrSiteBuilder_menu}
inside the existing menu. Probably header_menu_mobile.tpl

Which skin are you using?
  532