Company
Item Name
seniorx hasn't added any friends yet.
13 July 2022 - 04:53 PM
16 May 2022 - 09:50 PM
Hy,
I search and extra search... cs-cart didn't come with a viable solution... and to say directly what they offer has no solution... even a SMTP is not working, or some kind of problem to mailer... etc...
lots of time spend to fix... with no results.
so
For those that cannot upgrade to last version because or errors from
.../var/upgrade/core_log.txt
like:
2022-05-08 15:31:37: Sending upgrade information e-mail to:...
2022-05-08 15:41:37: Failed to send e-mail
2022-05-08 15:49:50: Failed to send e-mail
there is a simple solution...
on file ...public_html/app/Tygh/UpgradeCenter/App.php
modify comment from this line:
/** @var \Tygh\Mailer\Mailer $mailer */ $mailer = Tygh::$app['mailer']; $mail_sent = $mailer->send(array( 'to' => $email_recipients, 'from' => 'default_company_site_administrator', 'data' => $email_data, 'template_code' => 'upgrade_backup_info', 'tpl' => 'upgrade/backup_info.tpl', ), 'A', Registry::get('settings.Appearance.backend_default_language')); if ($mail_sent) { $logger->add('E-mail was successfully sent'); } else { $logger->add('Failed to send e-mail'); return array(false, array()); }
to this:
/* @var \Tygh\Mailer\Mailer $mailer $mailer = Tygh::$app['mailer']; $mail_sent = $mailer->send(array( 'to' => $email_recipients, 'from' => 'default_company_site_administrator', 'data' => $email_data, 'template_code' => 'upgrade_backup_info', 'tpl' => 'upgrade/backup_info.tpl', ), 'A', Registry::get('settings.Appearance.backend_default_language')); if ($mail_sent) { $logger->add('E-mail was successfully sent'); } else { $logger->add('Failed to send e-mail'); return array(false, array()); } */
and afterwards... after upgrade can be restore to initial values!
This is the solution i found!
No change to "zip" to "true", not a debug or a dev mode....
I don't know why so simple and no one tell us, to newbie...
I spent 3 nights to resolve this with none existing advice from cs-cart...
Only nonsense support and etc...!
31 January 2022 - 03:46 PM
13 December 2021 - 07:37 PM
Hello everybody,
I have this problem:
- we sell LCD refurbish, for different models of mobile phones...
so i have 1 product, ex: LCD iPhone XR with a fixed price.
If the client want to bring the old LCD with broken lens, will make a almost 50% discount.
If the parts have more defects, we have an extra tax.
So regarding cs cart VARIATION:
- if i add to variants with different prices for each option, the stock is not 1 product, is taking from inventory and each variant have own stock (see pic. 1)
I try to chose OPTIONS, i have another problem... prices are with discount, for each options, but are same for each product... if i add same Option to a 2nd product, with another prices... will change to the 1st one also... (see pic.2)
If there is a way to have same product inventory for each variant...
Or if i can make 3 option that can have different prices regarding each product.
Thanks in advance!
26 July 2021 - 05:48 PM
Hello,
in the older version of cs-cart... there was editor for newsletters... invoice and packing slip...
I using the last version 4.13.2.SP1, but editor doesn't appear on button Design.
I want to edit my template invoice.... to have a column in front of product with Category,
and also on Packing Slip, price for products
There is a way to install manual that editor... from old version of cs-cart?