Yeah I had a go at including the java in the header.
Both joomhacks and Orstio's don't have it...
Given it's cookie related it might work once included.
If header include is not in the setup
Inline mod works....So I can only beleive this is the medicine it needs>
Problem is I can't get it to work..
This is the SMF com_smf script
// Guests don't have quickmod options!!
if ($context['user']['is_guest'])
$mainframe->addCustomHeadTag( ' document.cookie = "quickmodSubmit=" + (mode ? 1 : 0);');
else
$mainframe->addCustomHeadTag(' smf_setThemeOption("display_quick_mod", mode ? 1 : 0, null, "'. $context['session_id']. '");');
$mainframe->addCustomHeadTag('
document.getElementById("display_quick_mod").src = smf_images_url + (mode ? "/delete_selected.gif");
document.getElementById("quickmodSubmit_ic").style.display = mode ? "none" : "";
document.getElementById("quickmodSubmitIC").style.display = mode ? "none" : "";
current_header_ic = mode;
}
// ]]></script>');
This is the java include from SMF
if ($context['can_remove_post'] && !empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1)
$mod_buttons[] = array('text' => 'quickmod_delete_selected', 'image' => 'delete_selected.gif', 'lang' => true, 'custom' => 'onclick="return confirm(\'' . $txt['quickmod_confirm'] . '\');" id="quickmodSubmit"', 'url' => 'javascript:document.quickModForm.submit();');
echo '
<table cellpadding="0" cellspacing="0" border="0" style="margin-left: 1ex;">
<tr>
', template_button_strip($mod_buttons, 'bottom') , '
</tr>
</table>';
if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && $context['can_remove_post'])
echo '
<input type="hidden" name="sc" value="', $context['session_id'], '" />
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
document.getElementById("quickmodSubmit").style.display = "none";
// ]]></script>';