Back to top

Visualizza post

Questa sezione ti permette di visualizzare tutti i post inviati da questo utente. N.B: puoi vedere solo i post relativi alle aree dove hai l'accesso.


Post - Ste_Goldberg

Pagine: [1] 2 3 4
1
Grazie mille, gentilissimo :)

2
Ho fatto come hai spiegato, ma nulla, non si affianca.


Ecco tutto il codice:
Codice: [Seleziona]
<?php
 
/**
 * @package      Joomla.Site
 * @subpackage   com_contact
 * @copyright   Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
 * @license      GNU General Public License version 2 or later; see LICENSE.txt
 */


defined('_JEXEC') or die;


$cparams JComponentHelper::getParams ('com_media');
?>

<div class="contact<?php echo $this->pageclass_sfx?>">
<td>
<?php if ($this->params->get('show_page_heading'1)) : ?>
<h1>
   <?php echo $this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>


   <?php if ($this->contact->name && $this->params->get('show_name')) : ?>
      <h2>
         <span class="contact-name"><?php echo $this->contact->name?></span>
      </h2>
   <?php endif;  ?>
   <?php if ($this->params->get('show_contact_category') == 'show_no_link') : ?>
      <h3>
         <span class="contact-category"><?php echo $this->contact->category_title?></span>
      </h3>
   <?php endif; ?>
   <?php if ($this->params->get('show_contact_category') == 'show_with_link') : ?>
      <?php $contactLink ContactHelperRoute::getCategoryRoute($this->contact->catid);?>
      <h3>
         <span class="contact-category"><a href="<?php echo $contactLink?>">
            <?php echo $this->escape($this->contact->category_title); ?>[/url]
         </span>
      </h3>
   <?php endif; ?>
   <?php if ($this->params->get('show_contact_list') && count($this->contacts) > 1) : ?>
      <form action="#" method="get" name="selectForm" id="selectForm">
         <?php echo JText::_('COM_CONTACT_SELECT_CONTACT'); ?>
         <?php echo JHtml::_('select.genericlist',  $this->contacts'id''class="inputbox" onchange="document.location.href = this.value"''link''name'$this->contact->link);?>
      </form>
   <?php endif; ?>
   <?php  if ($this->params->get('presentation_style')!='plain'){?>
      <?php  echo  JHtml::_($this->params->get('presentation_style').'.start''contact-slider'); ?>
   <?php  echo JHtml::_($this->params->get('presentation_style').'.panel'JText::_('COM_CONTACT_DETAILS'), 'basic-details'); } ?>
   <?php if ($this->params->get('presentation_style')=='plain'):?>
      <?php  echo '<h3>'JText::_('COM_CONTACT_DETAILS').'</h3>';  ?>
   <?php endif; ?>
   <?php if ($this->contact->image && $this->params->get('show_image')) : ?>
      <div class="contact-image">
         <?php echo JHtml::_('image'$this->contact->imageJText::_('COM_CONTACT_IMAGE_DETAILS'), array('align' => 'middle')); ?>
      <>
   <?php endif; ?>


   <?php if ($this->contact->con_position && $this->params->get('show_position')) : ?>
      <p class="contact-position"><?php echo $this->contact->con_position?></p>
   <?php endif; ?>


   <?php echo $this->loadTemplate('address'); ?>


   <?php if ($this->params->get('allow_vcard')) :   ?>
      <?php echo JText::_('COM_CONTACT_DOWNLOAD_INFORMATION_AS');?>
         <a href="<?php echo JRoute::_('index.php?option=com_contact&amp;view=contact&amp;id='.$this->contact->id '&amp;format=vcf'); ?>">
         <?php echo JText::_('COM_CONTACT_VCARD');?>[/url]
   <?php endif; ?>
   </td>
        <td>
        <p></p>
   <?php if ($this->params->get('show_email_form') && ($this->contact->email_to || $this->contact->user_id)) : ?>


      <?php if ($this->params->get('presentation_style')!='plain'):?>
         <?php  echo JHtml::_($this->params->get('presentation_style').'.panel'JText::_('COM_CONTACT_EMAIL_FORM'), 'display-form');  ?>
      <?php endif; ?>
      <?php if ($this->params->get('presentation_style')=='plain'):?>
         </td>
                <?php  echo '<h3>'JText::_('COM_CONTACT_EMAIL_FORM').'</h3>';  ?>
      <?php endif; ?>
      <?php  echo $this->loadTemplate('form');  ?>
   <?php endif; ?>
   <?php if ($this->params->get('show_links')) : ?>
      <?php echo $this->loadTemplate('links'); ?>
   <?php endif; ?>
   <?php if ($this->params->get('show_articles') && $this->contact->user_id && $this->contact->articles) : ?>
      <?php if ($this->params->get('presentation_style')!='plain'):?>
         <?php echo JHtml::_($this->params->get('presentation_style').'.panel'JText::_('JGLOBAL_ARTICLES'), 'display-articles'); ?>
         <?php endif; ?>
         <?php if  ($this->params->get('presentation_style')=='plain'):?>
         <?php echo '<h3>'JText::_('JGLOBAL_ARTICLES').'</h3>'?>
         <?php endif; ?>
         <?php echo $this->loadTemplate('articles'); ?>
   <?php endif; ?>
   <?php if ($this->params->get('show_profile') && $this->contact->user_id && JPluginHelper::isEnabled('user''profile')) : ?>
      <?php if ($this->params->get('presentation_style')!='plain'):?>
         <?php echo JHtml::_($this->params->get('presentation_style').'.panel'JText::_('COM_CONTACT_PROFILE'), 'display-profile'); ?>
      <?php endif; ?>
      <?php if ($this->params->get('presentation_style')=='plain'):?>
         <?php echo '<h3>'JText::_('COM_CONTACT_PROFILE').'</h3>'?>
      <?php endif; ?>
      <?php echo $this->loadTemplate('profile'); ?>
   <?php endif; ?>
   <?php if ($this->contact->misc && $this->params->get('show_misc')) : ?>
      <?php if ($this->params->get('presentation_style')!='plain'){?>
         <?php echo JHtml::_($this->params->get('presentation_style').'.panel'JText::_('COM_CONTACT_OTHER_INFORMATION'), 'display-misc');} ?>
      <?php if ($this->params->get('presentation_style')=='plain'):?>
         <?php echo '<h3>'JText::_('COM_CONTACT_OTHER_INFORMATION').'</h3>'?>
      <?php endif; ?>
            <div class="contact-miscinfo">
               <div class="<?php echo $this->params->get('marker_class'); ?>">
                  <?php echo $this->params->get('marker_misc'); ?>
               <>
               <div class="contact-misc">
                  <?php echo $this->contact->misc?>
               <>
            <>
   <?php endif; ?>
   <?php if ($this->params->get('presentation_style')!='plain'){?>
         <?php echo JHtml::_($this->params->get('presentation_style').'.end');} ?>
