Scott C Wilson
Scott C Wilson
``` mysql> SELECT * FROM products_options WHERE products_options_id = 86; +---------------------+-------------+-----------------------+-----------------------------+-----------------------+-------------------------+--------------------------+-----------------------------------+-----------------------+---------------------------------+-------------------------------+-----------------------+ | products_options_id | language_id | products_options_name | products_options_sort_order | products_options_type | products_options_length | products_options_comment | products_options_comment_position | products_options_size |...
``` mysql> SELECT configuration_key, configuration_value FROM configuration WHERE configuration_key IN ('POSM_OPTIONAL_OPTION_TYPES_LIST', 'POSM_OPTIONAL_OPTION_NAMES_LIST', 'POSM_OPTIONS_TYPES_TO_MANAGE'); +---------------------------------+---------------------+ | configuration_key | configuration_value | +---------------------------------+---------------------+ | POSM_OPTIONAL_OPTION_NAMES_LIST | | | POSM_OPTIONAL_OPTION_TYPES_LIST | | | POSM_OPTIONS_TYPES_TO_MANAGE...
``` mysql> SELECT DISTINCT pa.options_id, po.products_options_name as options_name, LPAD(po.products_options_sort_order, 11, '0') as sort_order -> FROM products_options po -> INNER JOIN products_attributes pa -> ON pa.options_id = po.products_options_id -> AND pa.products_id...
> But I'm puzzled that it hasn't previously come up as an issue over the years. Warning on key not present is new in PHP 8. Didn't used to be...
That document says an empty array is acceptable, and this is what's being returned. "If no quote(s) is/are available ... the shipping module sets its quotes property to either (bool)false...
That fix didn't make it into 2.1.0. As shipped version 2.1.0 of includes/classes/shipping.php has line 262 as ``` if (is_array($quotes)) { ``` Can we please just add this fix as...
a) I don't think it's a misconfiguration. b) Without this fix you will get a log in a bunch of cases, like when someone just returns an array with the...
LOL you're right - we need to make SHOW_PRODUCTS_SOLD_OUT_IMAGE tri-valued if to account for this. Not sure it's worth the trouble. Users could always use the notifier if they really...
No - some users want ADD TO CART to appear instead of SOLD OUT.
I would probably invert 1 and 2. This would be more consistent with 1.5.8 and prior builds. Let's sit tight though before moving forward and see if the consensus is...