Jump to content

Artemis909

Members
  • Posts

    13
  • Joined

  • Last visited

Profile Information

  • Activity
    Other

Artemis909's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. joseantgv's solution working also in Presta 1.7 but changes must be done in module/ps_facedsearch/ps_facedsearch.php in function getProductByFilters()
  2. Is this what you looking for? Presta 1.7 overriding-> PrestaShop’s controllers are all stored in the /controllers folder, and use the “Core” suffix. For instance, when working with the Category controller: File: /controllers/CategoryController.php Class: CategoryControllerCore In order to override a controller, you must first create a new class without the “Core” suffix, and place its file in the /override/controllers folder. For instance, when overriding the Category controller: File: /override/controllers/front/CategoryController.php Class: CategoryController Do not forget to delete cache in admin... http://developers.prestashop.com/module/04-DivingIntoPSCoreDevelopment/03-ControllersWithinPrestaShop.html
  3. I had same problem until I switch server to php 5.5 .With php 5.6, I received same FastCGI errors.
  4. Similar problem here when settings is Domian: www.example.com Domain SSL: example.com Does Domain and Domain SSL should be same? Domian: www.example.com Domain SSL: www.example.com <- SSL Domain with www or not ???
  5. Hi, I am working on this issue also. I think this is problem just how particular *.tpl showing the price because in database there is no any price with tax , there is only price without tax actually. I made wholesale customer group with option "Price display method" -> "Tax excluded" At the moment all products showed correct price (without any tax). The problem is for example in order steps where total price is showed with tax. Also for example, it is same in bankwire module where in very last order step is showed also price with tax. If we look closer to payment_execution.tpl (bankwire module) we can see that price is showed as follow: <span id="amount" class="price">{displayPrice price=$total}</span> this is not correct in our case becaues variable $total is always with all taxes. So we need some other variable where total price is without tax. Unfortunately bankwire model dont have this variable available so we have to use cart function getOrderTotal(false) -false means price without any tax. I change to this {if $priceDisplay == 1} <span id="amount" class="price">{displayPrice price=$cart->getOrderTotal(false)}</span> {else} <span id="amount" class="price">{displayPrice price=$total}</span> {/if} In same way must be modified other *.tpl files order steps , blockcart etc. I think prestashop also offer different way how to set tax free customers but for me this is the only solution because at the moment all products in store has assigned 20% tax. And I really dont want manually change this price to 0% in some special cases especially when there is 5k products.
  6. Hi, it is possible to get "id_country" value from current cart delivery address? This is working $cart->id_address_delivery -return id_address correct this does not return nothing $cart->id_address_delivery->id_country $cart->id_country Thank you for help
  7. Hi all, we have following situation. Order is placed by the customer with few products. When in the BO one ore more products is removed from this order than generated invoice is indeed without removed products but total price is still same as with all products. Does someone have same experience? Is there some way to fix this? PS 1.6.0.9
  8. Po zadani "Export EPH Posta" z ponuky "bulk action" mi vyhodi vyskakovacie okno. Okno vsak ostane prazdne s hlaskou "Warning: Cannot modify header information - headers already sent by (output started at /hosting/xxx.sk/eph_posta.php:16) in /hosting/xxxsk/classes/shop/Shop.php on line 419 Warning: Cannot modify header information - headers already sent by (output started at /hosting/xxx.sk/eph_posta.php:16) in /hosting/xxx.sk/classes/shop/Shop.php on line 420" Cim to moze byt? V subore eph_posta.php su neviditelne znaky ktore treba vymazat. Potom vsetko ide ako ma.
  9. What about to use "cart_quantity_delete" button from shopping-cart.tpl ? This button delete quantity (customized product) from shopping cart in first step. Maybe this button with some modification we can use also for cart. What do you think?
  10. What I found in blockcart.tpl is <span class="remove_link"> {if !isset($customizedDatas.$productId.$productAttributeId) && (!isset($product.is_gift) || !$product.is_gift)} <a class="ajax_cart_block_remove_link" href="{$link->getPageLink('cart', true, NULL, 'delete=1&id_product={$product.id_product}&ipa={$product.id_product_attribute}&id_address_delivery={$product.id_address_delivery}&token={$static_token}', true)|escape:'html':'UTF-8'}" rel="nofollow" title="{l s='remove this product from my cart' mod='blockcart'}"> </a> {/if} </span> So it is really basic Presta behavior that remove button/link is active only when product IS NOT customized type. hmm...
  11. Hi, when some product have text/image customize option and this product is customized and saved and added to cart than "Remove" button does not display in cart block. It is ussual behavior of system or bug? It is possible to remove such as customized product from cart? PrestaShop 1.6.0.9
  12. Yes, this is no problem but it is some kind of dirty solution in my opinion. But at the moment do not have better.
  13. Hi, it is possible to change start value of id_cart to start not from zero but from 1500 for example? Increment will be same so +1. In database ps_cart I have manually change last id-cart to 1500 but when new order is made, Presta somehow know that last order was (for example) 37, so Presta set new id_cart to 38 and just ignore last manually added value 1500. Is there some way to persuade Prestashop to count id_cart value not from zero ? We are speaking about PS 1.6.0.9
×
×
  • Create New...