Hi Brian - after spending a several hours on this, I found a fix and this is what I found along the way.
1) What you say should exist for this to work is already there, in the profile_index.tpl
<div class="section"> {jrCore_include module="jrAction" template="item_index.tpl"}
</div>
2) I found profile_item_index.tpl and renamed it in the c-panel like you suggested, and set caches, even integrity check, but if it did start picking up the modules/jrAction/item_index.tpl file, it didn't fix it.
<div class="section">{$profile_item_index_content}<br clear="all" /></div>
3) The piece of javacode I indicated before, seemed to have something to do with action submit. However, I did't know how it got loaded or called into play. I also didn't find it in another skin I checked. So I took a chance and deleted this whole section - and that fixed the problem lol
$(function(){
$(".rslides").responsiveSlides({
auto: true,
speed: 2000,
timeout: 8000
});
$('.feature_buttons #sdot_1').removeClass('iskin_btn');
$('.feature_buttons #sdot_1').addClass('iskin_hilite');
$('#action_submit').attr('disabled',true);
$('#action_update').keyup(function(){
if ( $('#action_update').val().length > 0 && $('#action_update').val().length < 141) {
$('#action_submit').attr('disabled',false);
}
else {
$('#action_submit').attr('disabled',true);
}
});
});
--
Ken Rich
indiegospel.net