Jump to content

George Bazz

Members
  • Posts

    28
  • Joined

  • Last visited

1 Follower

About George Bazz

  • Birthday 03/28/1993

Contact Methods

Profile Information

  • Location
    Athens, Greece
  • First Name
    ΓΙΩΡΓΟΣ
  • Last Name
    ΒΑΣΙΛΟΠΟΥΛΟΣ

Recent Profile Visitors

959 profile views

George Bazz's Achievements

Newbie

Newbie (1/14)

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

Recent Badges

3

Reputation

  1. @panoskou αν σου έιναι έυκολο άλαξε τον τίτλο σε [SOLVED] προβλημα με παραγγελία
  2. Καλημέρα Πάνο. Τι εννοείς διπλές? Επίσης πες μας τι version χρησιμοποιείες και δείξε μας μαι φώτο με το πρόβλημα.
  3. Γεια σου @Patras Icon, Δοκίμασε να πας στο Προτιμήσεις -> Seo & URL's. Εκει, στο ΟΡΙΣΜΟΣ URL ΚΑΤΑΣΤΗΜΑΤΟΣ ενημέρωσε με το καινούργιο σου domain, ριξε και ενα καθάρισμα στην cache και δες αν διορθώθηκαν τα προβλήματα σου!
  4. I am pretty sure {$order->total_paid|floatval} is what you're looking for! Check it, and tell me!
  5. Hi @Daku, Unfortunately this dropdown is an HTML entity and it is not possible to change with simple CSS. If you really want to change it, take a look here https://www.w3schools.com/howto/howto_custom_select.asp and then add: Your custom CSS into themes/[theme-name]/css/product_list.css Your custom Javascript into themes/[theme-name]/js/global.js
  6. Hey @sportservis.pl Your page seems to be working fine. If you fixed it, you should change your title and add [SOLVED] in the beginning as well as mentioning what you did.
  7. Hello @lucas12, Which PS version are you using? Because in my 1.6.1.24 version the new cart is kept. EDIT: Now I understand. You want to combine the last cart he abandoned, with the one he just created. Except of the fact that this does not happen in any e-shop (if the client needed his cart he could simply login) it is also consists of a really poor user experience. Think of this user case: 1. User creates a cart with 3 x A items. 2. User abandons cart and logouts (for whatever reason). 3. User comes back, forgets to login creates a cart with 5 X A items. 4. User logins. How many A items should there be in the cart? 3? 5? 8? I suggest you stick with how Prestashop (and most eshops in the world) works. You should NEVER a normality for a specific user case. If what you said ever happens, you can always help THAT specific user out by locating his old cart manually and creating a manual order.
  8. Press F12 -> Console and see what Javascript errors appear. It would also be helpful to give us a website address where we can see what might be the problem.
  9. Hello @Amin Vatandoust, I'd love to know if you managed to implement the solution with my guidlines! If you did, please add [SOLVED] at the beginning of the title in order to help the community!
  10. What is even more interesting is that black-hatting (as this technique is called) is not only unfair - as you never accepted for it to be implemented - it can also be DESTRUCTIVE for your website. Google is extremely serious against these kind of methods. Within a matter of days your domain can be shadowbanned from Google, quite litteraly, forever.
  11. Great! Let's try and fix it: 1. On your cashondelivery.php file change your last method hookPaymentReturn from public function hookPaymentReturn($params) { if (!$this->active) return ; return $this->display(__FILE__, 'confirmation.tpl'); } to public function hookPaymentReturn($params) { if (!$this->active) return ; global $smarty; $order = $params['objOrder']; $smarty->assign(array( 'order' => $order, )); return $this->display(__FILE__, 'confirmation.tpl'); } BE CAREFUL to replace it correctly. You said you got a 500 error so you probably were changing the correct file. However let's make sure we are using the correct one! Check first if your theme has already overriden the file: Check [your-theme-name]/modules/cashondelivery/views/templates/hooks/confirmation.tpl. If it exists THIS is the file you will be changing. If it does not, go to step 2. Check your [root]/modules/cashondelivery/views/templates/hooks/confirmation.tpl file. This definetely exists. You can add your changes here The three variables you asked can be written in the .tpl as: {$order->id} {$order->reference} {$order->total_paid} Here is also a list with all the parameters we added in case you want to use some more (same logic {$order->[name-of-variable]} ) ->id_address_delivery ->id_address_invoice ->id_shop_group ->id_shop ->id_cart ->id_currency ->id_lang ->id_customer ->id_carrier ->current_state ->secure_key ->payment ->module ->conversion_rate ->recyclable =L ->gift =L ->gift_message ->mobile_theme ->shipping_number ->total_discounts ->total_discounts_tax_incl ->total_discounts_tax_excl ->total_paid ->total_paid_tax_incl ->total_paid_tax_excl ->total_paid_real ->total_products ->total_products_wt ->total_shipping ->total_shipping_tax_incl ->total_shipping_tax_excl ->carrier_tax_rate ->total_wrapping ->total_wrapping_tax_incl ->total_wrapping_tax_excl ->invoice_number ->delivery_number ->invoice_date ->delivery_date ->valid ->date_add ->date_upd ->reference ->round_mode ->round_type ->id ->id_shop_list ->force_id DO NOT FORGET TO CLEAR CACHE AFTER CHANGES ARE IMPLEMENTED!
  12. Hello @Amin Vatandoust, You should always state which PrestaShop version you're using. Also, are you talking about the core COD module or a downloaded one?
  13. Γεια σου @root2christos, Για PS 1.6 πας Modules and Services -> Payment (Προσθετα και Υπηρεσίες -> Πληρωμή). Scrollaρεις λιγο βρισκεις το Group Restrictions που ειναι ακριβώς αυτό που ζητάς. Για PS 1.7 πας Payment -> Preferences (Πληρωμή -> Προτιμήσεις) και κάνεις ακριβώς το ιδιο!
  14. Τελείως wild guess αλλα υπάρχει περίπτωση η ονομασία των αρχείων σου να ειναι στα ελληνικά και να μην γίνετε σωστά το encoding?
×
×
  • Create New...