<>


3
Ho fatto come spiega il tizio in guida, ma nulla, non si affianca. Ecco l'url  http://www.uisnaval.com/Prova/index.php/it/contatti


Ecco tutto il codice:
Codice: [Seleziona]
<?php
 
/**
 * @package      Joomla.Site
 * @subpackage   com_contact
 * @copyright   Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
 * @license      GNU General Public License version 2 or later; see LICENSE.txt
 */


defined('_JEXEC') or die;


$cparams JComponentHelper::getParams ('com_media');
?>

<div class="contact<?php echo $this->pageclass_sfx?>">
<td>
<?php if ($this->params->get('show_page_heading'1)) : ?>
<h1>
   <?php echo $this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>


   <?php if ($this->contact->name && $this->params->get('show_name')) : ?>
      <h2>
         <span class="contact-name"><?php echo $this->contact->name?></span>
      </h2>
   <?php endif;  ?>
   <?php if ($this->params->get('show_contact_category') == 'show_no_link') : ?>
      <h3>
         <span class="contact-category"><?php echo $this->contact->category_title?></span>
      </h3>
   <?php endif; ?>
   <?php if ($this->params->get('show_contact_category') == 'show_with_link') : ?>
      <?php $contactLink ContactHelperRoute::getCategoryRoute($this->contact->catid);?>
      <h3>
         <span class="contact-category"><a href="<?php echo $contactLink?>">
            <?php echo $this->escape($this->contact->category_title); ?>[/url]
         </span>
      </h3>
   <?php endif; ?>
   <?php if ($this->params->get('show_contact_list') && count($this->contacts) > 1) : ?>
      <form action="#" method="get" name="selectForm" id="selectForm">
         <?php echo JText::_('COM_CONTACT_SELECT_CONTACT'); ?>
         <?php echo JHtml::_('select.genericlist',  $this->contacts'id''class="inputbox" onchange="document.location.href = this.value"''link''name'$this->contact->link);?>
      </form>
   <?php endif; ?>
   <?php  if ($this->params->get('presentation_style')!='plain'){?>
      <?php  echo  JHtml::_($this->params->get('presentation_style').'.start''contact-slider'); ?>
   <?php  echo JHtml::_($this->params->get('presentation_style').'.panel'JText::_('COM_CONTACT_DETAILS'), 'basic-details'); } ?>
   <?php if ($this->params->get('presentation_style')=='plain'):?>
      <?php  echo '<h3>'JText::_('COM_CONTACT_DETAILS').'</h3>';  ?>
   <?php endif; ?>
   <?php if ($this->contact->image && $this->params->get('show_image')) : ?>
      <div class="contact-image">
         <?php echo JHtml::_('image'$this->contact->imageJText::_('COM_CONTACT_IMAGE_DETAILS'), array('align' => 'middle')); ?>
      <>
   <?php endif; ?>


   <?php if ($this->contact->con_position && $this->params->get('show_position')) : ?>
      <p class="contact-position"><?php echo $this->contact->con_position?></p>
   <?php endif; ?>


   <?php echo $this->loadTemplate('address'); ?>


   <?php if ($this->params->get('allow_vcard')) :   ?>
      <?php echo JText::_('COM_CONTACT_DOWNLOAD_INFORMATION_AS');?>
         <a href="<?php echo JRoute::_('index.php?option=com_contact&amp;view=contact&amp;id='.$this->contact->id '&amp;format=vcf'); ?>">
         <?php echo JText::_('COM_CONTACT_VCARD');?>[/url]
   <?php endif; ?>
   </td>
        <td>
        <p></p>
   <?php if ($this->params->get('show_email_form') && ($this->contact->email_to || $this->contact->user_id)) : ?>


      <?php if ($this->params->get('presentation_style')!='plain'):?>
         <?php  echo JHtml::_($this->params->get('presentation_style').'.panel'JText::_('COM_CONTACT_EMAIL_FORM'), 'display-form');  ?>
      <?php endif; ?>
      <?php if ($this->params->get('presentation_style')=='plain'):?>
         </td>
                <?php  echo '<h3>'JText::_('COM_CONTACT_EMAIL_FORM').'</h3>';  ?>
      <?php endif; ?>
      <?php  echo $this->loadTemplate('form');  ?>
   <?php endif; ?>
   <?php if ($this->params->get('show_links')) : ?>
      <?php echo $this->loadTemplate('links'); ?>
   <?php endif; ?>
   <?php if ($this->params->get('show_articles') && $this->contact->user_id && $this->contact->articles) : ?>
      <?php if ($this->params->get('presentation_style')!='plain'):?>
         <?php echo JHtml::_($this->params->get('presentation_style').'.panel'JText::_('JGLOBAL_ARTICLES'), 'display-articles'); ?>
         <?php endif; ?>
         <?php if  ($this->params->get('presentation_style')=='plain'):?>
         <?php echo '<h3>'JText::_('JGLOBAL_ARTICLES').'</h3>'?>
         <?php endif; ?>
         <?php echo $this->loadTemplate('articles'); ?>
   <?php endif; ?>
   <?php if ($this->params->get('show_profile') && $this->contact->user_id && JPluginHelper::isEnabled('user''profile')) : ?>
      <?php if ($this->params->get('presentation_style')!='plain'):?>
         <?php echo JHtml::_($this->params->get('presentation_style').'.panel'JText::_('COM_CONTACT_PROFILE'), 'display-profile'); ?>
      <?php endif; ?>
      <?php if ($this->params->get('presentation_style')=='plain'):?>
         <?php echo '<h3>'JText::_('COM_CONTACT_PROFILE').'</h3>'?>
      <?php endif; ?>
      <?php echo $this->loadTemplate('profile'); ?>
   <?php endif; ?>
   <?php if ($this->contact->misc && $this->params->get('show_misc')) : ?>
      <?php if ($this->params->get('presentation_style')!='plain'){?>
         <?php echo JHtml::_($this->params->get('presentation_style').'.panel'JText::_('COM_CONTACT_OTHER_INFORMATION'), 'display-misc');} ?>
      <?php if ($this->params->get('presentation_style')=='plain'):?>
         <?php echo '<h3>'JText::_('COM_CONTACT_OTHER_INFORMATION').'</h3>'?>
      <?php endif; ?>
            <div class="contact-miscinfo">
               <div class="<?php echo $this->params->get('marker_class'); ?>">
                  <?php echo $this->params->get('marker_misc'); ?>
               <>
               <div class="contact-misc">
                  <?php echo $this->contact->misc?>
               <>
            <>
   <?php endif; ?>
   <?php if ($this->params->get('presentation_style')!='plain'){?>
         <?php echo JHtml::_($this->params->get('presentation_style').'.end');} ?>
