Jump to content

pattyo

Members
  • Posts

    63
  • Joined

  • Last visited

Profile Information

  • Location
    Slovakia
  • Activity
    User/Merchant

pattyo's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. Hello guys, does anybody know if exist some module to show how many customers viewed product in last hour?
  2. Hello guys, im using custom theme https://themeforest.net/item/bionic-responsive-digital-store-prestashop-theme/20900702 and i have 2 problems. 1. In file adress.tpl i need to edit code. As u can see on picture 2.PNG fields under "Firma" are messed up. I need to move it little bit to the left side so they will be centered with fields above. Can anybody help me where search in code or what add to code? 2. As u can see in picture 3.PNG on the contact side www.invictahodinky.eu/napiste-nam the fields are too light and they are almost invisible. Can somebody help me where is code to the colour of the text in this field? I cant find it even in google developer tool. I will be really greateful with any help. Thank you in advance! Here is the code from adress.tpl {* * 2007-2016 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2016 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {capture name=path}{l s='Billing Detail'}{/capture} <div class="box billing-detail col-lg-7 col-sm-7 col-xs-12"> <div class="billingAddressLine"> <p> <span>{l s='Returning customer?'}</span><a href="#">{l s='Click here to login'}</a> </p> <p> <span>{l s='Have a coupon?'}</span><a href="#">{l s='Click here to enter your code'}</a> </p> </div> <h1 class="page-subheading">{l s='Billing Detail'}</h1> <p class="info-title"> {if isset($id_address) && (isset($smarty.post.alias) || isset($address->alias))} {l s='Modify address'} {if isset($smarty.post.alias)} "{$smarty.post.alias}" {else} {if isset($address->alias)}"{$address->alias|escape:'html':'UTF-8'}"{/if} {/if} {else} {l s='To add a new address, please fill out the form below.'} {/if} </p> {include file="$tpl_dir./errors.tpl"} <p class="required"><sup>*</sup>{l s='Required field'}</p> <form action="{$link->getPageLink('address', true)|escape:'html':'UTF-8'}" method="post" class="std" id="add_address"> <!--h3 class="page-subheading">{if isset($id_address)}{l s='Your address'}{else}{l s='New address'}{/if}</h3--> {assign var="stateExist" value=false} {assign var="postCodeExist" value=false} {assign var="dniExist" value=false} {assign var="homePhoneExist" value=false} {assign var="mobilePhoneExist" value=false} {assign var="atLeastOneExists" value=false} {foreach from=$ordered_adr_fields item=field_name} {if $field_name eq 'company'} <div class="form-group"> <label for="company">{l s='Company'}{if isset($required_fields) && in_array($field_name, $required_fields)} <sup>*</sup>{/if}</label> <input class="form-control validate" data-validate="{$address_validation.$field_name.validate}" type="text" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company}{else}{if isset($address->company)}{$address->company|escape:'html':'UTF-8'}{/if}{/if}" /> </div> {/if} {if $field_name eq 'vat_number'} <div id="vat_area"> <div id="vat_number"> <div class="form-group"> <label for="vat-number">{l s='VAT number'}{if isset($required_fields) && in_array($field_name, $required_fields)} <sup>*</sup>{/if}</label> <input type="text" class="form-control validate" data-validate="{$address_validation.$field_name.validate}" id="vat-number" name="vat_number" value="{if isset($smarty.post.vat_number)}{$smarty.post.vat_number}{else}{if isset($address->vat_number)}{$address->vat_number|escape:'html':'UTF-8'}{/if}{/if}" /> </div> </div> </div> {/if} {if $field_name eq 'dni'} {assign var="dniExist" value=true} <div class="required form-group dni"> <label for="dni">{l s='Identification number'} <sup>*</sup></label> <input class="form-control" data-validate="{$address_validation.$field_name.validate}" type="text" name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni}{else}{if isset($address->dni)}{$address->dni|escape:'html':'UTF-8'}{/if}{/if}" /> <span class="form_info">{l s='DNI / NIF / NIE'}</span> </div> {/if} {if $field_name eq 'firstname'} <div class="required form-group"> <label for="firstname">{l s='First name'} <sup>*</sup></label> <input class="is_required validate form-control" data-validate="{$address_validation.$field_name.validate}" type="text" name="firstname" id="firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{else}{if isset($address->firstname)}{$address->firstname|escape:'html':'UTF-8'}{/if}{/if}" /> </div> {/if} {if $field_name eq 'lastname'} <div class="required form-group"> <label for="lastname">{l s='Last name'} <sup>*</sup></label> <input class="is_required validate form-control" data-validate="{$address_validation.$field_name.validate}" type="text" id="lastname" name="lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{else}{if isset($address->lastname)}{$address->lastname|escape:'html':'UTF-8'}{/if}{/if}" /> </div> {/if} {if $field_name eq 'address1'} <div class="required form-group"> <label for="address1">{l s='Address'} <sup>*</sup></label> <input class="is_required validate form-control" data-validate="{$address_validation.$field_name.validate}" type="text" id="address1" name="address1" value="{if isset($smarty.post.address1)}{$smarty.post.address1}{else}{if isset($address->address1)}{$address->address1|escape:'html':'UTF-8'}{/if}{/if}" /> </div> {/if} <!-- {if $field_name eq 'address2'} <div class="required form-group hidden"> <label for="address2">{l s='Address (Line 2)'}{if isset($required_fields) && in_array($field_name, $required_fields)} <sup>*</sup>{/if}</label> <input class="validate form-control" data-validate="{$address_validation.$field_name.validate}" type="text" id="address2" name="address2" value="{if isset($smarty.post.address2)}{$smarty.post.address2}{else}{if isset($address->address2)}{$address->address2|escape:'html':'UTF-8'}{/if}{/if}" /> </div> {/if} --> {if $field_name eq 'postcode'} {assign var="postCodeExist" value=true} <div class="required postcode form-group unvisible"> <label for="postcode">{l s='Zip/Postal Code'} <sup>*</sup></label> <input class="is_required validate form-control" data-validate="{$address_validation.$field_name.validate}" type="text" id="postcode" name="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{else}{if isset($address->postcode)}{$address->postcode|escape:'html':'UTF-8'}{/if}{/if}" /> </div> {/if} {if $field_name eq 'city'} <div class="required form-group"> <label for="city">{l s='City'} <sup>*</sup></label> <input class="is_required validate form-control" data-validate="{$address_validation.$field_name.validate}" type="text" name="city" id="city" value="{if isset($smarty.post.city)}{$smarty.post.city}{else}{if isset($address->city)}{$address->city|escape:'html':'UTF-8'}{/if}{/if}" maxlength="64" /> </div> {* if customer hasn't update his layout address, country has to be verified but it's deprecated *} {/if} {if $field_name eq 'Country:name' || $field_name eq 'country' || $field_name eq 'Country:iso_code'} <div class="required form-group"> <label for="id_country">{l s='Country'} <sup>*</sup></label> <select id="id_country" class="form-control" name="id_country">{$countries_list}</select> </div> {/if} {if $field_name eq 'phone_mobile'} {assign var="mobilePhoneExist" value=true} <div class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if}form-group phone_mobile"> <label for="phone_mobile">{l s='Mobile phone'}{if isset($one_phone_at_least) && $one_phone_at_least} <sup>**</sup>{/if}</label> <input class="validate form-control" data-validate="{$address_validation.phone_mobile.validate}" type="tel" id="phone_mobile" name="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile}{else}{if isset($address->phone_mobile)}{$address->phone_mobile|escape:'html':'UTF-8'}{/if}{/if}" /> </div> {/if} {if ($field_name eq 'phone_mobile') || ($field_name eq 'phone_mobile') && !isset($atLeastOneExists) && isset($one_phone_at_least) && $one_phone_at_least} {assign var="atLeastOneExists" value=true} <p class="inline-infos required">** {l s='You must register at least one phone number.'}</p> {/if} {/foreach} {if !$postCodeExist} <div class="required postcode form-group unvisible"> <label for="postcode">{l s='Zip/Postal Code'} <sup>*</sup></label> <input class="is_required validate form-control" data-validate="{$address_validation.postcode.validate}" type="text" id="postcode" name="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{else}{if isset($address->postcode)}{$address->postcode|escape:'html':'UTF-8'}{/if}{/if}" /> </div> {/if} {if !$dniExist} <div class="required dni form-group unvisible"> <label for="dni">{l s='Identification number'} <sup>*</sup></label> <input class="is_required form-control" data-validate="{$address_validation.dni.validate}" type="text" name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni}{else}{if isset($address->dni)}{$address->dni|escape:'html':'UTF-8'}{/if}{/if}" /> <span class="form_info">{l s='DNI / NIF / NIE'}</span> </div> {/if} <div class="form-group field-address-infomartion"> <label for="other">{l s='Additional information'}</label> <textarea class="validate form-control" data-validate="{$address_validation.other.validate}" id="other" name="other" cols="26" rows="3" >{if isset($smarty.post.other)}{$smarty.post.other}{else}{if isset($address->other)}{$address->other|escape:'html':'UTF-8'}{/if}{/if}</textarea> </div> <div class="clearfix"></div> {if !$mobilePhoneExist} <div class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if}form-group"> <label for="phone_mobile">{l s='Mobile phone'}{if isset($one_phone_at_least) && $one_phone_at_least} <sup>**</sup>{/if}</label> <input class="validate form-control" data-validate="{$address_validation.phone_mobile.validate}" type="tel" id="phone_mobile" name="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile}{else}{if isset($address->phone_mobile)}{$address->phone_mobile|escape:'html':'UTF-8'}{/if}{/if}" /> </div> {/if} {if isset($one_phone_at_least) && $one_phone_at_least && !$atLeastOneExists} <p class="inline-infos required">{l s='You must register at least one phone number.'}</p> {/if} <div class="required form-group" id="adress_alias"> <label for="alias">{l s='Please assign an address title for future reference.'} <sup>*</sup></label> <input type="text" id="alias" class="is_required validate form-control" data-validate="{$address_validation.alias.validate}" name="alias" value="{if isset($smarty.post.alias)}{$smarty.post.alias}{elseif isset($address->alias)}{$address->alias|escape:'html':'UTF-8'}{elseif !$select_address}{l s='My address'}{/if}" /> </div> <p class="submit2"> {if isset($id_address)}<input type="hidden" name="id_address" value="{$id_address|intval}" />{/if} {if isset($back)}<input type="hidden" name="back" value="{$back}" />{/if} {if isset($mod)}<input type="hidden" name="mod" value="{$mod}" />{/if} {if isset($select_address)}<input type="hidden" name="select_address" value="{$select_address|intval}" />{/if} <input type="hidden" name="token" value="{$token}" /> <button type="submit" name="submitAddress" id="submitAddress" class="btn btn-default button button-medium"> <span> {l s='Save'} <i class="icon-chevron-right right"></i> </span> </button> </p> </form> </div> <div class="billing-detail-order col-lg-5 col-sm-5 col-xs-5"> <div class="billingListOrder"> <h2>{l s='Your Order'}</h2> <div class="listOrderInfor"> <h4>{l s='Products'}</h4> <div class="listProductDorCart"></div> </div> <div class="orderListShip"> <h4 class="pull-left">{l s='Shipping'}</h4> <div class="shipProductDorCart pull-right"></div> </div> <div class="orderListTotal"> <h4 class="pull-left">{l s='Total'}</h4> <div class="totalProductDorCart pull-right"></div> </div> </div> </div> <ul class="footer_links clearfix"> <li> <a class="btn btn-defaul button button-small" href="{$link->getPageLink('addresses', true)|escape:'html':'UTF-8'}"> <span><i class="icon-chevron-left hidden"></i> {l s='Back to addresses'}</span> </a> </li> </ul> {strip} {if isset($smarty.post.id_state) && $smarty.post.id_state} {addJsDef idSelectedState=$smarty.post.id_state|intval} {elseif isset($address->id_state) && $address->id_state} {addJsDef idSelectedState=$address->id_state|intval} {else} {addJsDef idSelectedState=false} {/if} {if isset($smarty.post.id_country) && $smarty.post.id_country} {addJsDef idSelectedCountry=$smarty.post.id_country|intval} {elseif isset($address->id_country) && $address->id_country} {addJsDef idSelectedCountry=$address->id_country|intval} {else} {addJsDef idSelectedCountry=false} {/if} {if isset($countries)} {addJsDef countries=$countries} {/if} {if isset($vatnumber_ajax_call) && $vatnumber_ajax_call} {addJsDef vatnumber_ajax_call=$vatnumber_ajax_call} {/if} {/strip}
  3. Hello guys, i have little problem. I downloaded custom theme removed quick view and add to favorites from featured product but now i have transparent field in product image. Any suggestions how to remove it? Site www.shop.sunnyroad.sk I will be really thankful for any advice. Thank you
  4. I got it! Thank you ! Youre like a god for me right now If you have some e-shop give me some banner and i will give it to my site. Many thanks sir!
  5. Thank you it is working! And the last thing. You dont know how to remove that Home under the slider? Thank you
  6. Thank you for reply Nemo1. I did this body.layout-boxed-lg { background: "http://www.shop.sunnyroad.sk/background.jpg"; } But is it still white. I tried to clean cache but it didnt help. Im doing something wrong? Thanks
  7. Hello guys, im finishing site www.shop.sunnyroad.sk and the last step is adding background, but only on sides like in the picture. I was searching in the old posts but i didint find any solution. + It is possible to remove text under the slider? Any help will be really appreciated. Many thanks
  8. Yes youre right. Is it possible to turn deffault theme on something like this http://garandbrand.cz/ ? And how much it will cost? Thank you
  9. Dobrý deň, písal som už na slovenské fórum, ale je to tam celkom mŕtve tak to skúsim aj tu. Potreboval by som upraviť nejaké veci už v skoro hotovom shope keby sa našiel niekto kto sa tomu reálne rozumie som ochotný mu za to poskytnúť finančnú odmenu. Shop je www.ruksaky.cmeliak.sk a potreboval by som 1. Zmeniť obrázok košíku (na moj vlastny v rovnakych rozmeroch) 2. Vycentrovať horizontal menu na stred ->nech obchodné podmienky začínajú viac na stred 3. Zmeniť slider nech je na celú šírku vid www.stussy.com/ 4. Dať na hlavnú stránku 3 produkty do radu (kedže v celom shope bude asi 16 produktov) zároveň zmenšiť priestor medzi produktami ako je zvýraznene modrou farbou a keby sa dalo tak aj odstranit ramceky co je zvyraznene cervenou farbou http://s15.postimg.org/46g4x7f8r/V_st_i_ek.jpg 5. Presunúť dolný panel sledujete nás do horného pravého rohuhttp://s13.postimg.org/5mceiwoti/V_st_i_ek.jpg 6. Pridať po bokoch obrázky ako tuto garandbrand.cz/ 7. Pri produkte www.ruksaky.cmeliak.sk/home/1-faded-short-sleeve-tshirts.html je to celé poprehadzovane takze dat text vedla obrazku a kosik niekdze medzi to Ak viete spraviť aspoň polovicu z tohto zoznamu napíšte sem alebo ma kontaktujte cez PM a nejako sa dohodneme. Ďakujem
  10. Dobrý deň, potreboval by som upraviť nejaké veci už v skoro hotovom shope keby sa našiel niekto kto sa tomu reálne rozumie som ochotný mu za to poskytnúť finančnú odmenu. Shop je ruksaky.cmeliak.sk a potreboval by som 1. Zmeniť obrázok košíku (na moj vlastny v rovnakych rozmeroch) 2. Vycentrovať horizontal menu na stred ->nech obchodné podmienky začínajú viac na stred 3. Zmeniť slider nech je na celú šírku vid stussy.com/ 4. Dať na hlavnú stránku 3 produkty do radu (kedže v celom shope bude asi 16 produktov) zároveň zmenšiť priestor medzi produktami ako je zvýraznene modrou farbou a keby sa dalo tak aj odstranit ramceky co je zvyraznene cervenou farbou http://s15.postimg.org/46g4x7f8r/V_st_i_ek.jpg 5. Presunúť dolný panel sledujete nás do horného pravého rohuhttp://s13.postimg.org/5mceiwoti/V_st_i_ek.jpg 6. Pridať po bokoch obrázky ako tuto garandbrand.cz/ 7. Pri produkte ruksaky.cmeliak.sk/home/1-faded-short-sleeve-tshirts.html je to celé poprehadzovane takze dat text vedla obrazku a kosik niekdze medzi to Ak viete spraviť aspoň polovicu z tohto zoznamu napíšte sem alebo ma kontaktujte cez PM a nejako sa dohodneme. Ďakujem
  11. Thank you for advice but now it is too much on right. I tried to change that margin-right value but i cant hit the correct dimension. Any helps? Thank you
  12. and it is possible to have my own image there?
  13. Thank you my friend it is great ! Many thanks! And the last question do u know how to move header little bit to the right side? Thanks
×
×
  • Create New...