Jump to content

module tt-homeslider


artskory

Recommended Posts

Bonjour,

j'ai un souci avec le module "tt-homeslider" fournis avec le thème "Bicycle Store" de "TemplateTrip".

Ce module est pré-paramétré avec deux slides. Il est naturellement possible d'en créer d'autre. J'ai donc créé un troisième slide, en front l'image de fond apparait bien, mais tout le texte non. J'ai donc contacté le développeur qui m'a indiqué qu'il fallait modifier dans le fichier "tthomeslider.php" la condition.

 

Voici le code :

/**
	 * Adds samples
	 */
	protected function installSamples()
	{
		$languages = Language::getLanguages(false);
		for ($i = 1; $i <= 3; ++$i)
		{
			$slide = new ttHomeSlide();
			$slide->position = $i;
			$slide->active = 1;
			foreach ($languages as $language)
			{
				$slide->title[$language['id_lang']] = 'Sample '.$i;
				$slide->description[$language['id_lang']] = '<div class="tthomeslider-content col-sm-5 col-xs-5">
<div class="tt-tag hb-animate-element top-to-bottom">sport seasons</div>
<div class="tt-title hb-animate-element right-to-left">rides & trips</div>
<div class="btn-group-slider"><span class="btn-shop hb-animate-element bottom-to-top"><a href="#">get now</a></span> <span class="btn-discover hb-animate-element bottom-to-top"><a href="#">discover</a></span></div>
</div>
<div class="tthomeslider-image col-sm-7 col-xs-7">
<div class="tthomeslider-image hb-animate-element left-to-right"><img src="../img/cms/slider-bicycle-01.png" alt="" /></div>
</div>';
				$slide->legend[$language['id_lang']] = 'sample-'.$i;
				$slide->url[$language['id_lang']] = '#';
				$slide->image[$language['id_lang']] = 'sample-'.$i.'.jpg';
			}
			$slide->add();
		}
	}

Le développeur me dit de modifier la boucle for en changeant $i <= 3; par $i <= 4; ou plus en fonction du nombre de slide que souhaite avoir. Seulement voilà ça ne change rien.

 

Quelqu'un a-t-il eu le même problème ?

Link to comment
Share on other sites

  • 2 months later...
  • 1 year later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...