
10-09-2012, 02:04 PM
|
 |
|
|
Join Date: Apr 2006
Location: Michigan
Posts: 2,310
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
I know this is old, but I have questions.
I am running 3.8.4.
I have an extra unused vbulletin lic & am throwing up an ibproarcade site for my son/extended family & their friends without really using forums exept for automaticaly sending game reports to new thread, with no posting allowed. Its in the beginning stages with default games only, I have thousands of games still to load & a many site edits to make to have it the way I want.
================================================== ======
Quote:
Originally Posted by subvertbeats
Do you know of (or can you add) a way to view the forms without forum header and footer? (ideally add an option with the definition of each form to use a given vB style)
Im trying to use the forms inside an iframe on page outside of the main forums, and this page already has its own separate header/footer,
Thanks!
|
Quote:
Originally Posted by bananalive
Find in Plugin: Easy Forms Part 1:
PHP Code:
eval('$html = "' . fetch_template('form_view') . '";');
$canviewformlist = unserialize($vbulletin->options['canviewformlist']);
if (!$canviewformlist OR !is_member_of($vbulletin->userinfo, $canviewformlist))
{
$navbits = construct_navbits(array(
'' => construct_phrase($vbphrase['view_form'], $form['title'])
));
}
else
{
$navbits = construct_navbits(array(
'misc.php?do=forms' . $vbulletin->session->vars['sessionurl_q'] => construct_phrase($vbphrase['forms']),
'' => construct_phrase($vbphrase['view_form'], $form['title'])
));
}
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('shell_blank') . '");');
Replace:
PHP Code:
eval('print_output("' . fetch_template('form_view') . '");');
|
Exactly what I needed, Thank you.
I have the report game form showing in a popup with your edits above, but I loose all site colors.
What would I need to do too get the site colors to show on form popup?
Note: Site colors are lost on all forms even normal forms not in a popup.
================================================== ============
Quote:
Originally Posted by subvertbeats
thanks bananalive!
Any idea how to achieve this per form (some forms are specifically for a site outside of the forums and other are for the forums themselves)
PS: currently using a conditional in the header, footer and navbar templates to remove them globally for misc.php.
|
Quote:
Originally Posted by bananalive
Find in Plugin: Easy Forms Part 1:
PHP Code:
eval('$html = "' . fetch_template('form_view') . '";');
$canviewformlist = unserialize($vbulletin->options['canviewformlist']);
if (!$canviewformlist OR !is_member_of($vbulletin->userinfo, $canviewformlist))
{
$navbits = construct_navbits(array(
'' => construct_phrase($vbphrase['view_form'], $form['title'])
));
}
else
{
$navbits = construct_navbits(array(
'misc.php?do=forms' . $vbulletin->session->vars['sessionurl_q'] => construct_phrase($vbphrase['forms']),
'' => construct_phrase($vbphrase['view_form'], $form['title'])
));
}
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('shell_blank') . '");');
Replace:
PHP Code:
if (!$noheader)
{
eval('$html = "' . fetch_template('form_view') . '";');
$canviewformlist = unserialize($vbulletin->options['canviewformlist']);
if (!$canviewformlist OR !is_member_of($vbulletin->userinfo, $canviewformlist))
{
$navbits = construct_navbits(array(
'' => construct_phrase($vbphrase['view_form'], $form['title'])
));
}
else
{
$navbits = construct_navbits(array(
'misc.php?do=forms' . $vbulletin->session->vars['sessionurl_q'] => construct_phrase($vbphrase['forms']),
'' => construct_phrase($vbphrase['view_form'], $form['title'])
));
}
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('shell_blank') . '");');
}
else
{
eval('print_output("' . fetch_template('form_view') . '");');
}
Form Hook: Form Start:
PHP Code:
$noheader = true;
|
How does this work on a per form basis?
Thank you
|