View Single Post
  #1624  
Old 10-09-2012, 02:04 PM
blind-eddie's Avatar
blind-eddie blind-eddie is offline
 
Join Date: Apr 2006
Location: Michigan
Posts: 2,310
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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 View Post
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 View Post
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 View Post
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 View Post
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
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01564 seconds
  • Memory Usage 1,841KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete