Back to top

Autore Topic: Re: Mogulus e Joomla 1.5 (RISOLTO)  (Letto 7139 volte)

Offline JoomlArt.eu

  • Ulcera
  • Appassionato
  • *
  • Post: 631
    • Mostra profilo
Re: Mogulus e Joomla 1.5 (RISOLTO)
« il: 19 Feb 2008, 18:16:37 »
Salve a tutti!
Ciao!
Mi chiamo Roger ed ho necessita di inserire il modulo mogulus nella colonna centrale del mio sito...quella dedicata agli articoli.
Io non ho molta confidenza con php e simili...sto imparando da solo ad utilizare joomla e non riesco a capire, nel template precaricato da joomla italia, se posso e come faccio a mettere moduli in detto spazio.
Ho caricato il modulo ma riesco a metterlo solo lateralmente...come devo comportarmi per averlo al centro?
ciao!
« Ultima modifica: 15 Mar 2008, 15:13:31 da paginiroger »

Offline graduus

  • Esploratore
  • **
  • Post: 187
    • Mostra profilo
Re: Mogulus e Joomla 1.5
« Risposta #1 il: 19 Feb 2008, 18:34:52 »
dovresti modificare il template
inserendo nel file index.php, sotto al div conteente la scritta <?php mosMainbody();?>

un altro div fatto così:
Codice: [Seleziona]
<?php if($this->countModules('video')) : ?> <div> <jdoc:include type="modules" name="video" />

</div>

<?php endif; ?>
dove video è il nome della posizione per il modulo.

Offline JoomlArt.eu

  • Ulcera
  • Appassionato
  • *
  • Post: 631
    • Mostra profilo
Re: Mogulus e Joomla 1.5
« Risposta #2 il: 19 Feb 2008, 21:21:32 »
penso sia questo quello a cui ti riferisci...ma il tuo div non c'è...

<?php
/**
 * @copyright   Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
 * @license      GNU/GPL, see LICENSE.php
 * Joomla! is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * See COPYRIGHT.php for copyright notices and details.
 */

// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
<head>
<jdoc:include type="head" />

<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/rhuk_milkyway/css/template.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/rhuk_milkyway/css/<?php echo $this->params->get('colorVariation'); ?>.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/rhuk_milkyway/css/<?php echo $this->params->get('backgroundVariation'); ?>_bg.css" type="text/css" />
<!--[if lte IE 6]>
<link href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/ieonly.css" rel="stylesheet" type="text/css" />
<![endif]-->
<?php if($this->direction == 'rtl') : ?>
   <link href="<?php echo $this->baseurl ?>/templates/rhuk_milkyway/css/template_rtl.css" rel="stylesheet" type="text/css" />
<?php endif; ?>

