shireasha
shireasha

Reputation: 151

breadcrumbs in joomla 1.5

I am using joomla 1.5 version with beez template. How can we use breadcrumbs in this.I am new to this CMS. How to create our owm list in breadcrumbs.Can anyone help me

Upvotes: 2

Views: 563

Answers (1)

jogesh_pi
jogesh_pi

Reputation: 9782

here is how to implement the joomla module into your template

first you have to implement this code into your templates/template_dir/index.php:

<jdoc:include type="modules" name="breadCrumb" /> 

then go to the templateDetails.xml and set the name of your module into this xml file:

<positions>
            <position>breadcrumb</position>
            <position>left</position>
            <position>right</position>
            <position>breadCrumb</position>
            <position>user1</position>
            <position>user2</position>
            <position>user3</position>
            <position>user4</position>
            <position>footer</position>
    </positions>

then you can find the name breadCrumb into your admin panel / module manager / positions

just simply apply the name and view the template..

to know more about this please follow the link http://docs.joomla.org/Creating_a_basic_Joomla!_template

Upvotes: 1

Related Questions