veshop Posted October 1, 2014 Share Posted October 1, 2014 (edited) Hi to everybody!It's the first time a open a topic here. I read much on the forums and find many solutions to my problems. I'm italian, so please apologise me for my english. I'm using prestashop 1.6.09, I can't programming but I can fellow instructions and make changes to the codes. I have a a few questions, I don't know if this is the right place or not, but I hope someone will help me solve my problems.1) I saw that if i put something in the cart, estimate the shipping cost (ex. 5€) and update the cart, the total is correct (ex. 20€), but if I go back to home page, the updated cart with the selected carrier is lost and the cart shows the total with the default carrier (ex.15€). It doesn't happen, if I go on with the checkout until the step "carrier". If I select them a carrier and go than back to the homepage, the selected carrier stay saved. Does someone know how to change it? 2) When a customer register his new account and don't write a password, the allert "Password required" (or something similar) should appear, but I got a message "passwd required". I look in the translations but there is all ok, how can I change it?3) Ho can Iadd the tracking link, directly in the history order table, without enter in the details of the orders?4) How can I add in the "My vouchers" in the FO , near the date of expiration of the voucher (cart rule), also the time? And how can I made it possible to sort the vouchers by "expiration date" automatically or like the table in "order history" ? 5) How can I add the shipping address (and invoice address if not to complicated) in the paiment step? I mean. Someone choose an address and in the step paiment, there should appear the summary with the choosen address. With the carrier I write simply {$carrier->name} and it works well, but I don't know to do with the address.6) How can I make the order ID of the "My loyalty points" clickable, so that it redirect to the order? 7) and last question. When I update the quantity if a product in the product page, it doesn't update it automatically as it do it when I am in the cart. How can I solve this problem? 8) I saw that if a person subscribe to the newsletter without be a customer, only throught newsletterblack, he can't subscribe nowhere and also I can't do. How can I solve the problem?I know, there are many many questions, but sure not all to complicated, but I can't solve it without help. I hope someone can and want help me Best wishes and thanks in advance, Edited October 1, 2014 by veshop (see edit history) Link to comment Share on other sites More sharing options...
veshop Posted October 2, 2014 Author Share Posted October 2, 2014 (edited) I "solved" question 8. The people without account, still don't can delete there newsletter by themself. I will put in the footer of the email they should answer to the newsletter if they want unsubscribe and I will do it for them. I add in the BO simply a link to the table of the database. It isn't a very "clean" work, but I don't think I have to delete thausends of emails each day, so it's ok. It's just quicklier way to reach the table and from the BO. /public_html/modules/blocknewsletter/views/templates/admin/list_action_enable.tplAfter this code: <a class="list-action-enable {if isset($ajax) && $ajax}ajax_table_link{/if} {if $enabled} action-enabled{else}action-disabled{/if}" href="{$url_enable}" {if isset($confirm)} onclick="return confirm('{$confirm}');"{/if} title="{if $enabled}{l s='Enabled'}{else}{l s='Disabled'}{/if}"> <i class="icon-check{if !$enabled} hidden{/if}"></i> <i class="icon-remove{if $enabled} hidden{/if}"></i> </a> I simply put this code with my link to PS_NEWSLETTER TABLE   <a href="LINK TO YOUR PS_NEWSLETTER TABLE" target="_blank"> <font color="red">unsubscribe</font> </a> Hope it could be usefull for someone. Edited October 2, 2014 by veshop (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now