[-] FO: improvement on h4/h5 edits (id become class)
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- MODULE Home Block best sellers -->
|
||||
<div id="best-sellers_block_center" class="block products_block">
|
||||
<p id="title">{l s='Top sellers' mod='blockbestsellers'}</p>
|
||||
<p class="title_block">{l s='Top sellers' mod='blockbestsellers'}</p>
|
||||
{if isset($best_sellers) AND $best_sellers}
|
||||
<div class="block_content">
|
||||
{assign var='liHeight' value=320}
|
||||
@@ -36,7 +36,7 @@
|
||||
<ul style="height:{$ulHeight}px;">
|
||||
{foreach from=$best_sellers item=product name=myLoop}
|
||||
<li style="border-bottom:0" class="ajax_block_product {if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if} {if $smarty.foreach.myLoop.iteration%$nbItemsPerLine == 0}last_item_of_line{elseif $smarty.foreach.myLoop.iteration%$nbItemsPerLine == 1}clear{/if} {if $smarty.foreach.myLoop.iteration > ($smarty.foreach.myLoop.total - ($smarty.foreach.myLoop.total % $nbItemsPerLine))}last_line{/if}">
|
||||
<p id="s_title"><a href="{$product.link}" title="{$product.name|truncate:32:'...'|escape:'htmlall':'UTF-8'}">{$product.name|truncate:27:'...'|escape:'htmlall':'UTF-8'}</a></p>
|
||||
<p class="s_title_block"><a href="{$product.link}" title="{$product.name|truncate:32:'...'|escape:'htmlall':'UTF-8'}">{$product.name|truncate:27:'...'|escape:'htmlall':'UTF-8'}</a></p>
|
||||
<div class="product_desc"><a href="{$product.link}" title="{l s='More' mod='blockbestsellers'}">{$product.description_short|strip_tags|truncate:130:'...'}</a></div>
|
||||
<a href="{$product.link}" title="{$product.name|escape:html:'UTF-8'}" class="product_image"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'home_default')}" height="{$homeSize.height}" width="{$homeSize.width}" alt="{$product.name|escape:html:'UTF-8'}" /></a>
|
||||
<div>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
*}
|
||||
|
||||
<!-- MODULE Block best sellers -->
|
||||
<div id="best-sellers_block_right" class="block products_block">
|
||||
<div id="best-sellers_block_right" class="block products_block">
|
||||
<p class="title_block"><a href="{$link->getPageLink('best-sales')}">{l s='Top sellers' mod='blockbestsellers'}</a></p>
|
||||
<div class="block_content">
|
||||
{if $best_sellers|@count > 0}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* Special style for block cart*/
|
||||
#left_column #cart_block, #right_column #cart_block {
|
||||
}
|
||||
#header #cart_block #title {
|
||||
#header #cart_block .title_block {
|
||||
display: none;
|
||||
}
|
||||
#header #cart_block {
|
||||
@@ -22,7 +22,7 @@
|
||||
background:#eee
|
||||
}
|
||||
#cart_block.cart_block_hover {display:block}
|
||||
#cart_block #title span {
|
||||
#cart_block .title_block span {
|
||||
float: right;
|
||||
padding-left: 10px;
|
||||
text-transform: none;
|
||||
|
||||
@@ -43,7 +43,7 @@ var delete_txt = '{l s='Delete' mod='blockcart'}';
|
||||
|
||||
<!-- MODULE Block cart -->
|
||||
<div id="cart_block" class="block exclusive">
|
||||
<p id="title">
|
||||
<p class="title_block">
|
||||
<a href="{$link->getPageLink("$order_process", true)}" title="{l s='View my shopping cart' mod='blockcart'}" rel="nofollow">{l s='Cart' mod='blockcart'}</a>
|
||||
{if $ajax_allowed}
|
||||
<span id="block_cart_expand" {if isset($colapseExpandStatus) && $colapseExpandStatus eq 'expanded' || !isset($colapseExpandStatus)}class="hidden"{/if}> </span>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- Block categories module -->
|
||||
<div id="categories_block_left" class="block">
|
||||
<p id="title">{l s='Categories' mod='blockcategories'}</p>
|
||||
<p class="title_block">{l s='Categories' mod='blockcategories'}</p>
|
||||
<div class="block_content">
|
||||
<ul class="tree {if $isDhtml}dhtml{/if}">
|
||||
{foreach from=$blockCategTree.children item=child name=blockCategTree}
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- Block categories module -->
|
||||
<div class="blockcategories_footer">
|
||||
<p id="title">{l s='Categories' mod='blockcategories'}</p>
|
||||
<p class="title_block">{l s='Categories' mod='blockcategories'}</p>
|
||||
<div class="category_footer" style="float:left;clear:none;width:{$widthColumn}%">
|
||||
<div style="float:left" class="list">
|
||||
<ul class="tree {if $isDhtml}dhtml{/if}">
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
<!-- Block CMS module -->
|
||||
{foreach from=$cms_titles key=cms_key item=cms_title}
|
||||
<div id="informations_block_left_{$cms_key}" class="block informations_block_left">
|
||||
<p id="title"><a href="{$cms_title.category_link}">{if !empty($cms_title.name)}{$cms_title.name}{else}{$cms_title.category_name}{/if}</a></p>
|
||||
<p class="title_block"><a href="{$cms_title.category_link}">{if !empty($cms_title.name)}{$cms_title.name}{else}{$cms_title.category_name}{/if}</a></p>
|
||||
<ul class="block_content">
|
||||
{foreach from=$cms_title.categories item=cms_page}
|
||||
{if isset($cms_page.link)}<li class="bullet"><b style="margin-left:2em;">
|
||||
@@ -45,7 +45,7 @@
|
||||
{else}
|
||||
<!-- MODULE Block footer -->
|
||||
<div class="block_various_links" id="block_various_links_footer">
|
||||
<p id="title">{l s='Information' mod='blockcms'}</p>
|
||||
<p class="title_block">{l s='Information' mod='blockcms'}</p>
|
||||
<ul>
|
||||
{if !$PS_CATALOG_MODE}<li class="first_item"><a href="{$link->getPageLink('prices-drop')}" title="{l s='Specials' mod='blockcms'}">{l s='Specials' mod='blockcms'}</a></li>{/if}
|
||||
<li class="{if $PS_CATALOG_MODE}first_{/if}item"><a href="{$link->getPageLink('new-products')}" title="{l s='New products' mod='blockcms'}">{l s='New products' mod='blockcms'}</a></li>
|
||||
|
||||
@@ -9,6 +9,12 @@
|
||||
font-size: 13px;
|
||||
line-height: 18px
|
||||
}
|
||||
|
||||
#contact_block p.title_block {
|
||||
padding:6px 11px;
|
||||
font-size: 12px;
|
||||
line-height: auto
|
||||
}
|
||||
#contact_block p.tel {
|
||||
margin:0 0 0 60px;
|
||||
padding-left: 26px;
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
*}
|
||||
|
||||
<div id="contact_block" class="block">
|
||||
<p id="title">{l s='Contact us' mod='blockcontact'}</p>
|
||||
<p class="title_block">{l s='Contact us' mod='blockcontact'}</p>
|
||||
<div class="block_content clearfix">
|
||||
<p>{l s='Our hotline is available 24/7' mod='blockcontact'}</p>
|
||||
{if $telnumber != ''}<p class="tel"><span class="label">{l s='Phone:' mod='blockcontact'}</span>{$telnumber|escape:'htmlall':'UTF-8'}</p>{/if}
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
*}
|
||||
|
||||
<!-- MODULE Block contact infos -->
|
||||
<div id="block_contact_infos">
|
||||
<div id="block_contact_infos">
|
||||
<p class="title_block">{l s='Contact us' mod='blockcontactinfos'}</p>
|
||||
<ul>
|
||||
{if $blockcontactinfos_company != ''}<li><strong>{$blockcontactinfos_company|escape:'htmlall':'UTF-8'}</strong></li>{/if}
|
||||
|
||||
@@ -34,7 +34,7 @@ param_product_url = '';
|
||||
{/if}
|
||||
</script>
|
||||
<div id="layered_block_left" class="block">
|
||||
<p id="title">{l s='Catalog' mod='blocklayered'}</p>
|
||||
<p class="title_block">{l s='Catalog' mod='blocklayered'}</p>
|
||||
<div class="block_content">
|
||||
<form action="#" id="layered_form">
|
||||
<div>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- Block links module -->
|
||||
<div id="links_block_left" class="block">
|
||||
<p id="title">
|
||||
<p class="title_block">
|
||||
{if $url}
|
||||
<a href="{$url|escape}">{$title|escape}</a>
|
||||
{else}
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- Block manufacturers module -->
|
||||
<div id="manufacturers_block_left" class="block blockmanufacturer">
|
||||
<p id="title">{if $display_link_manufacturer}<a href="{$link->getPageLink('manufacturer')}" title="{l s='Manufacturers' mod='blockmanufacturer'}">{/if}{l s='Manufacturers' mod='blockmanufacturer'}{if $display_link_manufacturer}</a>{/if}</p>
|
||||
<p class="title_block">{if $display_link_manufacturer}<a href="{$link->getPageLink('manufacturer')}" title="{l s='Manufacturers' mod='blockmanufacturer'}">{/if}{l s='Manufacturers' mod='blockmanufacturer'}{if $display_link_manufacturer}</a>{/if}</p>
|
||||
<div class="block_content">
|
||||
{if $manufacturers}
|
||||
{if $text_list}
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- Block myaccount module -->
|
||||
<div class="block myaccount">
|
||||
<p id="title"><a href="{$link->getPageLink('my-account', true)}">{l s='My account' mod='blockmyaccount'}</a></p>
|
||||
<p class="title_block"><a href="{$link->getPageLink('my-account', true)}">{l s='My account' mod='blockmyaccount'}</a></p>
|
||||
<div class="block_content">
|
||||
<ul class="bullet">
|
||||
<li><a href="{$link->getPageLink('history', true)}" title="">{l s='My orders' mod='blockmyaccount'}</a></li>
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
display: block;
|
||||
padding: 7px 11px 5px 22px;
|
||||
color: #333;
|
||||
background: url("../blockcms/img/arrow_right_2.png") no-repeat 10px 10px transparent;
|
||||
}
|
||||
.myaccount p.logout {
|
||||
padding-bottom:0;
|
||||
@@ -14,9 +15,9 @@
|
||||
|
||||
|
||||
/* block myaccount in footer */
|
||||
#footer .myaccount #title {background: none;}
|
||||
#footer .myaccount .title_block {background: none;}
|
||||
#footer .myaccount .logout {display:none;}
|
||||
#footer .myaccount #title {
|
||||
#footer .myaccount .title_block {
|
||||
padding:0 0 10px 0;
|
||||
background:none
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- Block myaccount module -->
|
||||
<div class="block myaccount">
|
||||
<p id="title"><a href="{$link->getPageLink('my-account', true)}" title="{l s='Manage my customer account' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My account' mod='blockmyaccountfooter'}</a></p>
|
||||
<p class="title_block"><a href="{$link->getPageLink('my-account', true)}" title="{l s='Manage my customer account' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My account' mod='blockmyaccountfooter'}</a></p>
|
||||
<div class="block_content">
|
||||
<ul class="bullet">
|
||||
<li><a href="{$link->getPageLink('history', true)}" title="{l s='List of my orders' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My orders' mod='blockmyaccountfooter'}</a></li>
|
||||
|
||||
@@ -37,6 +37,11 @@
|
||||
padding:0;
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
#new-products_block_right p.title_block {
|
||||
padding:6px 11px;
|
||||
text-align:left;
|
||||
}
|
||||
#new-products_block_right .button_large {
|
||||
padding:0;
|
||||
border:none;
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- MODULE Block new products -->
|
||||
<div id="new-products_block_right" class="block products_block">
|
||||
<p id="title"><a href="{$link->getPageLink('new-products')}" title="{l s='New products' mod='blocknewproducts'}">{l s='New products' mod='blocknewproducts'}</a></p>
|
||||
<p class="title_block"><a href="{$link->getPageLink('new-products')}" title="{l s='New products' mod='blocknewproducts'}">{l s='New products' mod='blocknewproducts'}</a></p>
|
||||
<div class="block_content">
|
||||
{if $new_products !== false}
|
||||
<ul class="product_images clearfix">
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
border:1px solid #ccc;
|
||||
background:#eee;
|
||||
}
|
||||
#newsletter_block_left #title {
|
||||
#newsletter_block_left .title_block {
|
||||
padding:0 0 12px 28px;
|
||||
color:#666;
|
||||
text-shadow:0 1px 0 #fff;
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
<!-- Block Newsletter module-->
|
||||
|
||||
<div id="newsletter_block_left" class="block">
|
||||
<p id="title">{l s='Newsletter' mod='blocknewsletter'}</p>
|
||||
<p class="title_block">{l s='Newsletter' mod='blocknewsletter'}</p>
|
||||
<div class="block_content">
|
||||
{if isset($msg) && $msg}
|
||||
<p class="{if $nw_error}warning_inline{else}success_inline{/if}">{$msg}</p>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- Block RSS module-->
|
||||
<div id="rss_block_left" class="block">
|
||||
<p id="title">{$title}</p>
|
||||
<p class="title_block">{$title}</p>
|
||||
<div class="block_content">
|
||||
{if $rss_links}
|
||||
<ul>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- Block search module -->
|
||||
<div id="search_block_left" class="block exclusive">
|
||||
<p id="title">{l s='Search' mod='blocksearch'}</p>
|
||||
<p class="title_block">{l s='Search' mod='blocksearch'}</p>
|
||||
<form method="get" action="{$link->getPageLink('search', true)}" id="searchbox">
|
||||
<p class="block_content">
|
||||
<label for="search_query_block">{l s='Enter a product name' mod='blocksearch'}</label>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*}
|
||||
|
||||
<div id="social_block">
|
||||
<div id="social_block">
|
||||
<p class="title_block">{l s='Follow us' mod='blocksocial'}</p>
|
||||
<ul>
|
||||
{if $facebook_url != ''}<li class="facebook"><a href="{$facebook_url|escape:html:'UTF-8'}">{l s='Facebook' mod='blocksocial'}</a></li>{/if}
|
||||
|
||||
@@ -4,12 +4,17 @@
|
||||
font-weight:bold;
|
||||
text-align:right
|
||||
}
|
||||
|
||||
#special_block_right p.title_block {
|
||||
padding:6px 11px;
|
||||
text-align:left
|
||||
}
|
||||
#special_block_right .products li {
|
||||
padding:15px 0;
|
||||
width: 130px;
|
||||
border:none;
|
||||
}
|
||||
#special_block_right li #s_title {
|
||||
#special_block_right li .s_title_block {
|
||||
padding:0 0 3px 0;
|
||||
font-size:12px;
|
||||
text-align:left;
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- MODULE Block specials -->
|
||||
<div id="special_block_right" class="block products_block exclusive blockspecials">
|
||||
<p id="title"><a href="{$link->getPageLink('prices-drop')}" title="{l s='Specials' mod='blockspecials'}">{l s='Specials' mod='blockspecials'}</a></p>
|
||||
<p class="title_block"><a href="{$link->getPageLink('prices-drop')}" title="{l s='Specials' mod='blockspecials'}">{l s='Specials' mod='blockspecials'}</a></p>
|
||||
<div class="block_content">
|
||||
|
||||
{if $special}
|
||||
@@ -43,7 +43,7 @@
|
||||
{/if}
|
||||
{/if}
|
||||
|
||||
<p id="s_title"><a href="{$special.link}" title="{$special.name|escape:html:'UTF-8'}">{$special.name|escape:html:'UTF-8'}</a></p>
|
||||
<p class="s_title_block"><a href="{$special.link}" title="{$special.name|escape:html:'UTF-8'}">{$special.name|escape:html:'UTF-8'}</a></p>
|
||||
{if !$PS_CATALOG_MODE}
|
||||
<span class="price-discount">{if !$priceDisplay}{displayWtPrice p=$special.price_without_reduction}{else}{displayWtPrice p=$priceWithoutReduction_tax_excl}{/if}</span>
|
||||
<span class="price">{if !$priceDisplay}{displayWtPrice p=$special.price}{else}{displayWtPrice p=$special.price_tax_exc}{/if}</span>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- Block stores module -->
|
||||
<div id="stores_block_left" class="block">
|
||||
<p id="title"><a href="{$link->getPageLink('stores')}" title="{l s='Our stores' mod='blockstore'}">{l s='Our stores' mod='blockstore'}</a></p>
|
||||
<p class="title_block"><a href="{$link->getPageLink('stores')}" title="{l s='Our stores' mod='blockstore'}">{l s='Our stores' mod='blockstore'}</a></p>
|
||||
<div class="block_content blockstore">
|
||||
<p class="store_image"><a href="{$link->getPageLink('stores')}" title="{l s='Our stores' mod='blockstore'}"><img src="{$module_dir}{$store_img}" alt="{l s='Our stores' mod='blockstore'}" width="174" height="115" /></a></p>
|
||||
<p>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- Block suppliers module -->
|
||||
<div id="suppliers_block_left" class="block blocksupplier">
|
||||
<p id="title">{if $display_link_supplier}<a href="{$link->getPageLink('supplier')}" title="{l s='Suppliers' mod='blocksupplier'}">{/if}{l s='Suppliers' mod='blocksupplier'}{if $display_link_supplier}</a>{/if}</p>
|
||||
<p class="title_block">{if $display_link_supplier}<a href="{$link->getPageLink('supplier')}" title="{l s='Suppliers' mod='blocksupplier'}">{/if}{l s='Suppliers' mod='blocksupplier'}{if $display_link_supplier}</a>{/if}</p>
|
||||
<div class="block_content">
|
||||
{if $suppliers}
|
||||
{if $text_list}
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- Block tags module -->
|
||||
<div id="tags_block_left" class="block tags_block">
|
||||
<p id="title">{l s='Tags' mod='blocktags'}</p>
|
||||
<p class="title_block">{l s='Tags' mod='blocktags'}</p>
|
||||
<p class="block_content">
|
||||
{if $tags}
|
||||
{foreach from=$tags item=tag name=myLoop}
|
||||
|
||||
@@ -16,14 +16,14 @@
|
||||
margin-left: 10px;
|
||||
width: 130px;
|
||||
}
|
||||
#viewed-products_block_left li .text_desc #s_title {
|
||||
#viewed-products_block_left li .text_desc .s_title_block {
|
||||
padding:0 0 5px 0;
|
||||
font-size:12px;
|
||||
color:#333;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#viewed-products_block_left li .text_desc #s_title a{
|
||||
#viewed-products_block_left li .text_desc .s_title_block a{
|
||||
color:#333;
|
||||
}
|
||||
#viewed-products_block_left li .text_desc p,
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- Block Viewed products -->
|
||||
<div id="viewed-products_block_left" class="block products_block">
|
||||
<p id="title">{l s='Viewed products' mod='blockviewed'}</p>
|
||||
<p class="title_block">{l s='Viewed products' mod='blockviewed'}</p>
|
||||
<div class="block_content">
|
||||
<ul class="products clearfix">
|
||||
{foreach from=$productsViewedObj item=viewedProduct name=myLoop}
|
||||
@@ -34,7 +34,7 @@
|
||||
<img src="{if isset($viewedProduct->id_image) && $viewedProduct->id_image}{$link->getImageLink($viewedProduct->link_rewrite, $viewedProduct->cover, 'medium_default')}{else}{$img_prod_dir}{$lang_iso}-default-medium_default.jpg{/if}" height="{$mediumSize.height}" width="{$mediumSize.width}" alt="{$viewedProduct->legend|escape:html:'UTF-8'}" />
|
||||
</a>
|
||||
<div class="text_desc">
|
||||
<p id="s_title"><a href="{$viewedProduct->product_link}" title="{l s='More about' mod='blockviewed'} {$viewedProduct->name|escape:html:'UTF-8'}">{$viewedProduct->name|truncate:14:'...'|escape:html:'UTF-8'}</a></p>
|
||||
<p class="s_title_block"><a href="{$viewedProduct->product_link}" title="{l s='More about' mod='blockviewed'} {$viewedProduct->name|escape:html:'UTF-8'}">{$viewedProduct->name|truncate:14:'...'|escape:html:'UTF-8'}</a></p>
|
||||
<p><a href="{$viewedProduct->product_link}" title="{l s='More about' mod='blockviewed'} {$viewedProduct->name|escape:html:'UTF-8'}">{$viewedProduct->description_short|strip_tags:'UTF-8'|truncate:44}</a></p>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
@@ -222,7 +222,7 @@ ul.wlp_bought_list li .product_infos {
|
||||
margin-left:10px;
|
||||
width:126px
|
||||
}
|
||||
ul.wlp_bought_list li .product_infos #s_title.product_name {
|
||||
ul.wlp_bought_list li .product_infos .s_title_block.product_name {
|
||||
padding:5px 0;
|
||||
font-size:12px;
|
||||
color:#222
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
*}
|
||||
|
||||
<div id="wishlist_block" class="block account">
|
||||
<p id="title">
|
||||
<p class="title_block">
|
||||
<a href="{$wishlist_link}">{l s='Wishlist' mod='blockwishlist'}</a>
|
||||
</p>
|
||||
<div class="block_content">
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
height:240px
|
||||
}
|
||||
#featured-products_block_center li.last_item_of_line {margin-right:0;}
|
||||
#featured-products_block_center #s_title {
|
||||
#featured-products_block_center .s_title_block {
|
||||
padding-top:5px;
|
||||
height:30px;
|
||||
font-size:12px;
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
<!-- MODULE Home Featured Products -->
|
||||
<div id="featured-products_block_center" class="block products_block clearfix">
|
||||
<p id="title">{l s='Featured products' mod='homefeatured'}</p>
|
||||
<p class="title_block">{l s='Featured products' mod='homefeatured'}</p>
|
||||
{if isset($products) AND $products}
|
||||
<div class="block_content">
|
||||
{assign var='liHeight' value=250}
|
||||
@@ -39,7 +39,7 @@
|
||||
{if $totModulo == 0}{assign var='totModulo' value=$nbItemsPerLine}{/if}
|
||||
<li class="ajax_block_product {if $smarty.foreach.homeFeaturedProducts.first}first_item{elseif $smarty.foreach.homeFeaturedProducts.last}last_item{else}item{/if} {if $smarty.foreach.homeFeaturedProducts.iteration%$nbItemsPerLine == 0}last_item_of_line{elseif $smarty.foreach.homeFeaturedProducts.iteration%$nbItemsPerLine == 1} {/if} {if $smarty.foreach.homeFeaturedProducts.iteration > ($smarty.foreach.homeFeaturedProducts.total - $totModulo)}last_line{/if}">
|
||||
<a href="{$product.link}" title="{$product.name|escape:html:'UTF-8'}" class="product_image"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'home_default')}" height="{$homeSize.height}" width="{$homeSize.width}" alt="{$product.name|escape:html:'UTF-8'}" />{if isset($product.new) && $product.new == 1}<span class="new">{l s='New' mod='homefeatured'}</span>{/if}</a>
|
||||
<p id="s_title"><a href="{$product.link}" title="{$product.name|truncate:50:'...'|escape:'htmlall':'UTF-8'}">{$product.name|truncate:35:'...'|escape:'htmlall':'UTF-8'}</a></p>
|
||||
<p class="s_title_block"><a href="{$product.link}" title="{$product.name|truncate:50:'...'|escape:'htmlall':'UTF-8'}">{$product.name|truncate:35:'...'|escape:'htmlall':'UTF-8'}</a></p>
|
||||
<div class="product_desc"><a href="{$product.link}" title="{l s='More' mod='homefeatured'}">{$product.description_short|strip_tags|truncate:65:'...'}</a></div>
|
||||
<div>
|
||||
<a class="lnk_more" href="{$product.link}" title="{l s='View' mod='homefeatured'}">{l s='View' mod='homefeatured'}</a>
|
||||
|
||||
@@ -185,7 +185,7 @@
|
||||
overflow:hidden;
|
||||
width: 360px
|
||||
}
|
||||
#product_comments_block_tab div.comment_details #title {padding-bottom:10px}
|
||||
#product_comments_block_tab div.comment_details .title_block {padding-bottom:10px}
|
||||
#product_comments_block_tab div.comment_details p {padding-bottom:10px}
|
||||
#product_comments_block_tab div.comment_details ul {
|
||||
list-style-type:none;
|
||||
|
||||
@@ -52,7 +52,7 @@ var productcomments_url_rewrite = '{$productcomments_url_rewriting_activated}';
|
||||
</div>
|
||||
</div>
|
||||
<div class="comment_details">
|
||||
<p id="title">{$comment.title}</p>
|
||||
<p class="title_block">{$comment.title}</p>
|
||||
<p>{$comment.content|escape:'html':'UTF-8'|nl2br}</p>
|
||||
<ul>
|
||||
{if $comment.total_advice > 0}
|
||||
|
||||
@@ -157,7 +157,7 @@ $(function(){ldelim}
|
||||
<fieldset>
|
||||
<h3>{l s='Create your account'}</h3>
|
||||
<div class="form_content clearfix">
|
||||
<p id="title">{l s='Enter your e-mail address to create an account'}.</p>
|
||||
<p class="title_block">{l s='Enter your e-mail address to create an account'}.</p>
|
||||
<div class="error" id="create_account_error" style="display:none"></div>
|
||||
<p class="text">
|
||||
<label for="email_create">{l s='E-mail address'}</label>
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
<div class="block-cms">
|
||||
<h1><a href="{if $cms_category->id eq 1}{$base_dir}{else}{$link->getCMSCategoryLink($cms_category->id, $cms_category->link_rewrite)}{/if}">{$cms_category->name|escape:'htmlall':'UTF-8'}</a></h1>
|
||||
{if isset($sub_category) & !empty($sub_category)}
|
||||
<p id="title">{l s='List of sub categories in %s:' sprintf=$cms_category->name}</p>
|
||||
<p class="title_block">{l s='List of sub categories in %s:' sprintf=$cms_category->name}</p>
|
||||
<ul class="bullet">
|
||||
{foreach from=$sub_category item=subcategory}
|
||||
<li>
|
||||
@@ -56,7 +56,7 @@
|
||||
</ul>
|
||||
{/if}
|
||||
{if isset($cms_pages) & !empty($cms_pages)}
|
||||
<p id="title">{l s='List of pages in %s:' sprintf=$cms_category->name}</p>
|
||||
<p class="title_block">{l s='List of pages in %s:' sprintf=$cms_category->name}</p>
|
||||
<ul class="bullet">
|
||||
{foreach from=$cms_pages item=cmspages}
|
||||
<li>
|
||||
|
||||
@@ -23,7 +23,7 @@ table#product_comparison {
|
||||
text-align:center
|
||||
}
|
||||
#product_comparison .product_image img {border:1px solid #ccc}
|
||||
#product_comparison #s_title {
|
||||
#product_comparison .s_title_block {
|
||||
margin-bottom:10px;
|
||||
font-size:12px;
|
||||
color:#000;
|
||||
|
||||
@@ -79,7 +79,7 @@ h3 {
|
||||
padding-bottom:20px;
|
||||
font-size:16px
|
||||
}
|
||||
#title{
|
||||
.title_block {
|
||||
padding-bottom:20px;
|
||||
font-size:14px
|
||||
}
|
||||
@@ -287,7 +287,7 @@ table.table_block td {
|
||||
/* BLOCK .block ******************************************************************************** */
|
||||
.block {margin-bottom:20px}
|
||||
#footer .block {margin-bottom:0}
|
||||
.block #title {
|
||||
.block .title_block {
|
||||
padding:6px 11px;
|
||||
font-size:12px;
|
||||
color:#fff;
|
||||
@@ -297,7 +297,7 @@ table.table_block td {
|
||||
text-align:left;
|
||||
font-weight: bold;
|
||||
}
|
||||
.block #title a {color:#fff}
|
||||
.block .title_block a {color:#fff}
|
||||
.block ul {list-style-type:none}
|
||||
.block li.last { border:none}
|
||||
.block li a {
|
||||
@@ -579,12 +579,12 @@ div.star_hover a, div.star a:hover { background-position: 0 -32px }
|
||||
width:175px
|
||||
}
|
||||
.blockcategories_footer {margin-left:0}
|
||||
#footer #title {
|
||||
#footer .title_block {
|
||||
padding-bottom: 10px;
|
||||
text-transform:uppercase
|
||||
}
|
||||
#footer #title,
|
||||
#footer #title a {
|
||||
#footer .title_block ,
|
||||
#footer .title_block a {
|
||||
font-weight:normal;
|
||||
font-size:14px;
|
||||
color:#fff
|
||||
@@ -596,7 +596,7 @@ div.star_hover a, div.star a:hover { background-position: 0 -32px }
|
||||
#footer li a {color:#fff}
|
||||
|
||||
#footer .myaccount {padding: 15px 10px}
|
||||
#footer .myaccount #title {
|
||||
#footer .myaccount .title_block {
|
||||
padding:0 0 10px 0;
|
||||
background:none;
|
||||
text-shadow:none
|
||||
@@ -803,9 +803,9 @@ table#cart_summary #total_price_container {
|
||||
border-bottom:1px solid #999;
|
||||
}
|
||||
|
||||
.cart_voucher #title,
|
||||
.cart_voucher .title_block ,
|
||||
.cart_voucher p {float:left;}
|
||||
.cart_voucher #title {
|
||||
.cart_voucher .title_block {
|
||||
margin-right:12px;
|
||||
padding:5px 0;
|
||||
font-size:13px
|
||||
@@ -876,7 +876,7 @@ table#cart_summary .cart_total_price .total_price_container {
|
||||
border:1px solid #999;
|
||||
background:#fff
|
||||
}
|
||||
#order_carrier #title {
|
||||
#order_carrier .title_block {
|
||||
padding:0 15px;
|
||||
height: 29px;
|
||||
font-weight: bold;
|
||||
@@ -935,7 +935,7 @@ table#cart_summary .gift-icon {
|
||||
text-transform:uppercase;
|
||||
background:url(../img/bg_form_h3.png) repeat-x 0 0 #989898
|
||||
}
|
||||
#create-account_form #title {
|
||||
#create-account_form .title_block {
|
||||
padding-bottom:22px;
|
||||
font-size:11px;
|
||||
color:#333
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
#history #left_column {display:none}
|
||||
#history #center_column{width:757px}
|
||||
#history #center_column h1{margin-top:20px}
|
||||
#history #center_column #title{
|
||||
#history #center_column .title_block {
|
||||
margin:20px 0;
|
||||
padding:15px 20px;
|
||||
background:#ccc
|
||||
}
|
||||
#history #center_column #title input {
|
||||
#history #center_column .title_block input {
|
||||
position: relative;
|
||||
top: -8px;
|
||||
float:right;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
#my-account #center_column {width:757px}
|
||||
#my-account #center_column h1 {margin-bottom:20px}
|
||||
|
||||
#my-account #center_column #title {
|
||||
#my-account #center_column .title_block {
|
||||
font-weight:normal;
|
||||
font-size:12px;
|
||||
color:#666
|
||||
|
||||
@@ -507,6 +507,6 @@ ul#uploadable_files,ul#text_fields {
|
||||
display:inline-block;
|
||||
}
|
||||
|
||||
.accessories_block div ul li #s_title a, .accessories_block div ul li #s_title span {
|
||||
.accessories_block div ul li .s_title_block a, .accessories_block div ul li .s_title_block span {
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
@@ -95,7 +95,7 @@
|
||||
margin-right:10px;
|
||||
border:1px solid #ccc
|
||||
}
|
||||
.cluetip-product_scene #title{
|
||||
.cluetip-product_scene .title_block {
|
||||
display:inline-block;
|
||||
margin-bottom:5px;
|
||||
padding:0 !important;
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
{foreach from=$multipleAddresses item=address name=myLoop}
|
||||
<li>
|
||||
<a href="{$link->getPageLink('address', true, null, "id_address={$address.object.id|intval}")}" title="{l s='Update'}" data-ajax="false">
|
||||
<p id="title">{$address.object.alias}</p>
|
||||
<p class="title_block">{$address.object.alias}</p>
|
||||
{foreach from=$address.ordered name=adr_loop item=pattern}
|
||||
{assign var=addressKey value=" "|explode:$pattern}
|
||||
{foreach from=$addressKey item=key name="word_loop"}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<form action="{$link->getPageLink('authentication', true)}" method="post" id="create-account_form" class="std login_form">
|
||||
<h2>{l s='Create your account'}</h2>
|
||||
<div class="form_content clearfix">
|
||||
<p id="title">{l s='Enter your e-mail address to create an account'}.</p>
|
||||
<p class="title_block">{l s='Enter your e-mail address to create an account'}.</p>
|
||||
<fieldset>
|
||||
<span><input type="email" id="email_create" placeholder="{l s='E-mail address'}" name="email_create" value="{if isset($smarty.post.email_create)}{$smarty.post.email_create|escape:'htmlall':'UTF-8'|stripslashes}{/if}" class="account_input" /></span>
|
||||
</fieldset>
|
||||
|
||||
@@ -949,12 +949,12 @@ h2.site_map {
|
||||
margin:0 0 0 78px;
|
||||
}
|
||||
|
||||
.accessories_block li .col-right .inner p,.accessories_block li .col-right .inner #s_title {
|
||||
.accessories_block li .col-right .inner p,.accessories_block li .col-right .inner .s_title_block {
|
||||
margin:0;
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
.accessories_block li .col-right .inner #s_title {
|
||||
.accessories_block li .col-right .inner .s_title_block {
|
||||
font-size:10pt;
|
||||
}
|
||||
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
</div><!-- .col-left -->
|
||||
<div class="col-right">
|
||||
<div class="inner">
|
||||
<p id="s_title">{$accessory.name|escape:'htmlall':'UTF-8'}</p>
|
||||
<p class="s_title_block">{$accessory.name|escape:'htmlall':'UTF-8'}</p>
|
||||
<p>{$accessory.description_short|strip_tags|truncate:70:'...'}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
{l s='Your account has been created.'}
|
||||
</p>
|
||||
{/if}
|
||||
<p id="title">{l s='Welcome to your account. Here, you can manage your addresses and orders.'}</p>
|
||||
<p class="title_block">{l s='Welcome to your account. Here, you can manage your addresses and orders.'}</p>
|
||||
<ul class="myaccount_lnk_list">
|
||||
{if $has_customer_an_address}
|
||||
<li><a href="{$link->getPageLink('address', true)}" title="{l s='Add my first address'}"><img src="{$img_dir}icon/addrbook.gif" alt="{l s='Add my first address'}" class="icon" /> {l s='Add my first address'}</a></li>
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
<a href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category)|escape:'htmlall':'UTF-8'}"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'small_default')}" alt="{$product.name|escape:'htmlall':'UTF-8'}" {if isset($smallSize)}width="{$smallSize.width}" height="{$smallSize.height}" {/if} /></a>
|
||||
</td>
|
||||
<td class="cart_description">
|
||||
<p id="s_title"><a href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category)|escape:'htmlall':'UTF-8'}">{$product.name|escape:'htmlall':'UTF-8'}</a></p>
|
||||
<p class="s_title_block"><a href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category)|escape:'htmlall':'UTF-8'}">{$product.name|escape:'htmlall':'UTF-8'}</a></p>
|
||||
{if isset($product.attributes) && $product.attributes}<a href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category)|escape:'htmlall':'UTF-8'}">{$product.attributes|escape:'htmlall':'UTF-8'}</a>{/if}
|
||||
</td>
|
||||
<td class="cart_ref">{if $product.reference}{$product.reference|escape:'htmlall':'UTF-8'}{else}--{/if}</td>
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
<form action="{if isset($opc) && $opc}{$link->getPageLink('order-opc', true)}{else}{$link->getPageLink('order', true)}{/if}" method="post" class="submit">
|
||||
<div>
|
||||
<input type="hidden" value="{$order->id}" name="id_order"/>
|
||||
<p id="title">
|
||||
<p class="title_block">
|
||||
<input type="submit" value="{l s='Reorder'}" name="submitReorder" class="button exclusive" />
|
||||
{l s='Order Reference %s - placed on' sprintf=$order->getUniqReference()} {dateFormat date=$order->date_add full=0}
|
||||
</p>
|
||||
|
||||
@@ -30,14 +30,14 @@
|
||||
<h3 id="new_account_title">{l s='New Customer'}</h3>
|
||||
<div id="opc_account_choice">
|
||||
<div class="opc_float">
|
||||
<p id="title">{l s='Instant Checkout'}</p>
|
||||
<p class="title_block">{l s='Instant Checkout'}</p>
|
||||
<p>
|
||||
<input type="button" class="exclusive_large" id="opc_guestCheckout" value="{l s='Checkout as guest'}" />
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="opc_float">
|
||||
<p id="title">{l s='Create your account today and enjoy:'}</p>
|
||||
<p class="title_block">{l s='Create your account today and enjoy:'}</p>
|
||||
<ul class="bullet">
|
||||
<li>{l s='Personalized and secure access'}</li>
|
||||
<li>{l s='Fast and easy check out'}</li>
|
||||
|
||||
@@ -195,7 +195,7 @@
|
||||
{if $voucherAllowed}
|
||||
<form action="{if $opc}{$link->getPageLink('order-opc', true)}{else}{$link->getPageLink('order', true)}{/if}" method="post" id="voucher">
|
||||
<fieldset>
|
||||
<p id="title">><label for="discount_name">{l s='Vouchers'}</label></p>
|
||||
<p class="title_block"><label for="discount_name">{l s='Vouchers'}</label></p>
|
||||
<p>
|
||||
<input type="text" id="discount_name" name="discount_name" value="{if isset($discount_name) && $discount_name}{$discount_name}{/if}" />
|
||||
</p>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
*}
|
||||
{include file="./errors.tpl"}
|
||||
{if isset($orderRet)}
|
||||
<p id="title">{l s='RE#'}<span class="color-myaccount">{$orderRet->id|string_format:"%06d"}</span> {l s='on'} {dateFormat date=$order->date_add full=0}</p>
|
||||
<p class="title_block">{l s='RE#'}<span class="color-myaccount">{$orderRet->id|string_format:"%06d"}</span> {l s='on'} {dateFormat date=$order->date_add full=0}</p>
|
||||
<div>
|
||||
<p class="bold">{l s='We have logged your return request.'}</p>
|
||||
<p>{l s='Your package must be returned to us within'} {$nbdaysreturn} {l s='days of receiving your order.'}</p>
|
||||
|
||||
@@ -532,7 +532,7 @@ var fieldRequired = '{l s='Please fill in all required fields, then save the cus
|
||||
{if ($accessory.allow_oosp || $accessory.quantity > 0) AND $accessory.available_for_order AND !isset($restricted_country_mode) AND !$PS_CATALOG_MODE}
|
||||
{assign var='accessoryLink' value=$link->getProductLink($accessory.id_product, $accessory.link_rewrite, $accessory.category)}
|
||||
<li class="ajax_block_product {if $smarty.foreach.accessories_list.first}first_item{elseif $smarty.foreach.accessories_list.last}last_item{else}item{/if} product_accessories_description">
|
||||
<p id="s_title">
|
||||
<p class="s_title_block">
|
||||
<a href="{$accessoryLink|escape:'htmlall':'UTF-8'}">{$accessory.name|escape:'htmlall':'UTF-8'}</a>
|
||||
{if $accessory.show_price AND !isset($restricted_country_mode) AND !$PS_CATALOG_MODE} - <span class="price">{if $priceDisplay != 1}{displayWtPrice p=$accessory.price}{else}{displayWtPrice p=$accessory.price_tax_exc}{/if}</span>{/if}
|
||||
</p>
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
<a href="{$product->getLink()}" title="{$product->name|escape:html:'UTF-8'}" class="product_image" >
|
||||
<img src="{$link->getImageLink($product->link_rewrite, $product->id_image, 'home_default')}" alt="{$product->name|escape:html:'UTF-8'}" width="{$homeSize.width}" height="{$homeSize.height}" />
|
||||
</a>
|
||||
<p id="s_title"><a href="{$product->getLink()}" title="{$product->name|truncate:32:'...'|escape:'htmlall':'UTF-8'}">{$product->name|truncate:27:'...'|escape:'htmlall':'UTF-8'}</a></p>
|
||||
<p class="s_title_block"><a href="{$product->getLink()}" title="{$product->name|truncate:32:'...'|escape:'htmlall':'UTF-8'}">{$product->name|truncate:27:'...'|escape:'htmlall':'UTF-8'}</a></p>
|
||||
<div class="product_desc"><a href="{$product->getLink()}">{$product->description_short|strip_tags|truncate:60:'...'}</a></div>
|
||||
<a class="lnk_more" href="{$product->getLink()}" title="{l s='View'}">{l s='View'}</a>
|
||||
|
||||
|
||||
@@ -56,7 +56,7 @@ $(function () {ldelim}
|
||||
</div>
|
||||
{/if}
|
||||
<img src="{$link->getImageLink($product.id_product, $imageIds, 'medium_default')}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
|
||||
<p id="title"><span class="product_name">{$product.details->name}</span></p>
|
||||
<p class="title_block"><span class="product_name">{$product.details->name}</span></p>
|
||||
<p class="description">{$product.details->description_short|strip_tags|truncate:170:'...'}</p>
|
||||
</div>
|
||||
{/foreach}
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
<a href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category, null, null, $product.id_shop, $product.id_product_attribute)|escape:'htmlall':'UTF-8'}"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'small_default')}" alt="{$product.name|escape:'htmlall':'UTF-8'}" {if isset($smallSize)}width="{$smallSize.width}" height="{$smallSize.height}" {/if} /></a>
|
||||
</td>
|
||||
<td class="cart_description">
|
||||
<p id="s_title"><a href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category, null, null, $product.id_shop, $product.id_product_attribute)|escape:'htmlall':'UTF-8'}">{$product.name|escape:'htmlall':'UTF-8'}</a></p>
|
||||
<p class="s_title_block"><a href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category, null, null, $product.id_shop, $product.id_product_attribute)|escape:'htmlall':'UTF-8'}">{$product.name|escape:'htmlall':'UTF-8'}</a></p>
|
||||
{if isset($product.attributes) && $product.attributes}<a href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category, null, null, $product.id_shop, $product.id_product_attribute)|escape:'htmlall':'UTF-8'}">{$product.attributes|escape:'htmlall':'UTF-8'}</a>{/if}
|
||||
</td>
|
||||
<td class="cart_ref">{if $product.reference}{$product.reference|escape:'htmlall':'UTF-8'}{else}--{/if}</td>
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
</div>
|
||||
<a class="cart_last_product_img" href="{$link->getProductLink($lastProductAdded.id_product, $lastProductAdded.link_rewrite, $lastProductAdded.category, null, null, $lastProductAdded.id_shop)|escape:'htmlall':'UTF-8'}"><img src="{$link->getImageLink($lastProductAdded.link_rewrite, $lastProductAdded.id_image, 'small_default')}" alt="{$lastProductAdded.name|escape:'htmlall':'UTF-8'}"/></a>
|
||||
<div class="cart_last_product_content">
|
||||
<p id="s_title"><a href="{$link->getProductLink($lastProductAdded.id_product, $lastProductAdded.link_rewrite, $lastProductAdded.category, null, null, null, $lastProductAdded.id_product_attribute)|escape:'htmlall':'UTF-8'}">{$lastProductAdded.name|escape:'htmlall':'UTF-8'}</a></p>
|
||||
<p class="s_title_block"><a href="{$link->getProductLink($lastProductAdded.id_product, $lastProductAdded.link_rewrite, $lastProductAdded.category, null, null, null, $lastProductAdded.id_product_attribute)|escape:'htmlall':'UTF-8'}">{$lastProductAdded.name|escape:'htmlall':'UTF-8'}</a></p>
|
||||
{if isset($lastProductAdded.attributes) && $lastProductAdded.attributes}<a href="{$link->getProductLink($lastProductAdded.id_product, $lastProductAdded.link_rewrite, $lastProductAdded.category, null, null, null, $lastProductAdded.id_product_attribute)|escape:'htmlall':'UTF-8'}">{$lastProductAdded.attributes|escape:'htmlall':'UTF-8'}</a>{/if}
|
||||
</div>
|
||||
<br class="clear" />
|
||||
@@ -184,7 +184,7 @@
|
||||
{/if}
|
||||
<form action="{if $opc}{$link->getPageLink('order-opc', true)}{else}{$link->getPageLink('order', true)}{/if}" method="post" id="voucher">
|
||||
<fieldset>
|
||||
<p id="title"><label for="discount_name">{l s='Vouchers'}</label></p>
|
||||
<p class="title_block"><label for="discount_name">{l s='Vouchers'}</label></p>
|
||||
<p>
|
||||
<input type="text" class="discount_name" id="discount_name" name="discount_name" value="{if isset($discount_name) && $discount_name}{$discount_name}{/if}" />
|
||||
</p>
|
||||
|
||||
Reference in New Issue
Block a user