Skip to content

Commit

Permalink
Version updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
vbezruchkin committed Mar 16, 2017
1 parent bc5e9f2 commit dc1cc25
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 24 deletions.
7 changes: 7 additions & 0 deletions docs/changelog.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
<ul>
<li>1.2.3
<ul>
<li>Minor style improvements</li>
<li>Comparison buttons</li>
<li>Better ratio dimensions for images</li>
</ul>
</li>
<li>1.2.2
<ul>
<li>Fix fields for parts and services</li>
Expand Down
6 changes: 3 additions & 3 deletions ia-categories.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
{foreach $categories as $category}
<div class="{$class_names[$num_columns - 1]}">
<div class="ia-cat">
{if isset($icons) && $icons}
{if !empty($icons)}
<span class="fa{if !empty($category.icon)} {$category.icon}{else} fa-folder-open{/if}"></span>
{/if}

<a href="{$category.url}">{$category.title|escape}</a>
{if isset($show_amount) && $show_amount}
{if !empty($show_amount)}
&mdash; {$category.num|default:0}
{/if}

{if isset($category.subcategories) && $category.subcategories}
{if !empty($category.subcategories)}
<div class="ia-cat__sub">
{foreach $category.subcategories as $subcategory}
<a href="{ia_url type='url' item=$item data=$subcategory}">{$subcategory.title|escape}</a>{if !$subcategory@last}, {/if}
Expand Down
8 changes: 4 additions & 4 deletions install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<summary>Template for Subrion Autos Script</summary>
<author>Gleb Surinov</author>
<contributor>Intelliants LLC</contributor>
<version>1.2.2</version>
<date>2017-03-10</date>
<version>1.2.3</version>
<date>2017-03-17</date>
<compatibility>4.1</compatibility>

<dependency type="package" exist="1">autos</dependency>
Expand Down Expand Up @@ -295,8 +295,8 @@
</blocks>

<phrases>
<phrase category="frontend" key="website_address">22-76, 10th md, Bishkek, Kyrgyzstan</phrase>
<phrase category="frontend" key="website_phone">+996 (312) 56-33-71</phrase>
<phrase category="frontend" key="website_address">2729 Nostrand Avenue, NY</phrase>
<phrase category="frontend" key="website_phone">1-800- 322-933994</phrase>
<phrase category="frontend" key="register">Sign up</phrase>
<phrase category="frontend" key="login_sign_up">Login / Sign up</phrase>
<phrase category="frontend" key="register_tag">Register on our website and sell your car. Many features included in your private area.</phrase>
Expand Down
18 changes: 9 additions & 9 deletions list-members.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -6,35 +6,35 @@
<div class="ia-item__actions">
{printFavorites item=$listing itemtype='members' guests=true tpl='no-text'}
{accountActions item=$listing itemtype='members'}
<a href="{ia_url item='members' data=$listing type='url'}">{lang key='view_profile'} <span class="fa fa-angle-double-right"></span></a>
<a href="{$listing.link}">{lang key='view_profile'} <span class="fa fa-angle-double-right"></span></a>
</div>

<h4 class="ia-item__title">
<a href="{ia_url item='members' data=$listing type='url'}">{$listing.fullname|default:$listing.username}</a>
<a href="{$listing.link}">{$listing.fullname|default:$listing.username}</a>
</h4>

<div class="ia-item__additional">
{if isset($listing.phone) && $listing.phone}
{if !empty($listing.phone)}
<p><span class="fa fa-phone"></span> {$listing.phone}</p>
{/if}
{if isset($listing.website) && $listing.website}
{if !empty($listing.website)}
<p><span class="fa fa-globe"></span> <a href="{$listing.website}">{lang key='field_website'}</a></p>
{/if}
{if isset($listing.facebook) && $listing.facebook}
{if !empty($listing.facebook)}
<p><span class="fa fa-facebook"></span> <a href="{$listing.facebook}">{lang key='field_facebook'}</a></p>
{/if}
{if isset($listing.twitter) && $listing.twitter}
{if !empty($listing.twitter)}
<p><span class="fa fa-twitter"></span> <a href="{$listing.twitter}">{lang key='field_twitter'}</a></p>
{/if}
{if isset($listing.gplus) && $listing.gplus}
{if !empty($listing.gplus)}
<p><span class="fa fa-google-plus"></span> <a href="{$listing.gplus}">{lang key='field_gplus'}</a></p>
{/if}
{if isset($listing.linkedin) && $listing.linkedin}
{if !empty($listing.linkedin)}
<p><span class="fa fa-linkedin"></span> <a href="{$listing.linkedin}">{lang key='field_linkedin'}</a></p>
{/if}
</div>

