We moved to new unified forum!

Please post all new support queries in our New Forum.

T3 Community Discussion & Support

Let's build the best free Joomla template framework, together!
  1. Angel Baez
  2. General Discussion
  3. Thursday, 30 July 2015
  4.  Subscribe via email
how can i create a full screen image slideshow in t3 framework?
Comment
There are no comments made yet.
Accepted Answer Pending Moderation
0
Votes
Undo
Hi,

You want to use CUSTOM HTML module or any other specific module?

Regards.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 1
Accepted Answer Pending Moderation
0
Votes
Undo
i want to add a fullscreen banner rotator in the banner section.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 2
Accepted Answer Pending Moderation
0
Votes
Undo
Hi,

Here are the steps to create such module.

1. Create new block in the folder: templates\t3_bs3_blank\tpls\blocks, in this tutorial, we will create banner.php file then add the following code:

<?php
/**
* @package T3 Blank
* @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;

?>

<?php if ($this->countModules('position-1')) : ?>
<!-- HOME SL 1 -->
<div class="wrap t3-sl t3-sl-1 <?php $this->_c('position-1') ?>">
<div class="">
<jdoc:include type="modules" name="<?php $this->_p('position-1') ?>" style="raw" />
</div>
</div>
<!-- //HOME SL 1 -->
<?php endif ?>



2. Open the layout file, such as: templates\t3_bs3_blank\tpls\default.php and load the new block:

<?php $this->loadBlock('banner') ?>


3. Create module and assign it to the position-1 position.

Once done, you will have the front-page like the screenshot: http://easycaptures.com/fs/uploaded/915/6847347092.jpg

Regards.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 3
Accepted Answer Pending Moderation
0
Votes
Undo
thank you! ill try.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 4
Accepted Answer Pending Moderation
0
Votes
Undo
You're welcome.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 5
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.