Jump to content

jkr

Members
  • Posts

    58
  • Joined

  • Last visited

1 Follower

Profile Information

  • Location
    Czech
  • Activity
    User/Merchant

Recent Profile Visitors

3,518,255 profile views

jkr's Achievements

Newbie

Newbie (1/14)

  • Conversation Starter Rare
  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

4

Reputation

  1. Dobrý den, na delší dobu jsem uspal rozběhlou verzi 1.7 a nyní chci eshop znovu spustit. Udělal jsem si zálohou DB. Má smysl znovu rozběhnout starý eshop na 1.6, anebo udělat novou instalaci 1.7 a spustit to od začátku? Mám tam asi jen 150 položek. Kde se dá stáhnout poslední stabilní verze 1.7? Děkuji, Honza
  2. Thank you Thank you I have used the free module from here: https://dh42.com/free-prestashop-modules/google-adword-conversion-tracking/ I do not know if it works properly, I will see after getting a conversion.
  3. Hi, please where to put conversion code for Google Adwords? I have tried to put it into the order-confirmation.tpl but the code does not appear there if I test it with my test orders. Thank you !-- Google Code Conversion Page --> <script type="text/javascript"> /* <![CDATA[ */ var google_conversion_id = XXX; var google_conversion_label = "XXX"; var google_conversion_value = {$total}; var google_conversion_currency = "CZK"; var google_remarketing_only = false; /* ]]> */ </script> <script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js"> </script> <noscript> <div style="display:inline;"> <img height="1" width="1" style="border-style:none;" alt="" src="//www.googleadservices.com/pagead/conversion/XXX/?value={$total}&amp;currency_code=CZK&amp;label=xxx&amp;guid=ON&amp;script=0"/> </div> </noscript>
  4. Hi I am running Presta 1.6.1.0 Does it make a sense to update on the latest 1.6 version? Will the update affect also the translated texts? Thank you
  5. I have tried to change {displayPrice currency=$order->id_currency price=$order_detail.total_price_tax_excl} to {displayPrice currency=$order->id_currency price=$order_detail.total_price_tax_incl} and it displays an empty place on the invoice. If I put it back it displays the total price without VAT normally - I need to change it to the total with VAT. Any idea what is wrong? Thank you a lot. I use Presta 1.6.1.3 ___ SOLVED, I have multiplied it with my VAT value.
  6. Can somebody help me how to reset the invoice number? Now I have No. 201623 (without prefix) and I need to start for instance from the No. 790. // I do not want to use delivery notes. Thank you
  7. Exists any solution for it? Its really strange behaviour. I deleted all the data from the table ps_order_invoice. If I create a new invoice it still creates the wrong number in the settings in Orders>Invoices it rewrites new input for the desired invoice number and still increments the old one value 2016188, 2016189 and so on I am so unhappy
  8. AUTO_INCREMENT shows the value 8768 but if I create the new invoice, then I have still the same increased original invoice number.
  9. Thank you The saving with the higher number has worked ☺ but I have still the same increased original invoice number Please where to find the AUTO_INCREMENT ? Thank you a lot
  10. Hm, nobody knows.… how to solve it?
  11. Thank you, I have found it. But it does not solve my problem. The back office shows me that the next invoice number will be 2016179 and the current PS_INVOICE_START_NUMBER is now manually set in DB to 8766. How to force Presta to have the next invoice number 8767 ? If I try to change the invoice number in the back office, then I get the error message that the number cannot be changed. "Wrong invoice number( the number must be >2016178)" Thank you
  12. I have problem to change the invoice number via Back Office. It is still saved the old number and I need to change it. Where can I find it in a database table to set it to the start number? Thank you
  13. Solved - the problem below was caused by the different‘ character before string. I have translated the text directly in the code and received following error from order confimation page : Fatal error: in /www/doc/www.lucieurbankova.com/www/eshop/tools/smarty/sysplugins/smarty_internal_templatecompilerbase.php on line 39 The code is here: {* * 2007-2015 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-2015 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='Order confirmation'}{/capture} <h1 class="page-heading">{l s='Order confirmation'}</h1> {assign var='current_step' value='payment'} {include file="$tpl_dir./order-steps.tpl"} {include file="$tpl_dir./errors.tpl"} {$HOOK_ORDER_CONFIRMATION} {$HOOK_PAYMENT_RETURN} {if $is_guest} <p>{l s=‘Vaše číslo objednávky je:’} <span class="bold">{$reference_order}</span> . {l s=‘Vaše číslo objednávky Vám bylo také zasláno emailem. Vaše dotazy nám posílejte na [email protected]’}</p> <p class="cart_navigation exclusive"> <a class="button-exclusive btn btn-default" href="{$link->getPageLink('guest-tracking', true, NULL, "id_order={$reference_order|urlencode}&email={$email|urlencode}")|escape:'html':'UTF-8'}" title="{l s='Follow my order'}"><i class="icon-chevron-left"></i>{l s='Follow my order'}</a> </p> {else} <p class="cart_navigation exclusive"> <a class="button-exclusive btn btn-default" href="{$link->getPageLink('history', true)|escape:'html':'UTF-8'}" title="{l s='Go to your order history page'}"><i class="icon-chevron-left"></i>{l s='View your order history'}</a> </p> {/if}
  14. It was strange for me to translate the text directly in that TPL file. I have thought I can translate it over Back Office Translation only.
  15. Thank you yes it is that var --- If I translate the text directly in the TPL file. Do I need to recompile the template? Thank you
×
×
  • Create New...