{if isset($listing.biography) && $listing.biography}
{if !empty($listing.biography)}
<p>{$listing.biography|escape|truncate:250:'...':true}</p>
{/if}

Expand Down
16 changes: 8 additions & 8 deletions modules/autos/block.tools.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
{foreach $car_blocks_data.recently_viewed as $entry}
<div class="ia-item f-tools__c__item">
{if !empty($entry.pictures)}
<a href="{ia_url type='url' item='autos' data=$entry}" class="ia-item__image">
<a href="{$entry.link}" class="ia-item__image">
{ia_image file=$entry.pictures[0] title=$entry.model|strip_tags|truncate:'30' width=60 type='thumbnail'}
</a>
{/if}

<div class="ia-item__content">
<h5 class="ia-item__title m-a-0">
<a href="{ia_url type='url' item='autos' data=$entry}">{$entry.model|strip_tags|truncate:'30'}</a>
<a href="{$entry.link}">{$entry.model|strip_tags|truncate:'30'}</a>
</h5>
{if !empty($entry.price)}<p class="m-a-0"><span class="fa fa-tag"></span> {$core.config.currency} {$entry.price}</p>{/if}
</div>
Expand Down Expand Up @@ -70,14 +70,14 @@ $(function() {
{foreach $car_blocks_data.saved_listings as $entry}
<div class="ia-item f-tools__c__item">
{if !empty($entry.pictures)}
<a href="{ia_url type='url' item='autos' data=$entry}" class="ia-item__image">
<a href="{$entry.link}" class="ia-item__image">
{ia_image file=$entry.pictures[0] title=$entry.model|strip_tags|truncate:'30' width=60 type='thumbnail'}
</a>
{/if}

<div class="ia-item__content">
<h5 class="ia-item__title m-a-0">
<a href="{ia_url type='url' item='autos' data=$entry}">{$entry.model|strip_tags|truncate:'30'}</a>
<a href="{$entry.link}">{$entry.model|strip_tags|truncate:'30'}</a>
</h5>
{if !empty($entry.price)}<p class="m-a-0"><span class="fa fa-tag"></span> {$core.config.currency} {$entry.price}</p>{/if}
</div>
Expand Down Expand Up @@ -172,14 +172,14 @@ $(function() {
{foreach $car_blocks_data.recently_viewed as $entry}
<div class="ia-item">
{if !empty($entry.pictures)}
<a href="{ia_url type='url' item='autos' data=$entry}" class="ia-item__image">
<a href="{$entry.link}" class="ia-item__image">
{ia_image file=$entry.pictures[0] title=$entry.model|strip_tags|truncate:'30' width=60 type='thumbnail'}
</a>
{/if}

<div class="ia-item__content">
<h5 class="ia-item__title">
<a href="{ia_url type='url' item='autos' data=$entry}">{$entry.model|strip_tags|truncate:'30'}</a>
<a href="{$entry.link}">{$entry.model|strip_tags|truncate:'30'}</a>
</h5>
{if !empty($entry.price)}<p><span class="fa fa-tag"></span> {$core.config.currency} {$entry.price}</p>{/if}
</div>
Expand All @@ -196,14 +196,14 @@ $(function() {
{foreach $car_blocks_data.saved_listings as $entry}
<div class="ia-item">
{if !empty($entry.pictures)}
<a href="{ia_url type='url' item='autos' data=$entry}" class="ia-item__image">
<a href="{$entry.link}" class="ia-item__image">
{ia_image file=$entry.pictures[0] title=$entry.model|strip_tags|truncate:'30' width=60 type='thumbnail'}
</a>
{/if}

<div class="ia-item__content">
<h5 class="ia-item__title">
<a href="{ia_url type='url' item='autos' data=$entry}">{$entry.model|strip_tags|truncate:'30'}</a>
<a href="{$entry.link}">{$entry.model|strip_tags|truncate:'30'}</a>
</h5>
{if !empty($entry.price)}<p><span class="fa fa-tag"></span> {$core.config.currency} {$entry.price}</p>{/if}
</div>
Expand Down

0 comments on commit dc1cc25

Please sign in to comment.