solved where to find the newest Ninja changes please...?

Strumelia
Strumelia
@strumelia
5 years ago
3,602 posts
"Version 2.0.12
- Change: Updated to work with the latest Follower module"

Please, where would I find this change in Ninja, so i can apply it to my custom skin (based on Ninja)?


--
...just another satisfied Jamroom customer.
Migrated from Ning to Jamroom June 2015

updated by @strumelia: 08/21/19 02:40:17PM
paul
@paul
5 years ago
4,325 posts
Its in the profile_sidebar.tpl template.
Line 74 -
{jrCore_list module="jrFollower" search1="follow_profile_id = `$_profile_id`" search2="follow_active = 1" order_by="_created desc" limit="25" assign="followers"}
has been removed and replaced by
            {capture name="row_template" assign="followers_template"}
            {literal}
                {if isset($_items)}
                {foreach from=$_items item="item"}
                <a href="{$jamroom_url}/{$item.profile_url}">{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="xsmall" crop="auto" class="img_shadow" alt="{$item.user_name}" title="{$item.user_name}" width="40" height="40" style="padding:2px;margin-bottom:4px;"}</a>
                {/foreach}
                {/if}
            {/literal}
            {/capture}
            {jrCore_list module="jrUser" follow_profile_id=$_profile_id  follow_active=1 order_by="_created desc" limit="25" template=$followers_template assign="followers"}

hth


--
Paul Asher - JR Developer and System Import Specialist
Strumelia
Strumelia
@strumelia
5 years ago
3,602 posts
Thanks Paul, I did all that.
But with the new updates and changes, I seem to have lost the display of followers that is supposed to show up under my "Followers" TAB on the profile pages, should be showing up here on this page under the Followers TAB on the profile page:
https://pennywhistleclub.com/strumelia/follow
(that's on the pennywhistle site, where I've applied all updates). (Note that the followers tiny pix are showing correctly in the profile sidebar, with the updates)
This is the same for both updated Ninja and my updated custom (ninja based) skin.... on that whistle site.

On my main FOTMD site (where I have not applied any of the latest updates yet, have made no updates or changes) it shows correctly, as it should on that page, see here:
https://fotmd.com/strumelia/follow


--
...just another satisfied Jamroom customer.
Migrated from Ning to Jamroom June 2015

updated by @strumelia: 05/20/19 01:03:26PM
paul
@paul
5 years ago
4,325 posts
You have a modified jrFollower module item_index.tpl template on the penny whistle site. It is this template that controls the followers view.
The latest Follower module uses an updated item_index.tpl template to work properly.
I've disabled that modified template and followers are now showing correctly.
You'll need to work out what templates mods you did and if necessary reapply them to the new template.
hth


--
Paul Asher - JR Developer and System Import Specialist
Strumelia
Strumelia
@strumelia
5 years ago
3,602 posts
Ok thanks Paul. I looked into that tpl and found there wasn't much of the customized stuff in my Follower module item_index template that I really needed anymore. I think most of it was stuff I felt needed tweaking early on, but the newer Follow defaults seem to echo all those functions but just with different coding. So, the new template there works well, I kept almost none of my custom adjustments in it.
All seems good now, thank you sir ! :D


--
...just another satisfied Jamroom customer.
Migrated from Ning to Jamroom June 2015

updated by @strumelia: 05/21/19 02:09:11PM