DataKick
DataKick
This is caused because bleeding edge introduced new column `active` in table `tb_category_shop`. This extra column, when present in database, causes ambiguity problem on 1.3.0: ``` Column 'active' in where...
Proper solution will be to move dependency on `mrclay/minify` library to library module. Similar to excel import functionality
Known workaround: use core updater to check for changed files, or download latest
The displayed price should probably be taken from default customer group associated with customer for which the invoice is generated. That way, invoices with tax could be generated for final...
If we just switched from always displaying prices without tax to with tax, then some merchants would be happy and some would be upset about the change. Shop can sell...
.htaccess is apache specific. A lot of stores are running on different stack (nginx+phpfpm, for example) I don't see any reason why the admin shouldn't enforce selected protocol. If the...
What php and database version are you using?
These two are supported. Please look into your thirty bees installation '/log' directory to see if there is any error message. Also, look into your server error logs for the...
@musicpanda There is already code that displays error message, but only when server returns it: https://github.com/thirtybees/thirtybees/blob/8023d2bda70b6995bde73456439d126ed1c2845d/install-dev/theme/js/process.js#L64-L102 Ajax handler expects response to be valid json, with `success` flag informing about operation...
In most cases (99%) it is valid json, since php application code ensures that, see the request handler code: https://github.com/thirtybees/thirtybees/blob/f30d2079e9dadcde21a1daa12bed2c85d183f390/install-dev/trystart.php#L38-L41 https://github.com/thirtybees/thirtybees/blob/f30d2079e9dadcde21a1daa12bed2c85d183f390/install-dev/classes/controllerHttp.php#L525-L530 Then only situation when response (to ajax request) is...