Search the Community
Showing results for tags 'cart page'.
-
Hello, I set up to restore the products in the cart after logging in to the account (see screenshot), but this only works if you add more products to the cart after logging in to your account. If you add products to the cart before logging in to your account, then after logging in to the account the products from previous visits are missing in the cart! To understand what I mean, please someone test the following steps: Add products to cart and log out of your account. Then add more products to the cart and then log in to your account Only recently added products are in the cart. The others are gone ??? Please help me that fix this problem.
-
Hi, I searched quite a lot but didn't find any answer. Currently on my website if I click on the cart icon it will open a floating cart with the products and then I'll need to hit the BUY button to go to the cart page. I'm happy with that, but the issue is for mobile and tablet it's the same, and it's not a great experience for users. So for mobile and tablet, I would like to directly redirect to the cart page, and so hide/remove the floating cart, if I click on the cart icon. But only for them two. Does anyone has any idea? Thanks a lot! Prestashop : 1.7.6.9 Theme : Warehouse
-
Voici une petite modification qui n'est certainement pas cruciale, mais qui peut être très utile. But de la manip : - Afficher le poids total des produits du panier sur la page "panier" - Mettre à jour ce poids lorsqu'on ajoute, supprime, ou change la quantité d'un produit dans la page Je précise que j'ai recherché sur le forum, mais je n'ai pas trouvé de solution complète (affichage initial + mise à jour) 4 fichiers à modifier (ou overrider) : /controllers/ParentOrderController.php (affichage initial de la page panier) /classes/Cart.php (mise à jour des infos dans la page) /themes/votre-theme/js/cart-summary.js (gestion de la mise à jour des infos) /themes/votre-theme/shopping-cart.tpl (template d'affichage de la page panier) Je donne ici les modifications sur les fichiers originaux, mais on peut utiliser la fonctionnalité override pour Cart.php et ParentOrderController.php (En cherchant un peu vous trouverez certainement comment "overrider" ces fichiers afin de conserver vos fichiers originaux de Prestashop) ParentOrderController.php, function _assignSummaryInformations() Juste après : 'productNumber' => self::$cart->nbProducts(), Ajouter : 'totalWeight' => str_replace('.', ',', self::$cart->getTotalWeight()), Cart.php, function getSummaryDetails() Juste après : 'total_products' => $this->getOrderTotal(false, Cart::ONLY_PRODUCTS), Ajouter : 'total_weight' => str_replace('.', ',', $this->getTotalWeight()), cart-summary.js, function updateCartSummary(json) Juste après : $('#summary_products_quantity').html(nbrProducts+' '+(nbrProducts > 1 ? txtProducts : txtProduct)); Ajouter : $('#summary_products_weight').html(json.total_weight+' Kg'); shopping-cart.tpl, ~ligne 69 Remplacer : <p>{l s='Your shopping cart contains'} <span id="summary_products_quantity">{$productNumber} {if $productNumber == 1}{l s='product'}{else}{l s='products'}{/if}</span></p> Par : <p>{l s='Your shopping cart contains'} <span id="summary_products_quantity">{$productNumber} {if $productNumber == 1}{l s='product'}{else}{l s='products'}{/if}</span> {l s='for a total weight of'} <span id="summary_products_weight">{$totalWeight} Kg</span></p> Enfin il ne vous reste plus qu'à aller dans votre BO => Outils => Traductions => Traductions du Front-Office, et traduire "for a total weight of" en "pour un poids total de" Ce qui donne ce résultat : Bien sur, vous pouvez pousser les modifs dans shopping-cart.tpl pour coller à la mise en forme de votre thème ou pour placer l'information ailleurs dans la page. Il suffira juste de conserver le code <span id="summary_products_weight">{$totalWeight} Kg</span> PS: Une nouvelle fois, et sans vouloir critiquer, on se demande pourquoi cette fonctionnalité, tout de même assez simple à mettre en place, n'est pas incluse directement dans Prestashop (avec une petite option en BO "Afficher le poids total sur la page panier" pour ceux que ça n'intéresse pas...)
-
Hello All, I have just installed prestashop on (RotcomOnline.com) but have an issue with the shipping estimation module. When a guest attempt to estimate the shipping cost, it shows the following error: Pls help!
- 3 replies
-
- shipping estimation
- module
-
(and 2 more)
Tagged with:
-
Website: http://www.watertrampolinesexpress.com Here are the pictures necessary for the cart. The price needs to show somewhere on the cart and be updated as people change the size or add logo/text or addons. Logo/TEXT: Description: Add a logo. Our design team will contact you for image details. We can customize each strip of the trampoline or just add the logo to one section. Before any production starts, a design mockup will be sent to you for approval. Radio Buttons- Add Logo (+$85) Add Text (+$85) SIZE: 3 radio buttons, use the same details as what's on the site If you could, however, make them as squares, that would be helpful. Here's what I'm thinking: COLOR: Radio Buttons (images upto 12) Addons: Check Boxes (you can add more than one) Generic Picture: - can show this for all addon pages and then just have check boxes for each addon. Launch Pad (+$550) Water Slide: (+550) Water Log: ($550) SAVE $$$ ON COMBOS: We'll contact you for details! 2 Addons (+$900) - 3 Addons (+$1350)[/indent] I really like the design outline here: It'd be great if customers could click on each section and choose an input from a dropdown menu. We could have this outline in a separate page or tack this on at the beginning of the current product page. So, for instance, clicking 'add logo' would have a dropdown menu where people could see an instruction text and a box to input a logo. Clicking text - same. Size would have a radio button w/ the 3 size options. Addons - an image box for each addons. if you click on the images, maybe a new page can come up with a description of each addon. Color: Color has the 10 color images with a radio button under each with a description. We can, however, reorder them: 1. color 2. Size 3. Logo 4. Text 5. Add-ons The other task is to design a custom iceberg and custom water blob cart. They do NOT need to look like the water trampoline cart. These are easy and the only options are with sizes (2 sizes for Iceberg/blob) and adding a logo. Payment needs to be integrated w/ authorize.net Payment methods for coder can be paypal/odesk/vworker.
-
I've got a client running PrestaShop 1.3.0.10 and suddenly the "cart" page has stopped fully loading. The order.php file is failing. https://www.performancefoot.com/order.php
-
Hello, My (dev) site: http://chc.vonrocko.com/ This is a custom design and I've coded the links in the header bar to go to where they belong, whether external or CMS pages, and I've activated SEO-friendly permalinks and updated my .htaccess file. The link to what should be the customer's account: (chc.vonrocko.com/my-account.php) redirects to a strange 404: (chc.vonrocko.com/authentication?back=my-account.php), and I'm really not sure why. Also, I cannot add items to my shopping cart, instead I get redirected to (chc.vonrocko.com/cart), which receives a 404. Please halp!