Thứ Năm, 6 tháng 6, 2013

FASHION STORE JOOMLA 2.5 TEMPLATE WITH SLIDER

You need to sign up with free account to download.

This is a great template for you! You can also use this template to build a summer fashion store Fast – Fluently – Freely

46 Fashion Store Joomla 2.5 Template with Slider DEMO | DOWNLOAD

Thứ Tư, 5 tháng 6, 2013

OT EnterDesign Modern Multi-Purpose - Joomla Templates


OT EnterDesign Modern Multi-Purpose
OT Enterdesign is the absolutely responsive Joomla! template for your business! It is an elegant & modern solution packed up with an incredibly great amount of high quality features. Shortcodes, sliders, layout builders, template backend options, responsiveness and retina ready, etc., are all in here! Beautiful outside backed by a great framework and supported by professionals, this is the all in one Joomla! solution for your business!
FEATURES:
  • 100% tableless CSS,with changeable width of template and column layouts.
  • Solid color styles.
  • Hot QuickStart (SQL dump) available with both single purchase or membership plan.
  • Validates with XHTML 1.0 Transitional.
  • SEO friendly.
  • Tested in IE8, Firefox, Chrome, Safari and Opera browsers.
  • Joomla 2.5 native
  • OMG Responsive Framework
  • Clean and well comments in CSS and PHP code

XTC Departure - Joomla Templates



XTC Departure
Departure is a full Travel Agency based website for Joomla 2.5 and 3.0. Designed with the latest in Flat Design and Powered by Joomla Content and K2, Departure is more than just a template!
Enhanced with Bootstrap CSS3, Departure scales to pixel perfect widths to enhance viewing on Large Format Monitors, Tablets, Phones, and mobile devices!
The core Joomla template features (70+) module positions; (60+) module style variations, (4) preset styles, rich typography options, CSS3 progressive enhancements, Bootstrapped and Responsive Design.
The Quickstart even comes with our most popular extensions— like Deluxe NewsPro, K2 Content Wall and more.
Departure was built with the JoomlaXTC Framework which offers deep customization options and gives you total control over your site’s look & feel—from Width Adjustments, Region & Column Layout, Backgrounds, Font Colors / Sizes / Typeset, Module Layout and custom preset styles.

Template Features:

  • Responsive CSS3 Design
  • XTC Template Framework
  • 4 Preset Styles
  • 70+ Module Positions
  • 35+ Stock Module Suffix Styles
  • Suckerfish – Dropline – DualFish Menu Styles
  • Mulitple Layout Options
  • Bootstrapped
  • Multi Region Design
  • Custom Joomla Content CSS Style
  • Commented source files
  • Cross Browser Support

OT Metroshop Online Store - Joomla Templates

OT Metroshop Online Store
Inspired by MetroUI style design, OT METROSHOP was made ​​with modern design and 100% responsive, brings you a clear and bright look. Mostly, OT METROSHOP was built with OMG framework but still be easily customized and extended. The Homepage comes with beautiful K2 content sliding module – the great highlight for your online shop.
OT METROSHOP also has the OMG Mega Menu integrated, will let you comfortably present menu system in your way. Take a look at the demo site and buy now to have your own wonderful experience.
FEATURES:
  • 100% tableless CSS,with changeable width of template and column layouts.
  • Solid color styles.
  • Hot QuickStart (SQL dump) available with both single purchase or membership plan.
  • Validates with XHTML 1.0 Transitional.
  • SEO friendly.
  • Tested in IE8, Firefox, Chrome, Safari and Opera browsers.
  • Joomla 2.5 native
  • OMG Responsive Framework
  • Clean and well comments in CSS and PHP code

Thứ Sáu, 31 tháng 5, 2013

Joomla template Vertex

Vertex

Vertex is a free responsive Joomla template, however the download will require a free membership. Vertex is built on Shape5 framework which offers 95 module positions, custom row and column width, and much more.
Vertex

Thứ Năm, 23 tháng 5, 2013

J1.5:Add article title to read more link

How to add an article title to the “Read more...” link?
For this you can use the overrides...
If they are not already there, in your template folder: create a new folder called 'html'.
In that folder you create a folder called 'com_content'.
And in that folder you create the folders called "category", "frontpage", "section"

Then locate the following files
  • (joomla)/components/com_content/views/category/tmpl/blog_item.php
  • (joomla)/components/com_content/views/frontpage/tmpl/default_item.php
  • (joomla)/components/com_content/views/section/tmpl/blog_item.php

Copy the files to your template's html folders
  • (yourtemplate)/html/com_content/category/blog_item.php
  • (yourtemplate)/html/com_content/frontpage/default_item.php
  • (yourtemplate)/html/com_content/section/blog_item.php

Open these files.
Nearly at the bottom of these files you should be seeing something like:
<a href="<?php echo $this->item->readmore_link; ?>" class="readon<?php echo $this->item->params->get('pageclass_sfx'); ?>">
<?php if ($this->item->readmore_register) :
echo JText::_('Register to read more...');
elseif ($readmore = $this->item->params->get('readmore')) :
echo $readmore;
else :
echo JText::sprintf('Read more...');
endif; ?></a>
Change the line
echo JText::sprintf('Read more...');
into
echo JText::sprintf('Read more', $this->item->title);
The “Read more” link should now look like this: Read more: (Article title)

J2.5:Add article title to read more link

Some people want to add the article title to the readmore link. To achieve this you can use a template override.
If they are not already there, in your template folder:
  1. Create a new folder called 'html'.
  2. In that folder you create a folder called 'com_content'.
  3. And in that folder you create the folders called "category", "frontpage" and "article"
Then locate the following files:
  • (joomla)/components/com_content/views/category/tmpl/blog_item.php
  • (joomla)/components/com_content/views/featured/tmpl/default_item.php
  • (joomla)/components/com_content/views/article/tmpl/default.php
Copy the files to their respective locations in the template's html file:
  • (yourtemplate)/html/com_content/category/blog_item.php
  • (yourtemplate)/html/com_content/featured/default_item.php
  • (yourtemplate)/html/com_content/article/default.php
Open these files. Towards the bottom of each of these files you should see something like:
<p class="readmore"><a class="btn" href="<?php echo $link; ?>"> <span class="icon-chevron-right"></span>
<?php if (!$params->get('access-view')) :
echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
elseif ($readmore = $this->item->alternative_readmore) :
echo $readmore;
if ($params->get('show_readmore_title', 0) != 0) :
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
endif;
elseif ($params->get('show_readmore_title', 0) == 0) :
echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
else :
echo JText::_('COM_CONTENT_READ_MORE');
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
endif; ?>
</a></p>
Change the line
echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
into
echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE', $this->item->title);
The “Read more” link should now look like this: Read more: (Article title)