<>


4
Questa è la pagina http://www.uisnaval.com/Prova/index.php/it/contatti, devo far andare il form per inviare l'email affianco agli indirizzi.

5
Save, vorrei spostare il form che fa inviare le email ad un contatti, ora si trova sotto, mentre io lo vorrei mettere alla destra del testo, come posso fare? Grazie

6
I Template di Joomla 1.6/1.7/2.5 / Re:Posizione modulo
« il: 29 Ago 2012, 12:22:56 »

Levando un immagine che gli faceva da contorno ho notato questo ".screen" può fare riferimento a quella parte di pagina?

Codice: [Seleziona]
.screen {
width: 460px;
height: 340px;
position: relative;
background: url(../../../images/yootheme/home_screen.png) 0 0 no-repeat;
}


.screen .wk-slideshow-default {
position: absolute;
top: 15px; left: 32px;

7
I Template di Joomla 1.6/1.7/2.5 / Re:Posizione modulo
« il: 29 Ago 2012, 12:09:01 »
Ma non devo levare il bordo, ma tutto quello che c'è in quel riquadro blu, in modo da far salire tutto il resto della pagina

9
I Template di Joomla 1.6/1.7/2.5 / Re:Posizione modulo
« il: 29 Ago 2012, 11:54:42 »
Non lo so, magari consigliandomi qualche programma che individua quella porzione di codice... Mi sembra strano che non sia un modulo, sto uscendo pazzo per levarla

10
I Template di Joomla 1.6/1.7/2.5 / Posizione modulo
« il: 29 Ago 2012, 11:44:08 »
Salve, praticamente devo levare una riga dove appaiono delle foto in slide tramite Widgetkit, questo slide appare all'interno di una foto, allora ho cacciata, solo che ora non capisco come levare il modulo da la e avendo cancellato lo slide dal pannello del widget mi esce questa scritta " Could not load widget with the id 53." Grazie

11
Salve, vorrei segnalarvi questo fantastico plugin gratuito si integra perfettamente con virtuemat, possiede features come pulsanti social e comment box.



http://www.ilbloggazzo.com/2012/07/facebook-twitter-google1-plugin-per.html

12
Per cacciare intendevo di non farlo vedere solo nel breadcrumb, ho notato che lo stesso passaggio poi si forma anche nell'url "virtuemart/default-layout/accessori-nautica/ecoscandaglio-garmin300c-detail.html"

13
Salve, devo cacciare dei passaggi che con la modalità seo attiva escono, mentre se la caccio, non appaiono. Ora è così : Home ° VirtueMart ° Default layout ° Accessori nautica generale ° Ecoscandaglio garmin echo 300C, io vorrei cacciare la scritta virtuemart"Virtuemart" e "default layout". Sono andato nel modulo del breadscrumbs, ma non capisco come fare.


Questi sono i codici, mod_breadscrums.php:
Codice: [Seleziona]
<?php
/**
 * @package      Joomla.Site
 * @subpackage   mod_breadcrumbs
 * @copyright   Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
 * @license      GNU General Public License version 2 or later; see LICENSE.txt
 */


// no direct access
defined('_JEXEC') or die;


// Include the syndicate functions only once
require_once dirname(__FILE__).'/helper.php';


// Get the breadcrumbs
$list   modBreadCrumbsHelper::getList($params);
$count   count($list);


// Set the default separator
$separator modBreadCrumbsHelper::setSeparator($params->get('separator'));
$moduleclass_sfx htmlspecialchars($params->get('moduleclass_sfx'));


require 
JModuleHelper::getLayoutPath('mod_breadcrumbs'$params->get('layout''default')); 





Poi questo:helper.php



Codice: [Seleziona]
<?php
/**
 * @package      Joomla.Site
 * @subpackage   mod_breadcrumbs
 * @copyright   Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
 * @license      GNU General Public License version 2 or later; see LICENSE.txt
 */


// no direct access
defined('_JEXEC') or die;


class 
modBreadCrumbsHelper
{
   public static function 
getList(&$params)
   {
      
// Get the PathWay object from the application
      
$app      JFactory::getApplication();
      
$pathway   $app->getPathway();
      
$items      $pathway->getPathWay();


      
$count count($items);
      for (
$i 0$i $count$i ++)
      {
         
$items[$i]->name stripslashes(htmlspecialchars($items[$i]->nameENT_COMPAT'UTF-8'));
         
$items[$i]->link JRoute::_($items[$i]->link);
      }


      if (
$params->get('showHome'1))
      {
         
$item = new stdClass();
         
$item->name htmlspecialchars($params->get('homeText'JText::_('MOD_BREADCRUMBS_HOME')));
         
$item->link JRoute::_('index.php?Itemid='.$app->getMenu()->getDefault()->id);
         
array_unshift($items$item);
      }


      return 
$items;
   }


   
/**
    * Set the breadcrumbs separator for the breadcrumbs display.
    *
    * @param   string   $custom   Custom xhtml complient string to separate the
    * items of the breadcrumbs
    * @return   string   Separator string
    * @since   1.5
    */
   
public static function setSeparator($custom null)
   {
      
$lang JFactory::getLanguage();


      
// If a custom separator has not been provided we try to load a template
      // specific one first, and if that is not present we load the default separator
      
if ($custom == null) {
         if (
$lang->isRTL()){
            
$_separator JHtml::_('image''system/arrow_rtl.png'NULLNULLtrue);
         }
         else{
            
$_separator JHtml::_('image''system/arrow.png'NULLNULLtrue);
         }
      } else {
         
$_separator htmlspecialchars($custom);
      }


      return 
$_separator;
   }
}


14
Io sono andato a Negozio>Metodi di spedizone>GLS>Configurazione, ma non c'è la tabella dove inserire questi prezzi http://imageshack.us/photo/my-images/337/im43214123434magine.png/

15
Salve, devo creare su Virtuemart un'impostazione che per esempio da 1 a 3 kg, la spedizione costa 6€, poi, da 3 a 10kg 8, ecc. Come faccio? Grazie.

16
Si, è disabilitata

17
Salve, ho a che fare con il seguente problema, se vado nella pagina di una categoria di virtuemart e cerco di cambiare pagina non funziona, si aggiunge questa scritta nell'url "?format=html". Ho notato, poi, che se passo a far visualizzare 8 prodotti appare questo url"results,1-8.html?format=html" che se modifico così "results,2-8.html?format=html" passa alla seconda pagina. Tutto ciò esce fuori solo se attivo le impostazioni SEO. Come posso risovlere? grazie

19
Gestione e-commerce / Re:Pop up carrello
« il: 28 Mag 2012, 15:25:51 »
Su virtuemart 2.0.6 alla sezione "Processo d'acquisto", sotto c'è la voce "Mostra il popup cliccando su "Aggiungi al carello" dove puoi risolvere questo problema :)

20
La cache in joomla era già disattivata, cmq nulla, non va...

Pagine: [1] 2 3 4


Web Design Bolzano Kreatif