Forum Activity for @michael

michael
@michael
10/04/17 12:10:22AM
7,823 posts

How to limit size/number of profile timeline images?


Using Jamroom

Strumelia:.....
BTW, not sure if it has any bearing on this but....As master admin, ...... I also like the Admins to be able to see and use the "Add to Timeline" checkbox when we post items.....
Not an option sorry. Admin stuff done to a profile doesn't get put to the timeline by design. ( there are always ways around it if you MUST have it, but the reasoning is posting something as someone else was considered undesirable.)
michael
@michael
10/04/17 12:05:34AM
7,823 posts

How to limit size/number of profile timeline images?


Using Jamroom

For problem #1 go to
ACP -> MODULES -> PROFILES -> TIMELINE -> TEMPLATES -> create_entry_form.tpl -> MODIFY

And replace the entire contents with something like
{* gone, not using this.  dont want timeline written comments *}

save and activate. that will get rid of the comment area but leave the timeline active
michael
@michael
10/03/17 10:57:25PM
7,823 posts

Follow Me Skin audio player type


Design and Skin Customization

sure you can do whatever you want. The code I gave you was because you said the embed player was big, so I thought you only wanted to change the embed player and leave the other players as they were. If you want to change all players, you can do that too.

You can do anything you like, its your site :)
michael
@michael
10/03/17 10:54:43PM
7,823 posts

YouTube Image display


Installation and Configuration

The reason its not showing is the loop variable is $row not $item. We normally use $item but for some reason this time $row is the variable, so change
<img src="{$item.youtube_artwork_url}" alt="{$item.youtube_title|jrCore_entity_string}"
to
<img src="{$row.youtube_artwork_url}" alt="{$row.youtube_title|jrCore_entity_string}"

then reset the caches and you'll be good to go.
michael
@michael
10/03/17 10:40:46PM
7,823 posts

Odd Problems


Jamroom Developers

good to hear. weird problem. hard to diagnose.
michael
@michael
10/03/17 10:14:06PM
7,823 posts

Odd Problems


Jamroom Developers

Quote: ....So does anyone have any ideas on what might cause $_data to be populated differently? To sometimes not include the threading fields stored in the database? .....
First guess would be caching. If the datastore contains
....
comment_thread_id] => 548368
    [comment_parent_id] => 548440
    [comment_thread_level] => 2
...
when you're looking at it, but not when your modules run during the event listener phase, my first guess would be caching, perhaps ........ scratch that, my first guess is firing order. If those 3 values are added via a listener, then perhaps your modules listener is firing before the listener that adds those values fires.

Perhaps try adding a lower priority to your module in its _meta() function in include.php
        'priority'    => 50, // LOW load priority (we want other listeners to run first)

Or perhaps try on the 'db_create_item_exit' listener which fires after 'db_create_item' does.
michael
@michael
10/03/17 09:55:12PM
7,823 posts

removing home from index page title


Installation and Configuration

the url philadelphiarainbowfamily.org isnt loading for me.

suspect what google is showing is for on that domain. just a guess though, what URL are you meaning with "but then google shows dreadlocks natural dreads | philadelphiarainbowfamily.org"?
michael
@michael
10/03/17 09:47:03PM
7,823 posts

Site Builder Problem


Design and Skin Customization

first guess is some CSS interfering with the css for that section. Have you added any padding or margin CSS lately?

What I would do to figure out the problem is open firebug and see where the boundaries of the previous two sections are at to try to figure out what is pushing the third section of the right of the page. You'll probably find the third section below the other two at a guess.
michael
@michael
10/03/17 09:44:23PM
7,823 posts

Google not finding site after going from http to https


Using Jamroom

There will be a button to choose between http and https. probably in the google analytics settings area.
michael
@michael
09/29/17 09:42:38PM
7,823 posts

parameter "icon" is missing


Jamroom Developers

I suggest moving your changes to one of the methods outlined
https://www.jamroom.net/the-jamroom-network/forum/jamroom-developers/54331/site-backup

Then get the updates. Its probably fixed in the updates.
  180