Joomla 1.5.9 modül sadece ön sayfa görüntüleme nasıl?

2 Cevap php

Ben joomla 1.5.9 modülü sadece ön sayfa görüntüleme istiyorsun? İç sayfada görünmez bir alanda yer alır?

2 Cevap

Bir geliştirici veya bir yönetici olarak?

As a template developer: If youre a developer, you can add your module in the template wrapped in the following tags:

<?php $menu = & JSite::getMenu();
if ($menu->getActive() == $menu->getDefault()) {
    -- module code goes here --
}
?>

As a site administrator If you are a site administrator and only want to show the module on the homepage, open the module configuration, and then under menu assignment click on "Select Menu Item(s) from the list", then select on the home page of your site from the list of menu pages and save the module.

Modülü yapılandırmada size özel bir menü atayabilirsiniz. Evde onu atarsanız sadece ana sayfasında gösterilecektir.