Jump to content

Paldru

Members
  • Posts

    45
  • Joined

  • Last visited

Profile Information

  • Location
    Prague, CZ
  • Interests
    Historic stone buildings
  • Activity
    Other

Recent Profile Visitors

5,062,495 profile views

Paldru's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. Is there a way to revive in PS 1.7 the mouse hover effect/cart preview "fly out" of the cart like it was in PS 1.6 when hovering the "Cart" link in the default theme? Now in 1.7 it just loads a page with the cart "/cart?action=show".
  2. The problem with it when used e.g. in modules/bankwire/views/templates/hook/payment_return.tpl, is that the secure key and order number are missing. I would need to know how to get the secure key working. As a work around I use JavaScript to generate a new url - since the url shown in the browser when on order confirmation page uses a key (and it is the same as the secure_key), I copy the key and add it to the pdf link url and it works. So instead of: "someshop.com/en/index.php?controller=pdf-invoice?id_order=0&secure_key=" I have something like: "someshop.com/en/index.php?controller=pdf-invoice?id_order=1&secure_key=1c7b7efb973da769b4dc330b7fec923b" But I would rather have a proper solution.
  3. How can I get the link to the PDF invoice for unregistered Guest customers to appear on the order confirmation page? (www.someshop.com/order-confirmation) Similar to the link under www.someshop.com/guest-tracking ("Download your invoice as a PDF file.")? How is the link to the PDF generated? Thanks for your help.
  4. This is still the case in 1.6. For me the solution was to make the address2 field mandatory in the backoffice under Customers > Addresses at the page bottom "Set required fields".
  5. In the One Page Checkout, there are the First name and Last name fields shown twice; once at the top and once under "DELIVERY ADDRESS" (the fields have different id's). Since all four of them are needed/required, how could I go about having only one set for the customer to fill out (e.g. customer_firstname + customer_lastname and the other set maybe behind the scene just submitting the value of the visible set which was filled out by the customer)?
  6. I finally made it work after changing in order-opc.js a click event to a change event e.g. $(document).on('click', '#opc_guestCheckout', function(e){..... to $('#opc_guestCheckout').change( function(e){.... at least for now it is working. If anybody would know that there would be a better way, the "Prestashop" way to handle radio buttons, please write a comment.
  7. I changed the "Guest checkout" and "Create an account" buttons in the OPC order-opc-new-account.tpl to radio buttons, leaving the same id (#opc_guestCheckout and #opc_createAccount). It is working fine for switching the visibility of the fields like the original buttons did, however the initial "checked" state is wrong; when the page first loads, the fields for "Create an account" are shown but the radio for "Guest checkout" shows a checked state. Also uniform.js is wrapping the input in a span with a checked class. How would I have to go about making the checked state display correctly depending on which form fields are shown?
  8. To answer my own question: the smarty {debug} tag I tried first and felt was not working actually worked, but the debug output was only visible in the source code of the page, there was no pop up console.
  9. What is the way to list all smarty variables in a template? Do I have to go to a php file to use getTemplateVars() or can it be used inside a tpl file (something like this gives me an error "$smarty. is invalid": {print_r($smarty->getTemplateVars());} )
  10. Right now I am looking primarily at the form fields of the Guest Checkout option in OPC/quick-order (order-opc-new-account.tpl PS 1.6.1.1). Should the address format option under countries also enable reordering of the fields? I did reorder the fields in the template order-opc-new-account.tpl. Maybe I will try the original file to be sure the order-opc-new-account.tpl is not the problem. I was also wondering, do I have to reflect changes made to order-opc-new-account.tpl in authentication.tpl?
  11. Hi there all! How is the address format under Localization->Countries->"Your Country" suppose to work? The Prestashop documentation is not clear to me unfortunately. I am looking for a backoffice feature to hide or show certain fields in the OPC checkout (social title, date of birth, phone number...). Is this supposed to be the place where to define the fields to be shown, although it seems not to be working? I can hide fields in the templates, but would actually prefer the backoffice, of course...
  12. Thank you, I would have to mention, that I was thinking about the default Prestashop One Page Checkout (opc), not one of the paid modules
  13. Would you happen to know the approximate scope of such a change? Is it mainly a matter of changing/extending the OrderOpcController?
  14. Should it be possible to switch between the multi page and one page checkout in the demo version at http://demo.prestashop.com/en/?view=front ? Is there a place where to see a Demo of the one page checkout?
  15. Is there a way to display payment methods (and delivery methods) to a visitor/guest in the default Prestashop OPC when a visitor selects only the country but has not yet filled out and saved the further address information? Is there something planned for future versions of Prestashop?
×
×
  • Create New...