</head>
<body id="page_bg" class="color_<?php echo $this->params->get('colorVariation'); ?> bg_<?php echo $this->params->get('backgroundVariation'); ?> width_<?php echo $this->params->get('widthStyle'); ?>">
<a name="up" id="up">[/url]
<div class="center" align="center">
   <div id="wrapper">
      <div id="wrapper_r">
         <div id="header">
            <div id="header_l">
               <div id="header_r">
                  <div id="logo"></div>
                  <jdoc:include type="modules" name="top" />
               </div>
            </div>
         </div>

         <div id="tabarea">
            <div id="tabarea_l">
               <div id="tabarea_r">
                  <div id="tabmenu">
                  <table cellpadding="0" cellspacing="0" class="pill">
                     <tr>
                        <td class="pill_l">&nbsp;</td>
                        <td class="pill_m">
                        <div id="pillmenu">
                           <jdoc:include type="modules" name="user3" />
                        </div>
                        </td>
                        <td class="pill_r">&nbsp;</td>
                     </tr>
                     </table>
                  </div>
               </div>
            </div>
         </div>

         <div id="search">
            <jdoc:include type="modules" name="user4" />
         </div>

         <div id="pathway">
            <jdoc:include type="modules" name="breadcrumb" />
         </div>

         <div class="clr"></div>

         <div id="whitebox">
            <div id="whitebox_t">
               <div id="whitebox_tl">
                  <div id="whitebox_tr"></div>
               </div>
            </div>

            <div id="whitebox_m">
               <div id="area">
                           <jdoc:include type="message" />

                  <div id="leftcolumn">
                  <?php if($this->countModules('left')) : ?>
                     <jdoc:include type="modules" name="left" style="rounded" />
                  <?php endif; ?>
                  </div>

                  <?php if($this->countModules('left')) : ?>
                  <div id="maincolumn">
                  <?php else: ?>
                  <div id="maincolumn_full">
                  <?php endif; ?>
                     <?php if($this->countModules('user1 or user2')) : ?>
                        <table class="nopad user1user2">
                           <tr valign="top">
                              <?php if($this->countModules('user1')) : ?>
                                 <td>
                                    <jdoc:include type="modules" name="user1" style="xhtml" />
                                 </td>
                              <?php endif; ?>
                              <?php if($this->countModules('user1 and user2')) : ?>
                                 <td class="greyline">&nbsp;</td>
                              <?php endif; ?>
                              <?php if($this->countModules('user2')) : ?>
                                 <td>
                                    <jdoc:include type="modules" name="user2" style="xhtml" />
                                 </td>
                              <?php endif; ?>
                           </tr>
                        </table>

                        <div id="maindivider"></div>
                     <?php endif; ?>

                     <table class="nopad">
                        <tr valign="top">
                           <td>
                              <jdoc:include type="component" />
                              <jdoc:include type="modules" name="footer" style="xhtml"/>
                           </td>
                           <?php if($this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?>
                              <td class="greyline">&nbsp;</td>
                              <td width="170">
                                 <jdoc:include type="modules" name="right" style="xhtml"/>
                              </td>
                           <?php endif; ?>
                        </tr>
                     </table>

                  </div>
                  <div class="clr"></div>
               </div>
               <div class="clr"></div>
            </div>

            <div id="whitebox_b">
               <div id="whitebox_bl">
                  <div id="whitebox_br"></div>
               </div>
            </div>
         </div>

         <div id="footerspacer"></div>
      </div>

      <div id="footer">
         <div id="footer_l">
            <div id="footer_r">
               <p id="syndicate">
                  <jdoc:include type="modules" name="syndicate" />
               </p>
               <p id="power_by">
                    <?php echo JText::_('Powered by') ?> Joomla!.
                  <?php echo JText::_('Valid') ?> XHTML <?php echo JText::_('and') ?> CSS.
               </p>
            </div>
         </div>
      </div>
   </div>
</div>
<jdoc:include type="modules" name="debug" />

</body>
</html>


Offline JoomlArt.eu

  • Ulcera
  • Appassionato
  • *
  • Post: 631
    • Mostra profilo
Re: Mogulus e Joomla 1.5
« Risposta #3 il: 19 Feb 2008, 22:08:41 »
Ho capito un po come funziona...ma allora io non ho attive quelle posizioni?!?  :o ???

Offline JoomlArt.eu

  • Ulcera
  • Appassionato
  • *
  • Post: 631
    • Mostra profilo
Re: Mogulus e Joomla 1.5
« Risposta #4 il: 19 Feb 2008, 22:23:02 »
ho provato ad inserire una riga tipo quella che ho trovato sul css con mogulus...ma non ho trovato poi la posizione nella lista dell'iserimento moduli...

Offline graduus

  • Esploratore
  • **
  • Post: 187
    • Mostra profilo
Re: Mogulus e Joomla 1.5
« Risposta #5 il: 20 Feb 2008, 09:56:35 »
mmm
scusa, ma litigo poco con 1.5, e la funzione mosmainbosy è dell'1.0...
allora
se ho capito bene (se) devi mettere quella riga tra
Codice: [Seleziona]
<jdoc:include type="component" />

<jdoc:include type="modules" name="footer" style="xhtml"/>


Offline JoomlArt.eu

  • Ulcera
  • Appassionato
  • *
  • Post: 631
    • Mostra profilo
Re: Mogulus e Joomla 1.5
« Risposta #6 il: 12 Mar 2008, 16:17:36 »
esiste qualcosa che permetta di visualizzare dei filmati sul sito in alta definizione?(non in streaming ma filmati che sono presenti sul mio sito...un falso streaming...

Offline fede91it

  • Team Joomla.it
  • Appassionato
  • *******
  • Post: 642
  • Sesso: Maschio
    • Mostra profilo
Re: Mogulus e Joomla 1.5
« Risposta #7 il: 12 Mar 2008, 16:29:43 »
Questo modulo è una tv in streaming
Federico Liva | Web Perfectionist
@fede91it |  +Federico Liva | fede91it@gmail.com

Offline JoomlArt.eu

  • Ulcera
  • Appassionato
  • *
  • Post: 631
    • Mostra profilo
Re: Mogulus e Joomla 1.5
« Risposta #8 il: 15 Mar 2008, 15:13:05 »
Lo so...funziona benissimo...cercavo altro...ma problema risolto!

Offline roguewave

  • Nuovo arrivato
  • *
  • Post: 10
    • Mostra profilo
Re: Mogulus e Joomla 1.5
« Risposta #9 il: 18 Lug 2008, 16:17:09 »
Lo so...funziona benissimo...cercavo altro...ma problema risolto!
scusa, mi sai dire come hai risolto.
Io volevo mettere un modulo nel body, precisamente il modulo che fa vedere i prodotti casuali, come faccio? grazie

Offline mela680

  • Nuovo arrivato
  • *
  • Post: 23
    • Mostra profilo
Re: Mogulus e Joomla 1.5 (RISOLTO)
« Risposta #10 il: 02 Mag 2009, 22:50:49 »
Ciao, stavo leggendo il post e anche io ho un problema simile...
Vorrei inserire dei video in joomla 1.5.10 da far vedere in streaming.
Mi sapreste dire come posso fare? O meglio quale componente usare....

 



Web Design Bolzano Kreatif