ilario Posted April 30, 2016 Share Posted April 30, 2016 (edited) ciao a tutti ho creato una pagina popup che si apre scegliendo un attributo in un prodotto in questa pagina compare un altro prodotto legato al primo e se il cliente vuole lo inserisce nel carrello ho trovato questo codice e funziona function Aggiungi_Carrello(){ $.ajax({ type: 'POST', headers: { "cache-control": "no-cache" }, url: dir_base_path, async: true, cache: false, dataType: 'json', //( (parseInt(idCombination) && idCombination != null) ? '&ipa=' + parseInt(idCombination): '') data: 'controller=cart&add=1&qty=1&id_product=' + id_prodotto + '&token=' + static_token, success: function(jsonData) { } }); } mi manca però ultima parte una volta inserito il nuovo prodotto, dovrebbe chiudersi la pagina e aggiornare il carrello mi sapreste dire che codice posso usare per il refresh del carrello (come quando inseriamo un articolo normalmente) grazie mille ilario Edited April 30, 2016 by ilario (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