Elxis CMS Forum

Extensions => Components => Topic started by: datahell on May 16, 2021, 19:47:32

Title: Cart fix - Open Shop 2.x
Post by: datahell on May 16, 2021, 19:47:32
HIGH PRIORITY FIX

During the v3.0 development of Open Shop I found a bug that makes the cart not working as it should. There were reports in the past about this problem and I had searched a lot to locate the problem without success till now. Now I found the problem and it has been fixed in version 3.0 (under development). For all Open Shop 2.x versions here is how to fix it before v3.0 it is released.

Open file: components/com_shop/models/site.model.php

Go to line 428 (exact line number depends on your open shop version).

Replace this:
$stmt->bindParam(':xses', $session_id, PDO::PARAM_INT);

With this:
$stmt->bindParam(':xses', $session_id, PDO::PARAM_STR);

At the end you will have something like this:

public function productFromCart($id, $session_id) {
        ...
        $stmt->bindParam(':xses', $session_id, PDO::PARAM_STR);
        ...
}

I will also update Open Shop 2.7 with this fix.
Title: Re: Cart fix - Open Shop 2.x
Post by: bledi on May 31, 2021, 07:42:55
Hi datahell
there is a problem when uploading photos in Products,
Response is not a valid JSON response!
even it looks like the photo is not uploaded...but after i see online the photo...uploaded
Title: Re: Cart fix - Open Shop 2.x
Post by: michalis1984 on May 31, 2021, 11:51:06
Hi datahell
there is a problem when uploading photos in Products,
Response is not a valid JSON response!
even it looks like the photo is not uploaded...but after i see online the photo...uploaded

I confirm also that. I didn't say anything yet before I confirm with other servers, because I was thinking if it was due to my server settings. It shows error but photos uploaded.
Title: Re: Cart fix - Open Shop 2.x
Post by: datahell on May 31, 2021, 19:43:58
I updated Open Shop v3.0 (https://www.elxis.net/edc/ecommerce/110.html) just a few minutes ago. I added a new AJAX image uploader which is much better and works perfect. The new uploader is available in Open Shop v3.0 rev175 released today (31.05.2021).

If you have Open Shop v2.x update to v3.0.

If you already updated to Open Shop v3.0 yesterday (30.05.2021) re-download Open Shop (https://www.elxis.net/edc/ecommerce/110.html) and update these files:
components/com_shop/language/...all files...
components/com_shop/controllers/aproducts5.php
components/com_shop/views/aproducts5.html.php
components/com_shop/includes/js/SimpleAjaxUploader.min.js
components/com_shop/includes/js/shop.js
components/com_shop/shop.php
components/com_shop/shop.xml

I will write an article soon for Open Shop v3.0 where you can read more about the new version.
Title: Re: Cart fix - Open Shop 2.x
Post by: bledi on May 31, 2021, 20:46:34
OK, fixed
I need also not to show Additional Info in products listing? (attached)
Thanks in advance
Title: Re: Cart fix - Open Shop 2.x
Post by: datahell on May 31, 2021, 21:37:02
Elxis administration > Site > Code editor
Add in userconfig.css (Elxis 5.2):

ul.shop_ctg_prod_extras { display:none; visibility:hidden; }