Search found 28 matches

by vmn
Wed Mar 02, 2022 9:10 am
Forum: Community Help & Support
Topic: 1.0.8.11 Questions / Comments / Concerns
Replies: 27
Views: 9794

Re: 1.0.8.11 Questions / Comments / Concerns

No language flags in admin, when DEFAULT_IMAGE is set. My fix in admin/includes/actions/catalog/infoboxes/edit_category.php: //OLD$language_icon = new Image($Admin->catalog("includes/languages/{$l['directory']}/images/{$l['image']}"), ['alt' => $l['name']]); $language_icon = $Admin->catalo...
by vmn
Sat Nov 06, 2021 10:54 am
Forum: Community Help & Support
Topic: 1.0.8.7 Questions / Comments / Concerns
Replies: 32
Views: 20938

Re: 1.0.8.7 Questions / Comments / Concerns

Phoenix icons do not show up in the admin menu, if DEFAULT_IMAGE is set. These changes in includes/hooks/admin/siteWide/hMenu.php seemed to fix it: ... //OLD $icon = new Image('images/CE-Phoenix-30-30.png', [], 'CE Phoenix v' . Versions::get('Phoenix'), 30, 30); $icon = (new Image('images/CE-Phoenix...
by vmn
Tue Oct 26, 2021 8:30 am
Forum: Community Help & Support
Topic: Replace tep_get_parent_categories and tep_get_product_path
Replies: 9
Views: 2636

Re: Replace tep_get_parent_categories and tep_get_product_path

Thank you all!
Looks like this is still missing from the spreadsheet:
deprecated:
tep_parse_category_path( $cPath )
replace:
array_unique(array_map('intval', explode('_', $cPath)), SORT_NUMERIC)
by vmn
Fri Oct 22, 2021 3:35 pm
Forum: Community Help & Support
Topic: Replace tep_get_parent_categories and tep_get_product_path
Replies: 9
Views: 2636

Re: 1.0.8.6 Questions / Comments / Concerns

Thanks, @Fiber, but I couldn't find the functions above in the spreadsheet.
by vmn
Fri Oct 22, 2021 10:23 am
Forum: Community Help & Support
Topic: Replace tep_get_parent_categories and tep_get_product_path
Replies: 9
Views: 2636

Replace tep_get_parent_categories and tep_get_product_path

The functions below are deprecated:

tep_get_parent_categories
tep_get_product_path

How to replace?
There is no working code below the trigger line.
by vmn
Sat Sep 25, 2021 8:31 am
Forum: Community Help & Support
Topic: 1.0.8.5 Questions / Comments / Concerns
Replies: 26
Views: 12099

Re: 1.0.8.5 Questions / Comments / Concerns

There are no productActionSave admin hook calls any more.

Instead, one should use insertProductAction and updateProductAction hooks.

It looks like hook calls related to form actions (e.g. delete_product_confirm) are automatically generated, others should be excplicitly coded.
by vmn
Fri Sep 24, 2021 4:55 pm
Forum: Community Help & Support
Topic: 1.0.8.5 Questions / Comments / Concerns
Replies: 26
Views: 12099

Re: 1.0.8.5 Questions / Comments / Concerns

In admin/specials.php infoBox contents, the expiry date is shown as the current date, if the db value is null. This happens in Date class, where the input is checked for null value.
by vmn
Fri Sep 24, 2021 9:43 am
Forum: Community Help & Support
Topic: 1.0.8.5 Questions / Comments / Concerns
Replies: 26
Views: 12099

Re: 1.0.8.5 Questions / Comments / Concerns

I have admin customers hooks, which reuse the $customers_query result set as well as $cInfo. My previous Phoenix version was 1.0.8.2 and I jumped to 1.0.8.5. After the upgrade these hooks stopped working. After some debugging I found the following working solutions. customers siteEnd hook: 1.0.8.2: ...
by vmn
Sun May 23, 2021 4:23 pm
Forum: Community Help & Support
Topic: 1.0.8.3 Questions / Comments / Concerns
Replies: 46
Views: 49083

Re: 1.0.8.3 Questions / Comments / Concerns

Vanilla installation with zone fixes reported here: I changed the store country to Finland (no zones). Then I tried to update the store zone with an empty value. [23-May-2021 19:16:20 Europe/Helsinki] PHP Fatal error: Uncaught TypeError: Argument 1 passed to Text::prepare() must be of the type strin...
by vmn
Sun May 23, 2021 8:44 am
Forum: Community Help & Support
Topic: 1.0.8.3 Questions / Comments / Concerns
Replies: 46
Views: 49083

Re: 1.0.8.3 Questions / Comments / Concerns

Hi, still problems with catalog side images in admin, if DEFAULT_IMAGE is set. Now the tep_info_image function correctly shows category and product images, but the tep_image doesn't. The language flags do not show either. My fix for 1.0.8.2 still works: in admin/includes/functions/html_output.php in...