Showing posts with label joomla. Show all posts
Showing posts with label joomla. Show all posts

14 December 2013

Login module without create account feature? [Joomla - CMS]

Problem: Login module without create account feature? [Joomla - CMS]

Solution : These are the steps to remove the Create an Account link which is part of the Login module.

Login to Administrator in your Joomla Folder

1) Goto Global Configuration

2) Click the System link

3) Under User Settings, look for Allow User Registration.

4) Select No

5) Click Save

Done.














joomla login



(If you found this article useful then share with your friends.)

03 December 2013

How to create Joomla templates - hello world

To create your own template for Joomla CMS , you need to follow some directory structure and file names. The template should have at least this 2 files : templateDetails.xml and index.php
joomla

You need to create a folder and the files inside it. Place this folder under templates folder inside the joomla folder.

To set your template , go to Extensions -> template manager.
Choose your template name from the list and click default to make effected.

The file structure of the templateDetails.xml :

<?xml version="1.0" encoding="utf-8"?>
<install version="1.5" type="template">
<name>My First J template</name>
<description>
This is my Template
</description>
<files>
<filename>index.php</filename>
<filename>templateDetails.xml</filename>
</files>
</install>

Sample index.php file :

<html>
<head>
<jdoc:include type="head" />
</head>
<body>
<jdoc:include type="message" />
<div class="center" align="center">Welcome to my World! Lets have some fun</div>
<jdoc:include type="modules" name="debug" />
</body>
</html>

Done.

(If you found this article useful then share with your friends.)

11 May 2013

How to add CSS file in Joomla Template

To work your css file in joomla template ,
paste the following code before closing of head tag </head>
:


<link rel="stylesheet"
href="<?php echo $this->baseurl ?> /templates/YourTemplateName/css/template.css"
type="text/css" />


To know more about Joomla Template,


(If you found this article useful then share with your friends.)

14 January 2011

How to Install Joomla Add-ons Extensions?

To install any joomla Extension, download the zip file from the internet.

Get Extensions/Add-ons for Joomla CMS from here : Extensions.Joomla.org

After downloading the zip file , 
  • Go to your Administrator Panel.
  • Go to Extensions => Install/Uninstall.
  • Under the Upload Package File , Click on Choose file and browse to your downloaded zip file.
  • After choosing it , click Upload File and Install button to finish installing the Extension.
Done.

To confirm your installation, check the Plugins Tab and check if it it in the list .



(If you found this article useful then share with your friends.)

03 November 2010

Changing the title of the page in joomla

joomla
To change the Title of the page viewed on the top of the browser, you need to follow this steps:
  1. Go to Admin of Joomla ,
  2. Browse Menus , then Main Main ,
  3. Select Home
  4. Look for tab : Parameters System
  5. Under the title : Page Title , write your desired title.
Done .

For more information, visit Joomla.org

(If you found this article useful then share with your friends.)

23 October 2010

File structure of custom joomla template

joomla
To create your own template in joomla , you need to create to follow file structure .
  1. templateDetails.xml
  2. index.php

-----------------------------------------------------------------
1. index.php
-----------------------------------------------------------------
<html>
<head>
<jdoc:include type="head" />
</head>
<body>
<jdoc:include type="message" />
<div class="center" align="center">Welcome to your own template</div>
<jdoc:include type="modules" name="debug" />
</body>
</html>

-----------------------------------------------------------------


-----------------------------------------------------------------
2. templateDetails.xml
-----------------------------------------------------------------
<?xml version="1.0" encoding="utf-8"?>
<install version="1.5" type="template">
<name>Name of the Template - zahid template</name>
<description>
This will be your first joomla template
</description>
<files>
<filename>index.php</filename>
<filename>templateDetails.xml</filename>
</files>
</install>

-----------------------------------------------------------------

After creating this two files , place it in a folder and copy this folder to the template folder inside the joomla folder.
  • Go to your joomla site administrator panel.
  • Go to Extensions -> Template Manager
  • Choose on the radio button of your newly created template and select Default button to active the template .
  • Go to the site or click Preview to see the results.

(If you found this article useful then share with your friends.)