Jump to content

Vire

Members
  • Posts

    202
  • Joined

  • Last visited

Profile Information

  • Location
    Germany
  • Activity
    Project Owner

Recent Profile Visitors

300,317 profile views

Vire's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. I have to ask again about the e-mail stuff. For example the out of stock e-mail got the header "[EVOXITY] Artikel erwartet" in english. But int he e-mail file the header is "Message from {shop_name}" so i dont get why i got a german header if i use english. But the "[EVOXITY] Order Confirmed message is in english. here a little screenshot of my Thunderbird. The content of the e-mails is english, just the name is german. http://i.imgur.com/OW8Cnmz.png
  2. Hm i proberly will search a workaround or something, we did a lot of customizations on our theme and modules would be a massive setback if we would lose that just to fix some minor bugs with updates to higher versions. Thanks for your help anyways , ill upvote it soon
  3. Wow, this is weird. I never did use "core no theme selected", now i did that and every "bank wire" is translated right so im not sure where it comes from.
  4. Ah well, that worked fine. What about the payment name? For example "bank wire" sometimes its correctly translated, sometimes it is in german. Even some e-mails are in english but the header is in german. I guess i have to change this in the e-mail html on the ftp?
  5. Hello there, could someone please tell me where this stuff is located: http://imgur.com/a/iHOYj sometimes the payment method or payment status is in german even if i did the whole order process in english.
  6. Hey Nemo1 i have no clue .. i already reloaded the site without browser cache ctrl+f5 and resetted the server cache in the BO tons of time. Also trye dto delete the favoriteproducts-account.tpl but that doesnt effect it. seems like something goes wrong. Edit: Ah well, now it works. No idea why it took ages to clear the cache but w/e. Just 1 more problem and than the customizations are finally done. Amazing feeling to be honest. Thanks to this awesome community for the helpfull, help
  7. I was 100% sure that it would work if i remove "strip_tags" no i just have: <div class="product_desc">{$favoriteProduct.description_short}</div> and it still dont enable html v.v rly weird.
  8. Ye i did read that thread earlyer, just wasnt sure. So ill never update again x) Dont want to lose days of customization. Thanks for your reply anyways.
  9. Hello there, is there any ways to update prestashop without losing all modifications?
  10. Well, the line under the X is done, just need to fix the background bug.
  11. Hm, now i get the pictures displyed as html code, would it possible to activate that as well?
  12. Hello there, on my website: http://evoxity.net/en/wallpaper/3-wallpaper.html i noticed to bugs with fancy box. The first one is, if you decide to enlarge the pciture with a click on it. The first time it loads, the background is a bit out of the center, if you close the window and enlarge it again, its fine. This bug contains if you hover one of the sites of the fancybox and switch through the images. The secound bug is, the line under the X to close the window. Any suggestions how to fix that?
  13. This is in the controller of the favoriteproduct frontoffice -> account: class FavoriteproductsAccountModuleFrontController extends ModuleFrontController { public $ssl = true; public function init() { parent::init(); require_once($this->module->getLocalPath().'FavoriteProduct.php'); } public function initContent() { parent::initContent(); if (!Context::getContext()->customer->isLogged()) Tools::redirect('index.php?controller=authentication&redirect=module&module=favoriteproducts&action=account'); if (Context::getContext()->customer->id) { $this->context->smarty->assign('favoriteProducts', FavoriteProduct::getFavoriteProducts((int)Context::getContext()->customer->id, (int)Context::getContext()->language->id)); $this->setTemplate('favoriteproducts-account.tpl'); } } } And this is the .tpl: {capture name=path} <a href="{$link->getPageLink('my-account', true)|escape:'html':'UTF-8'}"> {l s='My account' mod='favoriteproducts'} </a> <span class="navigation-pipe">{$navigationPipe}</span> <span class="navigation_page">{l s='My favorite products' mod='favoriteproducts'}</span> {/capture} <div id="favoriteproducts_block_account"> <h1 class="page-heading">{l s='My favorite products' mod='favoriteproducts'}</h1> {if $favoriteProducts} <ul class="row"> {foreach from=$favoriteProducts item=favoriteProduct} <li class="col-xs-12"> <div class="favoriteproduct clearfix inner-content"> <a class="product_img_link" href="{$link->getProductLink($favoriteProduct.id_product, null, null, null, null, $favoriteProduct.id_shop)|escape:'html':'UTF-8'}"> <img src="{$link->getImageLink($favoriteProduct.link_rewrite, $favoriteProduct.image, 'medium_default')|escape:'html':'UTF-8'}" alt=""/> </a> <p class="s_title_block"> <a href="{$link->getProductLink($favoriteProduct.id_product, null, null, null, null, $favoriteProduct.id_shop)|escape:'html':'UTF-8'}"> {$favoriteProduct.name|escape:'html':'UTF-8'} </a> </p> <div class="product_desc">{$favoriteProduct.description_short|strip_tags|escape:'html':'UTF-8'}</div> <div class="remove"> <a href="#" onclick="return false" rel="ajax_id_favoriteproduct_{$favoriteProduct.id_product}"> <i class="icon-remove"></i> </a> </div> </div> </li> {/foreach} </ul> {else} <p class="alert alert-warning">{l s='No favorite products have been determined just yet. ' mod='favoriteproducts'}</p> {/if} <ul class="footer_links clearfix"> <li> <a class="btn btn-default button button-small" href="{$link->getPageLink('my-account', true)|escape:'html':'UTF-8'}"> <span> <i class="icon-chevron-left"></i>{l s='Back to your account' mod='favoriteproducts'} </span> </a> </li> </ul> </div> So .. if anyone could tell me what i have to delete i would be very thankfull.
  14. I dont want to hide, i want to enable pictures there, as you can see on the watch_dogs example at http://evoxity.net/ there are pictures in the short discription. I get this " " instead of the icons on the short description of facvoriteproducts.
  15. I actually belive, its something in the controller. Any suggestions?
×
×
  • Create New...