0
Welcome Guest! Login
0 items Join Now

GlobalBiz Hacked

  • GlobalBiz Hacked

    Posted 18 years 8 months ago
    • www.bentwaterclub.com

      Did a lot to it.
      Header logo changes on each department.
      Content related to department keeps submenu highlighted

      I can't remeber it all
  • Re: GlobalBiz Hacked

    Posted 18 years 8 months ago
    • Looks good. Your Golf Header image is 501px but still extends the width of your template in excess.

      Other than that, nice.

      -Les
    • Beaker ROCKS!
  • Re: GlobalBiz Hacked

    Posted 18 years 8 months ago
    • Looking at it more carefully, when I click on the Golf button on the "Other Menu" on top, the pathway extends in width. If you look at the very bottom of the page, it looks like that page is configured for 2 columns which is causing the extension in the width.

      If you click on the "March Couples Tournament - Final Results" title, the page refreshes and fixes the width extension. I think this page is then 1 coumn in the pathway. Not sure just guessing.

      -Les
    • Beaker ROCKS!
  • Re: GlobalBiz Hacked

    Posted 18 years 8 months ago
    • Yea well it seems to me that the peolle that use the WYSIWG editor yea ... they dotn knwo how to use if well, copy and pasting excel

      but its fixed thanks for the notice
  • Re: GlobalBiz Hacked

    Posted 18 years 8 months ago
    • Nice website few comments I couldn't find any contact info or location of the club.

      Banquets & Meetings -> Weddings and Receptions -> Non-Member information since the picture is pop-up I would use LightThumb which uses Lightbox JS v2.0
      Banquets & Meetings -> Corporate Meetings -> View our High Tech Harbor view Meeting Room why open in a new window and there should be a space between Harborview
    • VirtueShop
  • Re: GlobalBiz Hacked

    Posted 18 years 8 months ago
    • Cody Nichols wrote:
      www.bentwaterclub.com
      Content related to department keeps submenu highlighted

      Nicely done. In your right menu, how did you get just the section headers changed to a different colour?
    • Last Edit: 18 years 8 months ago by Archie DCruz.
  • Re: GlobalBiz Hacked

    Posted 18 years 8 months ago
    • This is added to index.php of globalbiz temp
      based on the itemid I get the menu then determine the menu
      <?php
      if ($Itemid == 99999999) {
           $database->setQuery("SELECT id FROM #__menu WHERE parent=1");
      &nbsp;  $Itemid = $database->loadResult();
      }
       
      $query = "SELECT menutype FROM #__menu WHERE id = $Itemid";
      $database->setQuery($query);
      $menu = $database->loadResult();
       
      switch ($menu) {
           // need to determine if parent of child;
           case "mainmenu":
                $query = "SELECT parent FROM #__menu WHERE id = $Itemid";
                $database->setQuery($query);
                $parentid = $database->loadResult();
                
                if ($parentid == 0) {
                     $deptid = $Itemid;
                     
                     // hack used to not get user1 to display on content views after appending Itemid to change dept logo and menu
                     if ($task == "view") {
                          $database->setQuery("SELECT id FROM #__menu WHERE menutype='".$menu."' AND parent=$deptid");
      &nbsp;                 $Itemid = $database->loadResult();
                     }
                }
                else {
                     $deptid = $parentid;
                }
                break;
                
           case "golfmenu":
                $deptid = 2;
                break;
                
           case "fitnessmenu":
                $deptid = 3;
                break;
           case "tennismenu":
                $deptid = 4;
                break;
                
           case "diningmenu":
           $deptid = 5;     
           break;
           
           case "marinamenu":
           $deptid = 6;     
           break;
                
                
           default:
                $deptid = 1;
                break;
      }
       
       
      $bwheader = $mosConfig_live_site . "/templates/" . $mainframe->getTemplate() . "/images/bwheader_" . $deptid . ".jpg";

      Then for the menu and submenu to work correctly I change the ShowMenu
      <div class="horizmenu">
      &nbsp; &nbsp; <?php mosShowHorizMenuID('mainmenu', $deptid); ?>                          
      </div>
      <div class="submenu">
      &nbsp; &nbsp; <?php mosShowSubMenuID( 'mainmenu', $deptid ); ?>
      </div>

      In md_submenu.php

      instead of higlight = -1
      function mosShowHorizMenuID(&nbsp; $menutype, $hilightid) {
      ......
      $hilightid = $hilightid;
       
  • Re: GlobalBiz Hacked

    Posted 18 years 7 months ago
    • I noticed you've got the "written by" tags turned on in Joomla... but they aren't necessarily consistent with the actual content. For example, under "Banquets and Meeting" you have a introductory letter signed by the catering director at the bottom, but at the top the article looks like it was written by the websmaster. You should either turn off the tags globally, or publish articles without using the global settings.

      Just a small point... the site looks nice! :)
  • Re: GlobalBiz Hacked

    Posted 18 years 7 months ago
    • Cody, thanks. I'm not sure I've quite got all of it, but it'll probably make more sense when I get into making the changes on my site.
  • Re: GlobalBiz Hacked

    Posted 18 years 7 months ago
    • Yea there a lot of inconsitent things going on, but this site is a 6 month demo run to make sure everything is workign smoothly before I intergrate in soem custom reservation stuff and by that time I will change the look again. I already have added an array of features to ModernBuisness which I will use for the new template. So I will share that theme and new features when it's all said and done.

      Thanks for the comments guys.

Time to create page: 0.060 seconds