Aw: Attributes Disappear When Editing Items in Cart - Seeking Solution
msin - 30.10.2024 21:30
1. I choose item with colour and free text, like RED and Omnibus like you see in the picture
2. I add it to the cart = ok
3. When I look the cart everything is correct = ok
4. I want to modifiy my item in the Cart = problem All my options are empty or has default value (blue)
There are two possibilities:
1. The items cannot be changed in the cart, it should not be possible to click on any links in the cart to open it
2. When I open an item in the cart it should show the selected value not the item default value
After click to product -
You are just looking at the product - this is not a change link.
-------------------------------------------------------------------------------------------------------------
1. change cart template
components\com_jshopping\templates\default\cart\cart.php
<a href="<?php print $prod['href'] ?>">
<img src="<?php print $this->image_product_path ?>/<?php
if ($prod['thumb_image'])
print $prod['thumb_image'];
else
print $this->no_image;
?>" alt="<?php print htmlspecialchars($prod['product_name']); ?>" class="jshop_img" />
</a>
change to
<img src="<?php print $this->image_product_path ?>/<?php
if ($prod['thumb_image'])
print $prod['thumb_image'];
else
print $this->no_image;
?>" alt="<?php print htmlspecialchars($prod['product_name']); ?>" class="jshop_img" />
or
2 .
install
https://www.webdesigner-profi.de/joomla-webdesign/shop/plugins/cart-product-link-with-attribute.html?lang=en
Letzte Änderung: 31.10.2024 07:37