Results 1 to 9 of 9

vbseo front page

This is a discussion on vbseo front page within the Template Modifications forums, part of the vBulletin SEO Discussion category; Can anyone tell me what vbSEO is using for their front page? Custom? or a particular vB Mod? Thank you...

  1. #1
    Member
    Real Name
    Larry Eitel
    Join Date
    Jun 2006
    Posts
    34
    Liked
    0 times

    vbseo front page

    Can anyone tell me what vbSEO is using for their front page? Custom? or a particular vB Mod?
    Thank you

  2. #2
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    it is vb advanced

  3. #3
    Member
    Real Name
    Larry Eitel
    Join Date
    Jun 2006
    Posts
    34
    Liked
    0 times
    Are there any details as to how vbadvanced is integrated with vbSEO style?
    Thank you

  4. #4
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    AFAIK, it's not. you will have to update the vba templates yourself.


    IMO, stay away from it. I hate vba and everything about 'portals'. It's nice software, don't get me wrong... it just don't offer anything you can't easily do on your own.



    Ie,

    if you want a homepage, make a home page

    in vb options, change forum home from 'index' to 'forum'
    re-name index.php to forum.php in your filesystem.
    create a CRR in vbseo, (same thing vbseo does)
    Code:
     '^forum\.php' => 'forum/'
    create a new blank file, index.php

    place the following code into it:

    Code:
    <?php
    
    // ####################### SET PHP ENVIRONMENT ###########################
    error_reporting(E_ALL & ~E_NOTICE);
    
    // #################### DEFINE IMPORTANT CONSTANTS #######################
    define('NO_REGISTER_GLOBALS', 1);
    define('THIS_SCRIPT', 'homepage'); // change this depending on your filename
    define('CSRF_PROTECTION', true);
    
    // ################### PRE-CACHE TEMPLATES AND DATA ######################
    // get special phrase groups
    $phrasegroups = array(
    
    );
    
    // get special data templates from the datastore
    $specialtemplates = array(
        
    );
    
    // pre-cache templates used by all actions
    $globaltemplates = array(
        'about',
    );
    
    // pre-cache templates used by specific actions
    $actiontemplates = array(
    
    );
    
    // ######################### REQUIRE BACK-END ############################
    require_once('./global.php');
    
    // #######################################################################
    // ######################## START MAIN SCRIPT ############################
    // #######################################################################
    
    
    
    $navbits = array();
    $navbits[$parent] = 'Welcome to yourdomain.com';
    
    $navbits = construct_navbits($navbits);
    
    
    
    eval('$navbar = "' . fetch_template('navbar') . '";');
    eval('print_output("' . fetch_template('homepage') . '");');
    
    ?>
    save.

    now, go into vb style admin.
    make a new template, called homepage (caps must match!!)
    and place this code into it
    Code:
    $stylevar[htmldoctype]
    <html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
    <head>
        <!-- no cache headers -->
        <meta http-equiv="Pragma" content="no-cache" />
        <meta http-equiv="Expires" content="-1" />
        <meta http-equiv="Cache-Control" content="no-cache" />
        <!-- end no cache headers -->
        $headinclude
        <title>Welcome to whatever.com</title>
    </head>
    <body>
    $header
    $navbar
    
    
    <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
    <tr>
        <td class="tcat" id="top">Welcome, or whatever here...</td>
    </tr>
    <tr>
        <td class="alt1">
    
    main content block here
    </td>
    </tr>
    </table>
    
    
    
    $footer
    </body>
    </html>

    and between the navbar and the footer, you can build your html as you want on your homepage I threw in a basic table to start with.


    No need for vba, you can code what ever you want using vb templates nice and easy

  5. #5
    Senior Member
    Real Name
    Shamil
    Join Date
    Feb 2008
    Location
    In my box :)
    Posts
    152
    Liked
    5 times
    Blog Entries
    1
    Thanks Brian :P

  6. #6
    Junior Member
    Real Name
    Ron O'Neill
    Join Date
    Sep 2007
    Posts
    5
    Liked
    0 times
    Thanks Brian, how would I go about adding a sidebar to that?

  7. #7
    Member
    Real Name
    Gen
    Join Date
    Nov 2008
    Posts
    79
    Liked
    0 times
    are you using ajax tabs content by bobostr for your tabs?

    How did you get the tabs Portal from looking like the rest of you template? I like that look better than on I have on my page that looks like a forum!

  8. #8
    Junior Member
    Real Name
    thyam
    Join Date
    Nov 2008
    Posts
    1
    Liked
    0 times
    Hi all , i m from Italy .
    I have vb adv and vb installed with vbseo style moded .
    Can someone tell me how to do a module like this in my homepage ?




    my homepage is here : Stabilimenti balneari - rivamania.it

    Thanks all for answers

  9. #9
    Senior Member sensimilla's Avatar
    Real Name
    Me
    Join Date
    Sep 2005
    Location
    poland
    Posts
    201
    Liked
    7 times
    Hi thyam,
    Its the Advanced Tabbed Module to download at vbadvanced.com, its really easy to install. If you need any help just ask.


    If anyone from the stuff could explain me how to create modules without borders as here at vbseo hompeage..
    Sorry to jump into other member thread but I dont want to spam the board with another forumhome topic.
    Thanks in advance

Similar Threads

  1. set vbseo for forums or front page?
    By 420 in forum General Discussion
    Replies: 5
    Last Post: 05-12-2008, 03:20 AM
  2. Replies: 1
    Last Post: 08-17-2005, 05:15 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •