Posts

Create a start page without a corresponding menu item in Joomla!

In most cases when creating a site in Joomla!, the first choise on the menu is something like "Start" or "Home" that brings the user back to the landing page of the site. Normally you will also link the website logo to the start page.

But sometimes when creating a site in Joomla, it is not desirable to have a specific menu item with the sole purpose to bring up the start page. Just linking the logo to the start page may be sufficient and you don’t want to clutter up your menu with an additional item (or you are running out of menu space).

The solution to not having a menu item corresponding to the start page is to simply create a hidden menu, for example "hiddenmenu". Do not publish a module for it. Place the menu item that brings up the start page in this hidden menu. Done!

By the way, linking your logo to the start page can be done in the template html-file by something like this: 

<a href="<?php echo $this->baseurl; ?>"><div id="logo"></div></a>

 

 

Joomla! templates looking strange in MSIE8

Some Joomla! templates looks nice in all browsers except Microsoft Internet Explorer 8 (IE 8). One easy solution is to add the following line to the <head> section of the index.php for the template in question: <head>

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>

Be careful to check that your site works as expected after applying this solution.

VirtueMart installation problem (Joomla!)

If the installation of VirtueMart version 1.1.3 for Joomla! 1.5.10 fails, a manual installation is needed. The error message says that some critical components of VirtueMart are missing. In addition to the following instructions, read the VirtueMart installation manual.

  1. Download the VirtueMart Manual Installation package for Joomla! 1.5 from VirtueMart website.
  2. Unzip the contents of the archive to a folder.
  3. Upload the subfolders and contents using ftp to the web server running Joomla! according to instructions in the VirtueMart installation manual.
  4. Use a ftp program or login using a shell to change permissions of the catalog administrator/components/com_virtuemart to 777.
  5. Change the permssions of the file administrator/components/com_virtuemart/virtuemart.cfg-dist.php to 666.
  6. Go to http://www.yoursite.tld/administrator/index2.php?option=com_virtuemart and perform database installation according to instructions in the VirtueMart installation manual.
  7. Follow the VirtueMart installation manual for the rest of the installation process.

Changing “Welcome to the Frontpage” heading in Joomla!

When installing the sample data during the installation of Joomla, the heading of the front page is "Welcome to the frontpage". To change this text,

Read more