Forum Activity for @michael

michael
@michael
05/03/16 02:36:24AM
7,832 posts

google Translate?


Ning To Jamroom

What were the steps you took to get it working on Ning?
michael
@michael
05/03/16 02:32:58AM
7,832 posts

Site News text and images out of alignment


Using Jamroom

do you want the large gaps inbetween or not? which is your goal setup?
michael
@michael
05/03/16 02:27:40AM
7,832 posts

How To Change Image Gallery Order?


Using Jamroom

ah, the trials of getting things just right.... ;)

You could copy the widget_list_grid_4.tpl to your skin and use a custom version of it which also included the buttons from the item_list.tpl template to get things just how you like them if you wanted.

Just grab the button code from item_list.tpl and the bits you want from widget_list_grid_4.tpl and make your own template. :)
michael
@michael
05/03/16 02:23:27AM
7,832 posts

expanding the results for Email Delivery Log?


Using Jamroom

That cant be done. :( mailgun only gives us 'next page results' 'previous page results', so we cant jump to a page. sorry.
michael
@michael
05/02/16 05:09:09PM
7,832 posts

Removed Youtubes Not Deleted


Using Jamroom

perfect, thanks. That helped me find the issue. Its fixed in the next version of the jrYouTube module. lot of module releases tomorrow.

The issue was that the response from youtube via their API changed when they changed to V3 of their API and we needed to update the module to allow for that.
michael
@michael
04/30/16 01:47:33AM
7,832 posts

Links added in Private Notes text editor look like regular text


Using Jamroom

I'm a big fan of links looking like links too. Just checked in lucid skin and they do look like links.

For you on your site, I think the thing you want is in this file:
http://fotmd.com/skins/mdFOTMD_Feb16/css/list.css

change:
.item a {
    color: #1FA3C8;
    text-decoration: none;
}
to
.item a {
    color: #1FA3C8 !important;
    text-decoration: underline;
}
michael
@michael
04/30/16 01:37:34AM
7,832 posts

Removing Forum Spam


Using Jamroom

Check all the checkboxed in the integrity check, see if that fixes it. should do.
michael
@michael
04/30/16 01:32:44AM
7,832 posts

Removed Youtubes Not Deleted


Using Jamroom

Does your integrity check look like the screenshot?

Seams like its working for me, although there were no deletions found.

-- edit --
Do you have a youtube_id of a video you know has been deleted? ( for testing )
youtube_integrity.jpg youtube_integrity.jpg - 182KB

updated by @michael: 04/30/16 01:34:54AM
michael
@michael
04/30/16 01:26:02AM
7,832 posts

Problems When Updating The Aparna Module


Using Jamroom

Yeah that should be enough to make it work. did you also alter the:
/modules/jrCore/templates/form_editor.tpl

file to add your plugins to the active plugin list, because that would need to be done too.
(unless you have changed it via the ACP template editor, then it will persist over updates.)
michael
@michael
04/30/16 01:21:32AM
7,832 posts

How To Change Image Gallery Order?


Using Jamroom

derrickhand300:
I have images in a gallery- I want to change the order in which they are displayed
I would like them to be displayed like it is using this code
{jrCore_list module="jrGallery" search1="_profile_id = 1" order_by="_created desc" pagebreak="50" pager="true" page=$_post.p group_by="_item_id" template="widget_list_grid_4.tpl" tpl_dir="jrGallery"}
I am working in the jrGallery_item_gallery.tpl but I do not understand how this template is ordering the images?
I really thought somewhere in the template would be code similar to the above and i would only have to change the
order_by="_created desc"
Seems this template uses something different..
Any tips on how to do this?
I have attached the template code

What you have inside item_gallery.tpl is the order that is defined by the module in:
/modules/jrGallery/profile.php

in the profile_view_jrGallery_default() function. That function has decided that it will go and get all the images in an order that is set by the image order.

There are a couple of ways to stop that by making a module, but an easier way is to just use the code you have.

You know you want that code, so use that code.

Yes, all the items you want already exist in your over-ridden template jrGallery_item_gallery.tpl but they are not in the order that you want and you don't want to make a module, so make the entire contents of jrGallery_item_gallery.tpl be:
{jrCore_list module="jrGallery" search1="_profile_id = 1" order_by="_created desc" pagebreak="50" pager="true" page=$_post.p group_by="_item_id" template="widget_list_grid_4.tpl" tpl_dir="jrGallery"}
and you have what you want.
  403